Lines Matching refs:__fd

24 extern ssize_t __read_chk (int __fd, void *__buf, size_t __nbytes,
26 extern ssize_t __REDIRECT (__read_alias, (int __fd, void *__buf,
29 (int __fd, void *__buf, size_t __nbytes,
35 read (int __fd, void *__buf, size_t __nbytes) in read() argument
40 return __read_chk (__fd, __buf, __nbytes, __bos0 (__buf)); in read()
43 return __read_chk_warn (__fd, __buf, __nbytes, __bos0 (__buf)); in read()
45 return __read_alias (__fd, __buf, __nbytes); in read()
49 extern ssize_t __pread_chk (int __fd, void *__buf, size_t __nbytes,
51 extern ssize_t __pread64_chk (int __fd, void *__buf, size_t __nbytes,
54 (int __fd, void *__buf, size_t __nbytes,
57 (int __fd, void *__buf, size_t __nbytes,
60 (int __fd, void *__buf, size_t __nbytes,
65 (int __fd, void *__buf, size_t __nbytes,
73 pread (int __fd, void *__buf, size_t __nbytes, __off_t __offset) in pread() argument
78 return __pread_chk (__fd, __buf, __nbytes, __offset, __bos0 (__buf)); in pread()
81 return __pread_chk_warn (__fd, __buf, __nbytes, __offset, in pread()
84 return __pread_alias (__fd, __buf, __nbytes, __offset); in pread()
88 pread (int __fd, void *__buf, size_t __nbytes, __off64_t __offset) in pread() argument
93 return __pread64_chk (__fd, __buf, __nbytes, __offset, __bos0 (__buf)); in pread()
96 return __pread64_chk_warn (__fd, __buf, __nbytes, __offset, in pread()
100 return __pread64_alias (__fd, __buf, __nbytes, __offset); in pread()
106 pread64 (int __fd, void *__buf, size_t __nbytes, __off64_t __offset) in pread64() argument
111 return __pread64_chk (__fd, __buf, __nbytes, __offset, __bos0 (__buf)); in pread64()
114 return __pread64_chk_warn (__fd, __buf, __nbytes, __offset, in pread64()
118 return __pread64_alias (__fd, __buf, __nbytes, __offset); in pread64()
156 extern ssize_t __readlinkat_chk (int __fd, __const char *__restrict __path,
161 (int __fd, __const char *__restrict __path,
166 (int __fd, __const char *__restrict __path,
174 __NTH (readlinkat (int __fd, __const char *__restrict __path, in __NTH() argument
180 return __readlinkat_chk (__fd, __path, __buf, __len, __bos (__buf)); in __NTH()
183 return __readlinkat_chk_warn (__fd, __path, __buf, __len, in __NTH()
186 return __readlinkat_alias (__fd, __path, __buf, __len); in __NTH()
280 extern int __ttyname_r_chk (int __fd, char *__buf, size_t __buflen,
282 extern int __REDIRECT_NTH (__ttyname_r_alias, (int __fd, char *__buf,
286 (int __fd, char *__buf, size_t __buflen,
292 __NTH (ttyname_r (int __fd, char *__buf, size_t __buflen)) in __NTH() argument
297 return __ttyname_r_chk (__fd, __buf, __buflen, __bos (__buf)); in __NTH()
300 return __ttyname_r_chk_warn (__fd, __buf, __buflen, __bos (__buf)); in __NTH()
302 return __ttyname_r_alias (__fd, __buf, __buflen); in __NTH()