Lines Matching refs:statb
728 struct stat statb; local
729 if (stat(b, &statb) < 0) {
735 np->first.l = statb.st_mtime;
806 execute(name, statb, type, state) in execute() argument
808 struct stat *statb;
871 (void) execute(name, statb, type, state);
891 statb->st_fstype) == 0) {
900 l = (long)statb->st_mode&S_IFMT;
904 l = (long)statb->st_mode&07777;
912 ll = (long long)statb->st_ino;
915 l = statb->st_mtime;
918 t = statb->st_atime;
921 t = statb->st_ctime;
924 t = statb->st_mtime;
929 t = statb->st_mtime;
932 t = statb->st_atime;
935 t = statb->st_ctime;
941 ll = (long long)statb->st_size;
944 ll = (long long)round(statb->st_size, BLKSIZ)/BLKSIZ;
947 l = (long)statb->st_uid;
950 l = (long)statb->st_gid;
953 l = (long)statb->st_nlink;
978 val = dodelete(name, statb, state);
1054 val = ((getpwuid(statb->st_uid)) == 0);
1057 val = ((getgrgid(statb->st_gid)) == 0);
1060 val = (strcmp(np->first.cp, statb->st_fstype) == 0);
1074 (void) list(name, statb);
1332 dodelete(char *name, struct stat *statb, struct FTW *state) in dodelete() argument
1357 if (S_ISDIR(statb->st_mode)) { in dodelete()