HomeSort by relevance Sort by last modified time
    Searched refs:stat (Results 1 - 25 of 3568) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/linux/
asm_stat.h 2 #include <asm/stat.h>
  /bionic/libc/kernel/uapi/asm-arm64/asm/
stat.h 19 #include <asm-generic/stat.h>
  /development/ndk/platforms/android-21/arch-arm64/include/asm/
stat.h 19 #include <asm-generic/stat.h>
  /external/kernel-headers/original/uapi/asm-arm64/asm/
stat.h 16 #include <asm-generic/stat.h>
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/asm/
stat.h 19 #include <asm-generic/stat.h>
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/asm/
stat.h 19 #include <asm-generic/stat.h>
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/asm/
stat.h 19 #include <asm-generic/stat.h>
  /cts/tests/tests/os/src/android/os/cts/
StatFsTest.java 27 StatFs stat = new StatFs(path.getPath()); local
29 assertTrue(stat.getBlockSize() > 0);
30 assertTrue(stat.getBlockCount() > 0);
31 assertTrue(stat.getFreeBlocks() >= stat.getAvailableBlocks());
32 assertTrue(stat.getAvailableBlocks() > 0);
34 assertTrue(stat.getBlockSizeLong() > 0);
35 assertTrue(stat.getBlockCountLong() > 0);
36 assertTrue(stat.getFreeBlocksLong() >= stat.getAvailableBlocksLong())
    [all...]
  /bionic/libc/bionic/
stat.cpp 30 #include <sys/stat.h>
34 int stat(const char* path, struct stat* sb) { function
37 __strong_alias(stat64, stat);
  /ndk/tests/device/stat/jni/
Android.mk 4 LOCAL_MODULE := stat
5 LOCAL_SRC_FILES := stat.c
  /system/core/adb/sysdeps/
stat.h 19 #include <sys/stat.h>
24 // stat is broken on Win32: stat on a path with a trailing slash or backslash will always fail with
28 // We later define a macro mapping 'stat' to 'adb_stat'. This causes:
29 // struct stat s;
30 // stat(filename, &s);
35 // 'struct stat'. Note that this definition of 'struct adb_stat' uses the
36 // *current* macro definition of stat, so it may actually be inheriting from
38 struct adb_stat : public stat {};
40 #undef stat macro
41 #define stat macro
    [all...]
stat_test.cpp 25 TEST(sysdeps, stat) {
29 struct stat st;
30 ASSERT_EQ(0, stat(td.path, &st));
34 ASSERT_EQ(0, stat((std::string(td.path) + '/').c_str(), &st));
38 ASSERT_EQ(0, stat((std::string(td.path) + '\\').c_str(), &st));
43 ASSERT_EQ(-1, stat(nonexistent_path.c_str(), &st));
46 ASSERT_EQ(-1, stat((nonexistent_path + "/").c_str(), &st));
50 ASSERT_EQ(-1, stat((nonexistent_path + "\\").c_str(), &st));
54 ASSERT_EQ(0, stat(tf.path, &st));
58 ASSERT_EQ(-1, stat((std::string(tf.path) + '/').c_str(), &st))
    [all...]
  /external/lzma/CPP/Windows/
System.cpp 49 MY_MEMORYSTATUSEX stat; local
50 stat.dwLength = sizeof(stat);
53 if (!::GlobalMemoryStatusEx(&stat))
55 return MyMin(stat.ullTotalVirtual, stat.ullTotalPhys);
60 if (globalMemoryStatusEx != 0 && globalMemoryStatusEx(&stat))
61 return MyMin(stat.ullTotalVirtual, stat.ullTotalPhys);
64 MEMORYSTATUS stat;
    [all...]
  /external/autotest/client/site_tests/security_Minijail0/src/
test-tmpfs 15 fs=$(stat -f /tmp -c %T)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ranking/
RankingAlgorithm.java 18 package org.apache.commons.math.stat.ranking;
  /external/clang/test/CodeGenCXX/
debug-info-global-ctor-dtor.cpp 16 static A stat; local
  /external/clang/test/Index/
print-bitwidth.c 13 union S stat; member in struct:X
25 // CHECK-NOT: stat
  /bionic/libc/upstream-openbsd/lib/libc/gen/
ftok.c 30 #include <sys/stat.h>
36 struct stat st;
38 if (stat(path, &st) < 0)
  /toolchain/binutils/binutils-2.25/libiberty/
fdmatch.c 50 #include <sys/stat.h>
54 struct stat sbuf1;
55 struct stat sbuf2;
  /external/bison/lib/
fstat.c 17 /* If the user's config.h happens to include <sys/stat.h>, let it include only
18 the system's <sys/stat.h> here, so that orig_fstat doesn't recurse to
25 #include <sys/stat.h>
27 # undef stat /* avoid warning on mingw64 with _FILE_OFFSET_BITS=64 */ macro
28 # define stat _stati64 macro
35 orig_fstat (int fd, struct stat *buf)
41 /* Write "sys/stat.h" here, not <sys/stat.h>, otherwise OSF/1 5.1 DTK cc
42 eliminates this include because of the preliminary #include <sys/stat.h>
44 #include "sys/stat.h
    [all...]
  /external/autotest/client/tests/signaltest/src/
signaltest.c 27 #include <sys/stat.h>
98 struct thread_stat *stat = par->stats; local
119 stat->tid = gettid();
129 stat->threadstarted++;
154 if (!par->id && !(stat->cycles & 0x0F))
159 pthread_kill(stat->tothread, SIGUSR1);
170 if (diff < stat->min)
171 stat->min = diff;
172 if (diff > stat->max)
173 stat->max = diff
293 struct thread_stat *stat = par->stats; local
318 struct thread_stat *stat; local
    [all...]
  /external/harfbuzz_ng/src/
check-libstdc++.sh 7 stat=0
25 stat=1
34 exit $stat
  /external/toybox/toys/other/
stat.c 0 /* stat.c : display file or file system status
5 USE_STAT(NEWTOY(stat, "<1c:f", TOYFLAG_BIN))
7 config STAT
8 bool stat
11 usage: stat [-f] [-c FORMAT] FILE...
42 struct stat st;
44 } stat;
50 // Note: the atime, mtime, and ctime fields in struct stat are the start
70 struct stat *stat = (struct stat *)&TT.stat local
167 struct stat *stat = (struct stat*)&TT.stat; local
    [all...]
  /bionic/libc/include/
ftw.h 29 #include <sys/stat.h>
39 #define FTW_NS 4 /* Unknown type; stat() failed. */
57 int ftw(const char *, int (*)(const char *, const struct stat *, int), int);
58 int nftw(const char *, int (*)(const char *, const struct stat *, int,
  /development/ndk/platforms/android-21/include/
ftw.h 29 #include <sys/stat.h>
39 #define FTW_NS 4 /* Unknown type; stat() failed. */
57 int ftw(const char *, int (*)(const char *, const struct stat *, int), int);
58 int nftw(const char *, int (*)(const char *, const struct stat *, int,

Completed in 947 milliseconds

1 2 3 4 5 6 7 8 91011>>