• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Libc-1044.1.2/sys/

Lines Matching refs:sb

48 statx_np(const char *path, struct stat *sb, filesec_t fsec)
51 return(stat(path, sb));
52 return(statx1((void *)&path, statx_syscall, (void *)sb, fsec));
56 fstatx_np(int fd, struct stat *sb, filesec_t fsec)
59 return(fstat(fd, sb));
60 return(statx1((void *)&fd, fstatx_syscall, (void *)sb, fsec));
64 lstatx_np(const char *path, struct stat *sb, filesec_t fsec)
67 return(lstat(path, sb));
68 return(statx1((void *)&path, lstatx_syscall, (void *)sb, fsec));
74 statx64_np(const char *path, struct stat64 *sb, filesec_t fsec)
76 return(statx_np(path, (struct stat *)sb, fsec));
80 fstatx64_np(int fd, struct stat64 *sb, filesec_t fsec)
82 return(fstatx_np(fd, (struct stat *)sb, fsec));
86 lstatx64_np(const char *path, struct stat64 *sb, filesec_t fsec)
88 return(lstatx_np(path, (struct stat *)sb, fsec));
106 statx_syscall(void *obj, void *sb, void *fsacl, size_t *fsacl_size)
110 return(__stat64_extended(path, (struct stat *)sb, fsacl, fsacl_size));
112 return(__stat_extended(path, (struct stat *)sb, fsacl, fsacl_size));
117 fstatx_syscall(void *obj, void *sb, void *fsacl, size_t *fsacl_size)
121 return(__fstat64_extended(fd, (struct stat *)sb, fsacl, fsacl_size));
123 return(__fstat_extended(fd, (struct stat *)sb, fsacl, fsacl_size));
128 lstatx_syscall(void *obj, void *sb, void *fsacl, size_t *fsacl_size)
132 return(__lstat64_extended(path, (struct stat *)sb, fsacl, fsacl_size));
134 return(__lstat_extended(path, (struct stat *)sb, fsacl, fsacl_size));
149 struct stat * sb = (struct stat *)0;
154 sb = (struct stat *)sbptr;
192 filesec_set_property(fsec, FILESEC_OWNER, &(sb->st_uid));
193 filesec_set_property(fsec, FILESEC_GROUP, &(sb->st_gid));
194 filesec_set_property(fsec, FILESEC_MODE, &(sb->st_mode));