Rizin
unix-like reverse engineering framework and cli tools
|
#include "linux-syscalls.h"
#include <unistd.h>
#include <signal.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <errno.h>
Go to the source code of this file.
Functions | |
int | uv__sendmmsg (int fd, struct uv__mmsghdr *mmsg, unsigned int vlen) |
int | uv__recvmmsg (int fd, struct uv__mmsghdr *mmsg, unsigned int vlen) |
ssize_t | uv__preadv (int fd, const struct iovec *iov, int iovcnt, int64_t offset) |
ssize_t | uv__pwritev (int fd, const struct iovec *iov, int iovcnt, int64_t offset) |
int | uv__dup3 (int oldfd, int newfd, int flags) |
ssize_t | uv__fs_copy_file_range (int fd_in, ssize_t *off_in, int fd_out, ssize_t *off_out, size_t len, unsigned int flags) |
int | uv__statx (int dirfd, const char *path, int flags, unsigned int mask, struct uv__statx *statxbuf) |
ssize_t | uv__getrandom (void *buf, size_t buflen, unsigned flags) |
Definition at line 214 of file linux-syscalls.c.
ssize_t uv__fs_copy_file_range | ( | int | fd_in, |
ssize_t * | off_in, | ||
int | fd_out, | ||
ssize_t * | off_out, | ||
size_t | len, | ||
unsigned int | flags | ||
) |
Definition at line 224 of file linux-syscalls.c.
References flags, len, and syscall.
Referenced by uv__fs_sendfile().
Definition at line 261 of file linux-syscalls.c.
Definition at line 196 of file linux-syscalls.c.
References __NR_preadv, fd, iov, and syscall.
Referenced by uv__fs_read().
Definition at line 205 of file linux-syscalls.c.
References __NR_pwritev, fd, iov, and syscall.
Referenced by uv__fs_write().
Definition at line 170 of file linux-syscalls.c.
Definition at line 145 of file linux-syscalls.c.
int uv__statx | ( | int | dirfd, |
const char * | path, | ||
int | flags, | ||
unsigned int | mask, | ||
struct uv__statx * | statxbuf | ||
) |
Definition at line 245 of file linux-syscalls.c.
References flags, mask, path, and syscall.
Referenced by uv__fs_statx().