/external/dropbear/ |
compat.c | 237 struct stat statb; local 248 if (fstat(fileno(fp), &statb) == -1) { 252 if ((strings = malloc((u_int)statb.st_size + 1)) == NULL) { 256 shells = calloc((unsigned)statb.st_size / 3, sizeof (char *)); 265 flen = statb.st_size;
|
/system/core/sh/ |
cd.c | 84 struct stat statb; local 125 if (stat(p, &statb) >= 0 && S_ISDIR(statb.st_mode)) { 155 struct stat statb; local 187 if ((lstat(stackblock(), &statb) < 0) 188 || (S_ISLNK(statb.st_mode))) {
|
main.c | 342 struct stat statb; local 349 if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
|
exec.c | 433 struct stat statb; local 440 while (stat(name, &statb) < 0) { 534 while (stat(fullname, &statb) < 0) { 544 if (!S_ISREG(statb.st_mode)) 560 if (statb.st_uid == geteuid()) { 561 if ((statb.st_mode & 0100) == 0) 563 } else if (statb.st_gid == getegid()) { 564 if ((statb.st_mode & 010) == 0) 567 if ((statb.st_mode & 01) == 0)
|
expand.c | 1130 struct stat statb; local 1183 if (metaflag == 0 || lstat(expdir, &statb) >= 0)
|
/external/oprofile/libabi/ |
opimport.cpp | 198 struct stat statb; local 205 rc = fstat(in_fd, &statb); 207 in = mmap(0, statb.st_size, PROT_READ, MAP_PRIVATE, in_fd, 0); 219 import_from_abi(input_abi, in, statb.st_size, &dest); 226 rc = munmap(in, statb.st_size);
|
/external/mksh/src/ |
histrap.c | 327 struct stat statb; local 338 if (stat(tf->tffn, &statb) < 0) 340 else if ((off_t)statb.st_size > MKSH_MAXHISTFSIZE) { 342 "file", (unsigned long)statb.st_size); 345 n = (size_t)statb.st_size + 1; [all...] |
eval.c | 1501 struct stat lstatb, statb; local [all...] |
exec.c | 1291 struct stat statb; local 1322 (stat(cp, &statb) < 0 || S_ISREG(statb.st_mode))) [all...] |
main.c | 1343 struct stat statb; local 1345 return (fstat(fd, &statb) == 0 && !S_ISREG(statb.st_mode) ? [all...] |
var.c | 1205 struct stat statb; local 1210 stat(s, &statb) == 0 && S_ISDIR(statb.st_mode)) [all...] |
edit.c | 406 struct stat statb; local 420 stat(words[0], &statb) < 0) || [all...] |