/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)
|
/external/chromium_org/native_client_sdk/src/libraries/xray/ |
demangle.c | 19 int stat; local 20 __cxa_demangle(symbol, demangle, &size, &stat); 21 if (stat == 0)
|
/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/chromium_org/build/toolchain/mac/ |
setup_toolchain.py | 6 import stat namespace 22 st = os.stat(out_path) 23 os.chmod(out_path, st.st_mode | stat.S_IEXEC)
|
/external/chromium_org/webkit/child/ |
webkit_child_helpers.cc | 29 v8::HeapStatistics stat; local 32 v8::Isolate::GetCurrent()->GetHeapStatistics(&stat); 33 return mem_usage + (static_cast<uint64_t>(stat.total_heap_size()) >> 10);
|
/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/chromium_org/chrome_frame/ |
plugin_url_request.cc | 55 STATSTG stat; local 56 upload_stream->Stat(&stat, STATFLAG_NONAME); 57 post_data_len_ = stat.cbSize.QuadPart;
|
/external/chromium_org/tools/gyp/test/copies/ |
gyptest-attribs.py | 14 import stat namespace 21 in_stat = os.stat(os.path.join('src', path)) 22 out_stat = os.stat(out_path) 23 if out_stat.st_mode & stat.S_IXUSR != expected_exec_bit: 39 check_attribs('executable-file.sh', expected_exec_bit=stat.S_IXUSR)
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-bundle-resources.py | 14 import stat namespace 22 in_stat = os.stat(os.path.join(CHDIR, path)) 23 out_stat = os.stat(out_path) 26 if out_stat.st_mode & stat.S_IXUSR != expected_exec_bit: 50 check_attribs('executable-file.sh', expected_exec_bit=stat.S_IXUSR)
|
/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
|
/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...] |
/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;
|
/cts/tests/sample/src/android/sample/cts/ |
SampleDeviceResultTest.java | 23 import com.android.cts.util.Stat; 113 Stat.StatResult stat = Stat.getStat(result); local 117 log.printValue("Min", stat.mMin, ResultType.LOWER_BETTER, ResultUnit.MS); 118 log.printValue("Max", stat.mMax, ResultType.LOWER_BETTER, ResultUnit.MS); 120 log.printSummary("Average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS);
|
/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/chromium_org/chrome/common/extensions/docs/server2/ |
build_server.py | 10 import stat namespace 30 os.chmod(path, stat.S_IWUSR)
|
/external/chromium_org/testing/ |
test_env.py | 9 import stat namespace 27 sandbox_stat = os.stat(sandbox_path) 28 if ((sandbox_stat.st_mode & stat.S_ISUID) and 29 (sandbox_stat.st_mode & stat.S_IRUSR) and 30 (sandbox_stat.st_mode & stat.S_IXUSR) and
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
RTCStatsReport.h | 45 String stat(const String& name) { return m_stats.get(name); } function in class:WebCore::RTCStatsReport
|
/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)
|