|
Rizin
unix-like reverse engineering framework and cli tools
|
#include <stdint.h>#include <signal.h>#include <sys/types.h>#include <sys/time.h>#include <sys/socket.h>Go to the source code of this file.
Classes | |
| struct | uv__statx_timestamp |
| struct | uv__statx |
Macros | |
| #define | _GNU_SOURCE |
Functions | |
| 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) |
| #define _GNU_SOURCE |
Definition at line 26 of file linux-syscalls.h.
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().
| 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().