Lines Matching refs:statb
156 struct stat statb; in e3() local
158 return(stat((char *)nxtarg(0), &statb) >= 0 && in e3()
159 (statb.st_mode & S_IFMT) != S_IFDIR); in e3()
227 struct stat statb; in ftype() local
229 if (stat((char *)f, &statb) < 0) in ftype()
231 if ((statb.st_mode & field) == field) in ftype()
239 struct stat statb; in filtyp() local
242 if ((*statf)(f, &statb) < 0) in filtyp()
244 if ((statb.st_mode & S_IFMT) == field) in filtyp()
254 struct stat statb; in fsizep() local
256 if (stat((char *)f, &statb) < 0) in fsizep()
258 return(statb.st_size > 0); in fsizep()