Lines Matching refs:__len

125 			       char *__restrict __buf, size_t __len,
130 char *__restrict __buf, size_t __len), readlink)
134 char *__restrict __buf, size_t __len,
141 size_t __len)) in __NTH() argument
145 if (!__builtin_constant_p (__len)) in __NTH()
146 return __readlink_chk (__path, __buf, __len, __bos (__buf)); in __NTH()
148 if ( __len > __bos (__buf)) in __NTH()
149 return __readlink_chk_warn (__path, __buf, __len, __bos (__buf)); in __NTH()
151 return __readlink_alias (__path, __buf, __len); in __NTH()
157 char *__restrict __buf, size_t __len,
162 char *__restrict __buf, size_t __len),
167 char *__restrict __buf, size_t __len,
175 char *__restrict __buf, size_t __len)) in __NTH() argument
179 if (!__builtin_constant_p (__len)) in __NTH()
180 return __readlinkat_chk (__fd, __path, __buf, __len, __bos (__buf)); in __NTH()
182 if (__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()
230 extern size_t __confstr_chk (int __name, char *__buf, size_t __len,
233 size_t __len), confstr);
235 (int __name, char *__buf, size_t __len,
241 __NTH (confstr (int __name, char *__buf, size_t __len)) in __NTH() argument
245 if (!__builtin_constant_p (__len)) in __NTH()
246 return __confstr_chk (__name, __buf, __len, __bos (__buf)); in __NTH()
248 if (__bos (__buf) < __len) in __NTH()
249 return __confstr_chk_warn (__name, __buf, __len, __bos (__buf)); in __NTH()
251 return __confstr_alias (__name, __buf, __len); in __NTH()