Searched defs:statb (Results 1 - 11 of 11) sorted by relevance

/external/python/cpython2/Misc/
H A Dsetuid-prog.c127 struct stat statb; local
150 if (stat(FULL_PATH, &statb) < 0) {
154 if (statb.st_uid != 0 && statb.st_uid != euid) {
/external/python/cpython2/Python/
H A Ddynload_shlib.c89 struct stat statb; local
90 fstat(fileno(fp), &statb); local
92 if (statb.st_dev == handles[i].dev &&
93 statb.st_ino == handles[i].ino) {
100 handles[nhandles].dev = statb.st_dev;
102 handles[nhandles].ino[0] = statb.st_ino[0];
103 handles[nhandles].ino[1] = statb.st_ino[1];
104 handles[nhandles].ino[2] = statb.st_ino[2];
106 handles[nhandles].ino = statb.st_ino;
/external/freetype/src/tools/ftrandom/
H A Dftrandom.c354 struct stat statb; local
379 if ( stat( buffer, &statb ) == -1 || S_ISDIR( statb.st_mode ) )
395 fontlist[fcnt].len = statb.st_size;
/external/google-breakpad/src/client/solaris/handler/
H A Dsolaris_lwp.cc198 struct stat statb; local
210 if (fstat(fd, &statb) != 0)
213 size = statb.st_size;
/external/mksh/src/
H A Dexec.c1410 struct stat statb; local
1438 if (stat(cp, &statb)) {
1441 } else if (S_ISREG(statb.st_mode)) {
1503 if (fstat(u, &statb) || S_ISREG(statb.st_mode)) {
H A Dhistrap.c315 struct stat statb; local
325 if (stat(tf->tffn, &statb) < 0)
327 else if ((off_t)statb.st_size > MKSH_MAXHISTFSIZE) {
329 Tfile, (unsigned long)statb.st_size);
332 n = (size_t)statb.st_size + 1;
H A Deval.c1622 stat(Xstring(*xs, xp), &statb) < 0 ? -1 : 1))
1623 struct stat lstatb, statb; local
1637 stat_check() < 0 || !S_ISDIR(statb.st_mode)))
1648 S_ISDIR(statb.st_mode)))) {
H A Dmain.c1408 struct stat statb; local
1410 return (fstat(fd, &statb) == 0 && !S_ISREG(statb.st_mode) ?
H A Dvar.c1355 struct stat statb; local
1360 stat(s, &statb) == 0 && S_ISDIR(statb.st_mode))
H A Dedit.c428 struct stat statb; local
442 stat(words[0], &statb) < 0) ||
/external/libpcap/
H A Dpcap-linux.c2327 struct stat statb; local
2390 if (lstat(subsystem_path, &statb) != 0) {
2823 struct stat statb; local
2838 if (stat(pathstr, &statb) == 0) {

Completed in 289 milliseconds