Searched refs:__offset (Results 1 – 9 of 9) sorted by relevance
/bionic/libc/include/ |
D | fcntl.h | 195 int fallocate(int __fd, int __mode, off_t __offset, off_t __length) __RENAME_IF_FILE_OFFSET64(fallo… 197 int fallocate64(int __fd, int __mode, off64_t __offset, off64_t __length) __INTRODUCED_IN(21); 211 int posix_fadvise(int __fd, off_t __offset, off_t __length, int __advice) __RENAME_IF_FILE_OFFSET64… 213 int posix_fadvise64(int __fd, off64_t __offset, off64_t __length, int __advice) __INTRODUCED_IN(21); 223 int posix_fallocate(int __fd, off_t __offset, off_t __length) __RENAME_IF_FILE_OFFSET64(posix_fallo… 225 int posix_fallocate64(int __fd, off64_t __offset, off64_t __length) __INTRODUCED_IN(21); 235 ssize_t readahead(int __fd, off64_t __offset, size_t __length); 246 int sync_file_range(int __fd, off64_t __offset, off64_t __length, unsigned int __flags) __INTRODUCE…
|
D | unistd.h | 250 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64); 251 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64); 252 ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset) __RENAME(pwrite64); 256 off_t lseek(int __fd, off_t __offset, int __whence); 257 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset); 258 ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset); 263 off64_t lseek64(int __fd, off64_t __offset, int __whence); 264 ssize_t pread64(int __fd, void* __buf, size_t __count, off64_t __offset); 265 ssize_t pwrite64(int __fd, const void* __buf, size_t __count, off64_t __offset);
|
D | stdio.h | 215 int fseek(FILE* __fp, long __offset, int __whence); 222 int fseeko(FILE* __fp, off_t __offset, int __whence) __RENAME(fseeko64) __INTRODUCED_IN(24); 234 int fseeko(FILE* __fp, off_t __offset, int __whence); 246 int fseeko64(FILE* __fp, off64_t __offset, int __whence) __INTRODUCED_IN(24);
|
/bionic/libc/include/android/ |
D | legacy_sys_mman_inlines.h | 48 off64_t __offset) __RENAME(mmap64); 50 off64_t __offset) { in mmap64() argument 52 if (__offset < 0 || (__offset & ((1UL << __mmap2_shift) - 1)) != 0) { in mmap64() 65 size_t __offset); in mmap64() 66 return __mmap2(__addr, __size, __prot, __flags, __fd, __offset >> __mmap2_shift); in mmap64()
|
/bionic/tools/versioner/tests/preprocessor_file_offset_bits/headers/ |
D | foo.h | 24 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64) 27 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset); 31 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64); 33 off_t lseek(int __fd, off_t __offset, int __whence);
|
/bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/ |
D | foo.h | 26 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64) 31 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset); 35 off_t lseek(int __fd, off_t __offset, int __whence) __RENAME(lseek64); 37 off_t lseek(int __fd, off_t __offset, int __whence);
|
/bionic/libc/include/sys/ |
D | uio.h | 42 ssize_t preadv(int __fd, const struct iovec* __iov, int __count, off_t __offset) __RENAME_IF_FILE_O… 43 ssize_t pwritev(int __fd, const struct iovec* __iov, int __count, off_t __offset) __RENAME_IF_FILE_… 44 ssize_t preadv64(int __fd, const struct iovec* __iov, int __count, off64_t __offset) __INTRODUCED_I… 45 ssize_t pwritev64(int __fd, const struct iovec* __iov, int __count, off64_t __offset) __INTRODUCED_…
|
D | sendfile.h | 43 ssize_t sendfile(int __out_fd, int __in_fd, off_t* __offset, size_t __count) __RENAME(sendfile64) _… 53 ssize_t sendfile(int __out_fd, int __in_fd, off_t* __offset, size_t __count); 60 ssize_t sendfile64(int __out_fd, int __in_fd, off64_t* __offset, size_t __count) __INTRODUCED_IN(21…
|
D | mman.h | 52 void* mmap(void* __addr, size_t __size, int __prot, int __flags, int __fd, off_t __offset) __RENAME… 54 void* mmap(void* __addr, size_t __size, int __prot, int __flags, int __fd, off_t __offset); 66 void* mmap64(void* __addr, size_t __size, int __prot, int __flags, int __fd, off64_t __offset) __IN…
|