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

1 2 3 4 5 6 7 8 91011>>

  /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/r10/platforms/android-21/arch-arm64/usr/include/asm/
stat.h 19 #include <asm-generic/stat.h>
  /prebuilts/ndk/r10/platforms/android-23/arch-arm64/usr/include/asm/
stat.h 19 #include <asm-generic/stat.h>
  /prebuilts/ndk/r11/platforms/android-21/arch-arm64/usr/include/asm/
stat.h 19 #include <asm-generic/stat.h>
  /prebuilts/ndk/r11/platforms/android-23/arch-arm64/usr/include/asm/
stat.h 19 #include <asm-generic/stat.h>
  /prebuilts/ndk/r11/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);
  /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/ltp/testcases/kernel/syscalls/nftw/
nftw.h 39 #include <sys/stat.h>
112 int test_func1(const char *, const struct stat *, int, struct FTW *);
113 int test_func3(const char *, const struct stat *, int, struct FTW *);
114 int test_func4(const char *, const struct stat *, int, struct FTW *);
115 int test_func5(const char *, const struct stat *, int, struct FTW *);
116 int test_func7(const char *, const struct stat *, int, struct FTW *);
117 int test_func8(const char *, const struct stat *, int, struct FTW *);
118 int test_func9(const char *, const struct stat *, int, struct FTW *);
119 int test_func10(const char *, const struct stat *, int, struct FTW *);
120 int test_func11(const char *, const struct stat *, int, struct FTW *)
    [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;
  /system/core/adb/sysdeps/
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...]
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
ProcessPipe.cpp 45 ssize_t stat = 0; local
47 stat = ::write(sProcPipe, (const char*)&confirmInt,
49 } while (stat < 0 && errno == EINTR);
51 if (stat != sizeof(confirmInt)) { // failed
60 stat = ::read(sProcPipe, (char*)&sProcUID,
62 } while (stat < 0 && errno == EINTR);
64 if (stat != sizeof(sProcUID)) {
  /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/toybox/toys/other/
stat.c 0 /* stat.c : display file or file system status
5 USE_STAT(NEWTOY(stat, "<1c:fLt", TOYFLAG_BIN))
7 config STAT
8 bool stat
11 usage: stat [-tfL] [-c FORMAT] FILE...
46 struct stat st;
48 } stat;
79 struct stat *stat = (struct stat *)&TT.stat local
    [all...]
  /external/harfbuzz_ng/src/
check-libstdc++.sh 7 stat=0
25 stat=1
34 exit $stat
  /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 1144 milliseconds

1 2 3 4 5 6 7 8 91011>>