Home
last modified time | relevance | path

Searched refs:statb (Results 1 – 9 of 9) sorted by relevance

/external/google-breakpad/src/client/solaris/handler/
Dsolaris_lwp.cc198 struct stat statb; in read_lfile() local
210 if (fstat(fd, &statb) != 0) in read_lfile()
213 size = statb.st_size; in read_lfile()
/external/compiler-rt/test/BlocksRuntime/
Dtestfilerunner.m762 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;
[all …]
/external/mksh/src/
Dhistrap.c328 struct stat statb; in c_fc() local
339 if (stat(tf->tffn, &statb) < 0) in c_fc()
341 else if ((off_t)statb.st_size > MKSH_MAXHISTFSIZE) { in c_fc()
343 "file", (unsigned long)statb.st_size); in c_fc()
346 n = (size_t)statb.st_size + 1; in c_fc()
Deval.c1549 stat(Xstring(*xs, xp), &statb) < 0 ? -1 : 1)) in globit()
1550 struct stat lstatb, statb; in globit() local
1564 stat_check() < 0 || !S_ISDIR(statb.st_mode))) in globit()
1575 S_ISDIR(statb.st_mode)))) { in globit()
Dmain.c1328 struct stat statb; in can_seek() local
1330 return (fstat(fd, &statb) == 0 && !S_ISREG(statb.st_mode) ? in can_seek()
Dexec.c1323 struct stat statb; in iosetup() local
1355 (stat(cp, &statb) < 0 || S_ISREG(statb.st_mode))) in iosetup()
Dvar.c1280 struct stat statb; in setspec() local
1285 stat(s, &statb) == 0 && S_ISDIR(statb.st_mode)) in setspec()
Dedit.c407 struct stat statb; in x_file_glob() local
421 stat(words[0], &statb) < 0) || in x_file_glob()
/external/libpcap/
Dpcap-linux.c2008 struct stat statb; local
2075 if (lstat(subsystem_path, &statb) != 0) {