Lines Matching refs:statbuf
373 struct stat statbuf; /* The file-statistics return buffer */
377 if(stat(pathname, &statbuf) < 0)
382 return S_ISDIR(statbuf.st_mode) != 0;
396 struct stat statbuf; /* The file-statistics return buffer */
400 if(stat(pathname, &statbuf) < 0)
405 return S_ISREG(statbuf.st_mode) != 0;
419 struct stat statbuf; /* The file-statistics return buffer */
423 if(stat(pathname, &statbuf) < 0)
428 return S_ISREG(statbuf.st_mode) != 0 &&
429 (statbuf.st_mode & (S_IXOTH | S_IXGRP | S_IXUSR)) &&
537 struct stat statbuf;
538 return stat(pathname, &statbuf) == 0;