Lines Matching refs:file
30 static long int posix_pathconf (const char *file, int name);
39 __pathconf (const char *file, int name) in __pathconf() argument
46 return __statfs_link_max (__statfs (file, &fsbuf), &fsbuf, file, -1); in __pathconf()
49 return __statfs_filesize_max (__statfs (file, &fsbuf), &fsbuf); in __pathconf()
52 return __statfs_symlinks (__statfs (file, &fsbuf), &fsbuf); in __pathconf()
55 return __statfs_chown_restricted (__statfs (file, &fsbuf), &fsbuf); in __pathconf()
58 return posix_pathconf (file, name); in __pathconf()
64 distinguish_extX (const struct statfs *fsbuf, const char *file, int fd) in distinguish_extX() argument
70 if ((file == NULL ? __fstat64_time64 (fd, &st) in distinguish_extX()
71 : __stat64_time64 (file, &st)) != 0) in distinguish_extX()
133 __statfs_link_max (int result, const struct statfs *fsbuf, const char *file, in __statfs_link_max() argument
153 return distinguish_extX (fsbuf, file, fd); in __statfs_link_max()