Lines Matching defs:afile
46 struct afile { struct
47 char ftype; /* file type, e.g. 'd', 'c', 'f' */
48 ino_t fnum; /* inode number of file */
49 short fflags; /* mode&~S_IFMT, perhaps ISARG */
50 nlink_t fnl; /* number of links */
51 uid_t fuid; /* owner id */
52 gid_t fgid; /* group id */
53 off_t fsize; /* file size */
54 blkcnt_t fblks; /* number of blocks used */
55 time_t fmtime; /* time (modify or access or create) */
56 char *fname; /* file name */
57 char *flinkto; /* symbolic link value */
81 static struct afile *gstat(struct afile *, char *, int, off_t *); argument