Lines Matching refs:statb
797 struct stat statb; in compile() local
798 if (stat(b, &statb) < 0) { in compile()
804 np->first.l = statb.st_mtime; in compile()
935 execute(const char *name, const struct stat *statb, int type, struct FTW *state) in execute() argument
996 (void) execute(name, statb, type, state); in execute()
1016 statb->st_fstype) == 0) { in execute()
1025 l = (long)statb->st_mode&S_IFMT; in execute()
1029 l = (long)statb->st_mode&07777; in execute()
1037 ll = (long long)statb->st_ino; in execute()
1040 l = statb->st_mtime; in execute()
1043 t = statb->st_atime; in execute()
1046 t = statb->st_ctime; in execute()
1049 t = statb->st_mtime; in execute()
1054 t = statb->st_mtime; in execute()
1057 t = statb->st_atime; in execute()
1060 t = statb->st_ctime; in execute()
1066 ll = (long long)statb->st_size; in execute()
1069 ll = (long long)round(statb->st_size, BLKSIZ)/BLKSIZ; in execute()
1072 l = (long)statb->st_uid; in execute()
1075 l = (long)statb->st_gid; in execute()
1078 l = (long)statb->st_nlink; in execute()
1103 val = dodelete(name, statb, state); in execute()
1182 val = ((getpwuid(statb->st_uid)) == 0); in execute()
1185 val = ((getgrgid(statb->st_gid)) == 0); in execute()
1188 val = (strcmp(np->first.cp, statb->st_fstype) == 0); in execute()
1202 (void) list(name, statb); in execute()
1430 dodelete(const char *name, const struct stat *statb, struct FTW *state) in dodelete() argument
1455 if (S_ISDIR(statb->st_mode)) { in dodelete()