Home
last modified time | relevance | path

Searched refs:buflen (Results 1 – 15 of 15) sorted by relevance

/debug/
A Dgetdomainname_chk.c22 __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 Dgethostname_chk.c22 __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 Dttyname_r_chk.c22 __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 Dgetcwd_chk.c24 __getcwd_chk (char *buf, size_t size, size_t buflen) in __getcwd_chk() argument
26 if (size > buflen) in __getcwd_chk()
A Dwcrtomb_chk.c26 __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 Dwctomb_chk.c27 __wctomb_chk (char *s, wchar_t wchar, size_t buflen) in __wctomb_chk() argument
31 if (buflen < MB_CUR_MAX) in __wctomb_chk()
A Dreadlink_chk.c27 __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 Dgetwd_chk.c24 __getwd_chk (char *buf, size_t buflen) in __getwd_chk() argument
26 char *res = __getcwd (buf, buflen); in __getwd_chk()
A Dconfstr_chk.c22 __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 Dreadlinkat_chk.c24 size_t buflen) in __readlinkat_chk() argument
26 if (len > buflen) in __readlinkat_chk()
A Drecv_chk.c23 __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 Dpread64_chk.c23 __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 Dpread_chk.c23 __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 Dread_chk.c27 __read_chk (int fd, void *buf, size_t nbytes, size_t buflen) in __read_chk() argument
29 if (nbytes > buflen) in __read_chk()
A Drecvfrom_chk.c23 __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()

Completed in 20 milliseconds