/debug/ |
A D | getdomainname_chk.c | 22 __getdomainname_chk (char *buf, size_t buflen, size_t nreal) in __getdomainname_chk() argument 24 if (buflen > nreal) in __getdomainname_chk() 27 return getdomainname (buf, buflen); in __getdomainname_chk()
|
A D | gethostname_chk.c | 22 __gethostname_chk (char *buf, size_t buflen, size_t nreal) in __gethostname_chk() argument 24 if (buflen > nreal) in __gethostname_chk() 27 return __gethostname (buf, buflen); in __gethostname_chk()
|
A D | ttyname_r_chk.c | 22 __ttyname_r_chk (int fd, char *buf, size_t buflen, size_t nreal) in __ttyname_r_chk() argument 24 if (buflen > nreal) in __ttyname_r_chk() 27 return __ttyname_r (fd, buf, buflen); in __ttyname_r_chk()
|
A D | getcwd_chk.c | 24 __getcwd_chk (char *buf, size_t size, size_t buflen) in __getcwd_chk() argument 26 if (size > buflen) in __getcwd_chk()
|
A D | wcrtomb_chk.c | 26 __wcrtomb_chk (char *s, wchar_t wchar, mbstate_t *ps, size_t buflen) in __wcrtomb_chk() argument 30 if (buflen < MB_CUR_MAX) in __wcrtomb_chk()
|
A D | wctomb_chk.c | 27 __wctomb_chk (char *s, wchar_t wchar, size_t buflen) in __wctomb_chk() argument 31 if (buflen < MB_CUR_MAX) in __wctomb_chk()
|
A D | readlink_chk.c | 27 __readlink_chk (const char *path, void *buf, size_t len, size_t buflen) in __readlink_chk() argument 29 if (len > buflen) in __readlink_chk()
|
A D | getwd_chk.c | 24 __getwd_chk (char *buf, size_t buflen) in __getwd_chk() argument 26 char *res = __getcwd (buf, buflen); in __getwd_chk()
|
A D | confstr_chk.c | 22 __confstr_chk (int name, char *buf, size_t len, size_t buflen) in __confstr_chk() argument 24 if (__glibc_unlikely (buflen < len)) in __confstr_chk()
|
A D | readlinkat_chk.c | 24 size_t buflen) in __readlinkat_chk() argument 26 if (len > buflen) in __readlinkat_chk()
|
A D | recv_chk.c | 23 __recv_chk (int fd, void *buf, size_t n, size_t buflen, int flags) in __recv_chk() argument 25 if (n > buflen) in __recv_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()
|
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()
|
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()
|
A D | recvfrom_chk.c | 23 __recvfrom_chk (int fd, void *buf, size_t n, size_t buflen, int flags, in __recvfrom_chk() argument 26 if (n > buflen) in __recvfrom_chk()
|