Lines Matching refs:test_stat
96 static int test_stat ARGS((const char *, struct stat *));
257 return test_stat(opnd1, &b1) == 0;
264 return test_stat(opnd1, &b1) == 0 && S_ISREG(b1.st_mode);
266 return test_stat(opnd1, &b1) == 0 && S_ISDIR(b1.st_mode);
269 return test_stat(opnd1, &b1) == 0 && S_ISCHR(b1.st_mode);
275 return test_stat(opnd1, &b1) == 0 && S_ISBLK(b1.st_mode);
281 return test_stat(opnd1, &b1) == 0 && S_ISFIFO(b1.st_mode);
293 return test_stat(opnd1, &b1) == 0 && S_ISSOCK(b1.st_mode);
320 return test_stat(opnd1, &b1) == 0
327 return test_stat(opnd1, &b1) == 0
333 return test_stat(opnd1, &b1) == 0
336 return test_stat(opnd1, &b1) == 0 && b1.st_size > 0L;
347 return test_stat(opnd1, &b1) == 0 && b1.st_uid == ksheuid;
349 return test_stat(opnd1, &b1) == 0 && b1.st_gid == getegid();
427 test_stat(pathx, statb) in test_stat() function