Searched refs:statb (Results 1 – 9 of 9) sorted by relevance
/external/oprofile/libabi/ |
D | opimport.cpp | 198 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/ |
D | testfilerunner.m | 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; [all …]
|
/external/mksh/src/ |
D | histrap.c | 327 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()
|
D | eval.c | 1531 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()
|
D | main.c | 1373 struct stat statb; in can_seek() local 1375 return (fstat(fd, &statb) == 0 && !S_ISREG(statb.st_mode) ? in can_seek()
|
D | var.c | 1210 struct stat statb; in setspec() local 1215 stat(s, &statb) == 0 && S_ISDIR(statb.st_mode)) in setspec()
|
D | exec.c | 1300 struct stat statb; in iosetup() local 1332 (stat(cp, &statb) < 0 || S_ISREG(statb.st_mode))) in iosetup()
|
D | edit.c | 406 struct stat statb; in x_file_glob() local 420 stat(words[0], &statb) < 0) || in x_file_glob()
|
/external/libpcap/ |
D | pcap-linux.c | 2008 struct stat statb; local 2075 if (lstat(subsystem_path, &statb) != 0) {
|