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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
stat.S 6 ENTRY(stat) function
15 END(stat)
  /bionic/libc/arch-mips/syscalls/
stat.S 4 .globl stat
6 .ent stat
8 stat: label
22 .end stat
  /bionic/libc/arch-x86/syscalls/
stat.S 6 ENTRY(stat) function
24 END(stat)
  /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...]
  /external/webkit/LayoutTests/http/tests/resources/
touch-temp-file.php 11 $stat = stat($tmpFile); variable
12 if (!$stat) {
13 echo "FAIL: stat() call failed.\n";
17 $mtime = $stat['mtime'] + 1;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
regress-58946.js 32 var stat = 'Testing a return statement inside a catch statement inside a function'; variable
41 printStatus (stat);
  /development/ndk/sources/android/libportable/arch-mips/
stat.c 22 /* Note: The Portable Header will define stat to stat_portable */
23 int WRAP(stat)(const char *path, struct stat_portable *s) function
25 struct stat mips_stat;
32 ret = REAL(stat)(path, &mips_stat);
39 struct stat mips_stat;
53 struct stat mips_stat;
67 struct stat mips_stat;
  /development/ndk/sources/android/libportable/arch-x86/
stat.c 20 /* Note: The Portable Header will define stat to stat_portable */
21 int WRAP(stat)(const char *path, struct stat_portable *s) function
23 struct stat x86_stat;
24 int ret = REAL(stat)(path, &x86_stat);
31 struct stat x86_stat;
39 struct stat x86_stat;
47 struct stat x86_stat;
  /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
  /external/webkit/Source/WebKit/android/WebCoreSupport/
MemoryUsage.cpp 41 v8::HeapStatistics stat; local
42 v8::V8::GetHeapStatistics(&stat);
43 unsigned v8Usage = stat.total_heap_size() >> 20;
  /sdk/emulator/opengl/tests/ut_renderer/
ReadBuffer.cpp 41 int stat = m_stream->recv(m_buf + m_validData, m_size - m_validData); local
42 if (stat > 0) {
43 m_validData += (size_t) stat;
45 return stat;
  /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...]
stat.c 1 /* Work around platform bugs in stat.
19 /* If the user's config.h happens to include <sys/stat.h>, let it include only
20 the system's <sys/stat.h> here, so that orig_stat doesn't recurse to
25 /* Get the original definition of stat. It might be defined as a macro. */
27 #include <sys/stat.h>
32 # undef stat /* avoid warning on mingw64 with _FILE_OFFSET_BITS=64 */ macro
33 # define stat _stati64 macro
37 /* mingw64 has a broken stat() function, based on _stat(), in libmingwex.a.
39 # define stat _stat macro
46 orig_stat (const char *filename, struct stat *buf
    [all...]
  /external/webkit/Tools/wx/build/
waf_extensions.py 88 import stat namespace
90 st = os.stat(filename)
91 if stat.S_ISDIR(st[stat.ST_MODE]): raise IOError('not a file')
  /packages/apps/Nfc/nci/jni/
IntervalTimer.cpp 49 int stat = 0; local
57 stat = timer_settime(mTimerId, 0, &ts, 0);
58 if (stat == -1)
60 return stat == 0;
84 int stat = 0; local
95 stat = timer_create(CLOCK_MONOTONIC, &se, &mTimerId);
96 if (stat == -1)
98 return stat == 0;
NativeLlcpServiceSocket.cpp 53 bool stat = false; local
60 stat = PeerToPeer::getInstance().accept (serverHandle, connHandle, miu, rw);
62 if (! stat)
117 bool stat = false; local
121 stat = PeerToPeer::getInstance().deregisterServer (jniServerHandle);
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
SocketStream.cpp 99 ssize_t stat = ::send(m_sock, (const char *)buffer + (size - res), res, 0); local
100 if (stat < 0) {
102 retval = stat;
107 res -= stat;
122 ssize_t stat = ::recv(m_sock, (char *)(buf) + len - res, res, 0); local
123 if (stat > 0) {
124 res -= stat;
127 if (stat == 0 || errno != EINTR) { // client shutdown or error
  /external/chromium/chrome/browser/resources/file_manager/bin/
squashdir.py 9 import stat namespace
35 statinfo = os.stat(abs_src)
39 if not stat.S_ISDIR(statinfo.st_mode):
  /external/clang/tools/scan-build/
set-xcode-analyzer 17 import stat namespace
55 os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH)
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
NonVolatileStore.cpp 29 #include <sys/stat.h>
193 int stat = 0; local
  /external/srtp/test/
rtp.c 27 err_status_t stat; local
40 stat = srtp_protect(sender->srtp_ctx, &sender->message.header, &pkt_len);
41 if (stat) {
43 fprintf(stderr, "error: srtp protection failed with code %d\n", stat);
67 err_status_t stat; local
87 stat = srtp_unprotect(receiver->srtp_ctx,
89 if (stat) {
91 "error: srtp unprotection failed with code %d%s\n", stat,
92 stat == err_status_replay_fail ? " (replay check failed)" :
93 stat == err_status_auth_fail ? " (auth check failed)" : "")
    [all...]
  /frameworks/av/media/mtp/
MtpStorage.cpp 24 #include <sys/stat.h>
66 struct statfs stat; local
67 if (statfs(getPath(), &stat))
69 mMaxCapacity = (uint64_t)stat.f_blocks * (uint64_t)stat.f_bsize;
75 struct statfs stat; local
76 if (statfs(getPath(), &stat))
78 uint64_t freeSpace = (uint64_t)stat.f_bavail * (uint64_t)stat.f_bsize;
  /hardware/libhardware/tests/camera2/
CameraModuleTests.cpp 49 status_t stat; local
50 if (isDeviceVersionHal2(cameraId, &stat) && stat == OK) {
51 stat = mDevice->initialize(mModule);
54 return stat;
  /hardware/msm7k/librpc/
rpc.c 33 int32 stat = (int32) RPC_MSG_ACCEPTED; local
37 XDR_SEND_INT32(xdr, &stat) &&
49 if (!XDR_SEND_ENUM(xdr, &accreply->stat))
52 switch ((*accreply).stat){
81 if (!XDR_SEND_ENUM(xdr, &rejreply->stat))
84 switch ((*rejreply).stat){
106 if (!XDR_SEND_ENUM(xdr, &reply->stat))
109 switch ((*reply).stat) {

Completed in 875 milliseconds

1 2 3 4 5 6 7 8 91011>>