Home
last modified time | relevance | path

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

/external/oprofile/libabi/
Dopimport.cpp198 struct stat statb; in main() local
205 rc = fstat(in_fd, &statb); in main()
207 in = mmap(0, statb.st_size, PROT_READ, MAP_PRIVATE, in_fd, 0); in main()
219 import_from_abi(input_abi, in, statb.st_size, &dest); in main()
226 rc = munmap(in, statb.st_size); in main()
/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.c327 struct stat statb; in c_fc() local
338 if (stat(tf->tffn, &statb) < 0) in c_fc()
340 else if ((off_t)statb.st_size > MKSH_MAXHISTFSIZE) { in c_fc()
342 "file", (unsigned long)statb.st_size); in c_fc()
345 n = (size_t)statb.st_size + 1; in c_fc()
Deval.c1531 stat(Xstring(*xs, xp), &statb) < 0 ? -1 : 1)) in globit()
1532 struct stat lstatb, statb; in globit() local
1546 stat_check() < 0 || !S_ISDIR(statb.st_mode))) in globit()
1557 S_ISDIR(statb.st_mode)))) { in globit()
Dmain.c1373 struct stat statb; in can_seek() local
1375 return (fstat(fd, &statb) == 0 && !S_ISREG(statb.st_mode) ? in can_seek()
Dvar.c1210 struct stat statb; in setspec() local
1215 stat(s, &statb) == 0 && S_ISDIR(statb.st_mode)) in setspec()
Dexec.c1300 struct stat statb; in iosetup() local
1332 (stat(cp, &statb) < 0 || S_ISREG(statb.st_mode))) in iosetup()
Dedit.c406 struct stat statb; in x_file_glob() local
420 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) {