Searched refs:nbytes (Results 1 – 3 of 3) sorted by relevance
/debug/ |
A D | read_chk.c | 27 __read_chk (int fd, void *buf, size_t nbytes, size_t buflen) in __read_chk() argument 29 if (nbytes > buflen) in __read_chk() 33 return INLINE_SYSCALL (read, 3, fd, buf, nbytes); in __read_chk() 35 return __read (fd, buf, nbytes); in __read_chk()
|
A D | pread64_chk.c | 23 __pread64_chk (int fd, void *buf, size_t nbytes, off64_t offset, size_t buflen) in __pread64_chk() argument 25 if (nbytes > buflen) in __pread64_chk() 28 return __libc_pread64 (fd, buf, nbytes, offset); in __pread64_chk()
|
A D | pread_chk.c | 23 __pread_chk (int fd, void *buf, size_t nbytes, off_t offset, size_t buflen) in __pread_chk() argument 25 if (nbytes > buflen) in __pread_chk() 28 return __pread (fd, buf, nbytes, offset); in __pread_chk()
|
Completed in 5 milliseconds