Home | History | Annotate | Download | only in ssp

Lines Matching refs:__buf

47 extern ssize_t __SSP_REDIRECT (__read_alias, (int __fd, void *__buf,
51 read (int __fd, void *__buf, size_t __nbytes)
53 if (__ssp_bos0 (__buf) != (size_t) -1 && __nbytes > __ssp_bos0 (__buf))
55 return __read_alias (__fd, __buf, __nbytes);
60 char *__restrict__ __buf, size_t __len),
64 readlink (const char *__restrict__ __path, char *__restrict__ __buf,
67 if (__ssp_bos (__buf) != (size_t) -1 && __len > __ssp_bos (__buf))
69 return __readlink_alias (__path, __buf, __len);
73 (char *__buf, size_t __size), getcwd);
76 getcwd (char *__buf, size_t __size)
78 if (__ssp_bos (__buf) != (size_t) -1 && __size > __ssp_bos (__buf))
80 return __getcwd_alias (__buf, __size);