Lines Matching refs:statb
762 struct stat statb;
763 int retval = stat(path, &statb);
765 if (statb.st_mode & S_IFDIR) return true;
770 struct stat statb;
771 int retval = stat(path, &statb);
773 if (!(statb.st_mode & S_IFREG)) return false;
774 if (statb.st_mode & S_IXUSR) return true;
779 struct stat statb;
780 int retval = stat(binary, &statb);
787 if (stata.st_mtimespec.tv_sec > statb.st_mtimespec.tv_sec) return true;
788 if (stata.st_mtimespec.tv_nsec > statb.st_mtimespec.tv_nsec) return true;