Home
last modified time | relevance | path

Searched refs:stats (Results 1 – 3 of 3) sorted by relevance

/sysdeps/unix/sysv/linux/
A Dfaccessat.c42 struct stat64 stats; in __faccessat() local
43 if (__fstatat64 (fd, file, &stats, flag & AT_SYMLINK_NOFOLLOW)) in __faccessat()
59 || (stats.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))) in __faccessat()
62 int granted = (uid == stats.st_uid in __faccessat()
63 ? (unsigned int) (stats.st_mode & (mode << 6)) >> 6 in __faccessat()
64 : (stats.st_gid == ((flag & AT_EACCESS) in __faccessat()
66 || __group_member (stats.st_gid)) in __faccessat()
67 ? (unsigned int) (stats.st_mode & (mode << 3)) >> 3 in __faccessat()
68 : (stats.st_mode & mode)); in __faccessat()
/sysdeps/posix/
A Deuidaccess.c122 struct __stat64_t64 stats; in euidaccess() local
143 if (__stat64_time64 (path, &stats)) in euidaccess()
167 || (stats.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)))) in euidaccess()
170 if (euid == stats.st_uid) in euidaccess()
171 granted = (unsigned int) (stats.st_mode & (mode << 6)) >> 6; in euidaccess()
172 else if (egid == stats.st_gid || group_member (stats.st_gid)) in euidaccess()
173 granted = (unsigned int) (stats.st_mode & (mode << 3)) >> 3; in euidaccess()
175 granted = (stats.st_mode & mode); in euidaccess()
/sysdeps/unix/sysv/linux/net/
A Dif_ppp.h125 struct ppp_stats stats; /* statistic information */ member
130 struct ppp_comp_stats stats; member

Completed in 3 milliseconds