Searched refs:advice (Results 1 – 8 of 8) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/ |
A D | posix_fadvise.c | 26 int posix_fadvise64(int fd, off64_t offset, off64_t len, int advice); 29 int posix_fadvise(int fd, off_t offset, off_t len, int advice) in posix_fadvise() argument 32 return posix_fadvise64(fd, offset, len, advice); in posix_fadvise() 37 ret = INTERNAL_SYSCALL(fadvise64, err, 4, fd, offset, len, advice); in posix_fadvise() 44 OFF_HI_LO (offset), len, advice); in posix_fadvise()
|
A D | posix_madvise.c | 8 int posix_madvise(void *addr, size_t len, int advice) in posix_madvise() argument 17 if (advice == POSIX_MADV_DONTNEED) in posix_madvise() 22 result = INTERNAL_SYSCALL (madvise, err, 3, addr, len, advice); in posix_madvise()
|
A D | posix_fadvise64.c | 23 int posix_fadvise64(int fd, off64_t offset, off64_t len, int advice) in posix_fadvise64() argument 28 int ret = INTERNAL_SYSCALL (fadvise64_64, err, 6, fd, advice, in posix_fadvise64() 33 advice); in posix_fadvise64()
|
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/mips/ |
A D | posix_fadvise64.c | 20 int posix_fadvise64(int fd, off64_t offset, off64_t len, int advice) in posix_fadvise64() argument 27 advice); in posix_fadvise64() 29 int ret = INTERNAL_SYSCALL(fadvise64, err, 4, fd, offset, len, advice); in posix_fadvise64()
|
A D | posix_fadvise.c | 19 int posix_fadvise(int fd, off_t offset, off_t len, int advice) in posix_fadvise() argument 26 advice); in posix_fadvise() 28 int ret = INTERNAL_SYSCALL(fadvise64, err, 4, fd, offset, len, advice); in posix_fadvise()
|
/l4re-core-master/libc_backends/lib/misc/ |
A D | misc.c | 490 int posix_fadvise64(int fd, off64_t offset, off64_t len, int advice) in posix_fadvise64() argument 493 fd, (unsigned long long)offset, (unsigned long long)len, advice); in posix_fadvise64()
|
/l4re-core-master/l4re_vfs/include/ |
A D | vfs.h | 766 virtual int madvise(void *addr, size_t len, int advice) throw() = 0;
|
/l4re-core-master/l4re_vfs/include/impl/ |
A D | vfs_impl.h | 137 int madvise(void *addr, size_t len, int advice) throw();
|
Completed in 11 milliseconds