| /src/lib/libc/gen/ |
| ftok.c | 48 struct stat st; local 52 if (stat(path, &st) < 0) 56 ((unsigned int)id << 24 | (st.st_dev & 0xff) << 16 | 57 (st.st_ino & 0xffff));
|
| /src/external/bsd/libarchive/dist/tar/test/ |
| test_option_newer_than.c | 11 struct stat st; local 23 assertEqualInt(0, stat("old.txt", &st)); 24 sleepUntilAfter(st.st_mtime); 26 assertEqualInt(0, stat("middle.txt", &st)); 27 sleepUntilAfter(st.st_mtime);
|
| test_option_older_than.c | 12 struct stat st; local 25 assertEqualInt(0, stat("old.txt", &st)); 26 sleepUntilAfter(st.st_mtime); 28 assertEqualInt(0, stat("middle.txt", &st)); 29 sleepUntilAfter(st.st_mtime);
|
| test_option_s.c | 11 struct stat st; local 28 assertEqualInt(0, stat("check.err", &st)); 29 if (st.st_size != 0) {
|
| test_0.c | 21 struct stat st; local 24 if (!assertEqualInt(0, stat(testprogfile, &st))) { 32 if (!assert((st.st_mode & 0111) != 0)) {
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| memset.c | 23 register char *st = str; local 26 *st++ = c;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.go/ |
| global-local-var-shadow.go | 5 var st = "We shall" var 9 st := "Hello, world!" // this intentionally shadows the global "st" 10 fmt.Println (st) // set breakpoint 1 here
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.go/ |
| global-local-var-shadow.go | 5 var st = "We shall" var 9 st := "Hello, world!" // this intentionally shadows the global "st" 10 fmt.Println (st) // set breakpoint 1 here
|
| /src/external/bsd/libarchive/dist/cat/test/ |
| test_0.c | 21 struct stat st; local 24 if (!assertEqualInt(0, stat(testprogfile, &st))) { 32 if (!assert((st.st_mode & 0111) != 0)) {
|
| /src/external/bsd/libarchive/dist/cpio/test/ |
| test_0.c | 21 struct stat st; local 24 if (!assertEqualInt(0, stat(testprogfile, &st))) { 32 if (!assert((st.st_mode & 0111) != 0)) {
|
| test_option_B_upper.c | 11 struct stat st; local 23 assertEqualInt(0, stat("small.cpio", &st)); 24 assertEqualInt(512, st.st_size); 30 assertEqualInt(0, stat("large.cpio", &st)); 31 assertEqualInt(5120, st.st_size);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_entry_stat.c | 42 struct stat *st; local 44 entry->stat = calloc(1, sizeof(*st)); 61 st = entry->stat; 66 st->st_atime = archive_entry_atime(entry); 68 st->st_birthtime = archive_entry_birthtime(entry); 70 st->st_ctime = archive_entry_ctime(entry); 71 st->st_mtime = archive_entry_mtime(entry); 72 st->st_dev = archive_entry_dev(entry); 73 st->st_gid = (gid_t)archive_entry_gid(entry); 74 st->st_uid = (uid_t)archive_entry_uid(entry) [all...] |
| /src/external/gpl3/binutils/dist/libiberty/ |
| unlink-if-ordinary.c | 65 struct stat st; local 67 if (lstat (name, &st) == 0 68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| unlink-if-ordinary.c | 65 struct stat st; local 67 if (lstat (name, &st) == 0 68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| unlink-if-ordinary.c | 65 struct stat st; local 67 if (lstat (name, &st) == 0 68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| unlink-if-ordinary.c | 65 struct stat st; local 67 if (lstat (name, &st) == 0 68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| unlink-if-ordinary.c | 65 struct stat st; local 67 if (lstat (name, &st) == 0 68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| mail_trigger.c | 77 struct stat st; local 86 if ((status = stat(path, &st)) < 0) { 88 } else if (S_ISFIFO(st.st_mode)) { 90 if (status < 0 && S_ISSOCK(st.st_mode)) 92 } else if (S_ISSOCK(st.st_mode)) {
|
| remove.c | 58 struct stat st; local 68 if (stat(vstring_str(dest), &st) < 0)
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| sane_rename.c | 47 struct stat st; local 60 if (stat(from, &st) < 0 && stat(to, &st) >= 0) {
|
| load_file.c | 58 struct stat st; local 71 if (fstat(vstream_fileno(fp), &st) < 0) 76 if (st.st_mtime < before - 1 || st.st_mtime > after)
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| unlink-if-ordinary.c | 65 struct stat st; local 67 if (lstat (name, &st) == 0 68 && (S_ISREG (st.st_mode) || S_ISLNK (st.st_mode)))
|
| /src/tests/lib/libc/gen/posix_spawn/ |
| fa_spawn_utils.c | 49 struct stat st; local 51 RL(stat(fname, &st)); 52 return st.st_size;
|
| /src/lib/libc/citrus/ |
| citrus_mmap.c | 57 struct stat st; local 67 if (fstat(fd, &st) == -1) { 71 if (!S_ISREG(st.st_mode)) { 76 head = mmap(NULL, (size_t)st.st_size, PROT_READ, MAP_FILE|MAP_PRIVATE, 82 _region_init(r, head, (size_t)st.st_size);
|
| /src/lib/libc/stdio/ |
| fdopen.c | 96 struct stat st; local 97 if (fstat(fd, &st) == -1) { 100 if (!S_ISREG(st.st_mode)) {
|