Searched defs:stat (Results 1 - 25 of 169) sorted by relevance

1234567

/external/chromium_org/build/toolchain/mac/
H A Dsetup_toolchain.py6 import stat namespace
22 st = os.stat(out_path)
23 os.chmod(out_path, st.st_mode | stat.S_IEXEC)
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Ddemangle.c19 int stat; local
20 __cxa_demangle(symbol, demangle, &size, &stat);
21 if (stat == 0)
/external/libpcap/
H A Ddlpisubs.h23 struct pcap_stat stat; member in struct:pcap_dlpi
/external/chromium_org/content/child/
H A Dcontent_child_helpers.cc29 v8::HeapStatistics stat; local
34 isolate->GetHeapStatistics(&stat);
35 return mem_usage + (static_cast<uint64_t>(stat.total_heap_size()) >> 10);
/external/chromium_org/tools/gyp/test/copies/
H A Dgyptest-attribs.py14 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/
H A Dgyptest-bundle-resources.py14 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/chromium_org/tools/telemetry/telemetry/util/
H A Dsupport_binaries_unittest.py6 import stat namespace
19 st = os.stat(md5sum_path)
20 self.assertTrue(st.st_mode & stat.S_IXUSR)
H A Dsupport_binaries.py6 import stat namespace
34 candidate_mtime = os.stat(candidate).st_mtime
55 stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR | stat.S_IRGRP)
/external/clang/test/CodeGenCXX/
H A Ddebug-info-global-ctor-dtor.cpp16 static A stat; local
/external/clang/test/Index/
H A Dprint-bitwidth.c13 union S stat; member in struct:X
25 // CHECK-NOT: stat
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_stat.cc25 void StatOutput(u64 *stat) { argument
29 stat[StatShadowNonZero] = stat[StatShadowProcessed] - stat[StatShadowZero];
176 Printf("%s: %16zu\n", name[i], (uptr)stat[i]);
/external/bison/lib/
H A Dfstat.c17 /* 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
[all...]
H A Dstat.c1 /* 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 *bu
[all...]
/external/chromium_org/tools/gyp/test/win/win-tool/
H A Dgyptest-win-tool-handles-readonly-files.py15 import stat namespace
26 test.chmod(f, stat.S_IREAD)
37 test.chmod(test.built_file_path(f), stat.S_IREAD)
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dbuild_server.py10 import stat namespace
31 os.chmod(path, stat.S_IWUSR)
/external/chromium_org/testing/gtest/test/
H A Dgtest_premature_exit_test.cc55 StatStruct stat; local
56 return Stat(filepath, &stat) == 0;
/external/chromium_org/testing/
H A Dtest_env.py9 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/
H A DRTCStatsReport.h44 String stat(const String& name) { return m_stats.get(name); } function in class:blink::FINAL
/external/clang/tools/scan-build/
H A Dset-xcode-analyzer17 import stat namespace
55 os.chmod(path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IROTH)
/external/gtest/test/
H A Dgtest_premature_exit_test.cc55 StatStruct stat; local
56 return Stat(filepath, &stat) == 0;
/external/libunwind/src/
H A Delfxx.h31 #include <sys/stat.h>
73 struct stat stat; local
80 if (fstat (fd, &stat) < 0)
86 ei->size = stat.st_size;
/external/chromium_org/v8/tools/testrunner/server/
H A Dwork_handler.py31 import stat namespace
102 os.chmod(target, stat.S_IRWXU)
/external/lzma/CPP/Windows/
H A DSystem.cpp49 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/oprofile/libdb/
H A Ddb_stat.c74 void odb_hash_display_stat(odb_hash_stat_t const * stat) argument
76 printf("total node number: %d\n", stat->node_nr);
77 printf("total used node: %d\n", stat->used_node_nr);
78 printf("total count: %llu\n", stat->total_count);
79 printf("hash table size: %d\n", stat->hash_table_size);
80 printf("greater list length: %d\n", stat->max_list_length);
81 printf("average non empty list length: %2.4f\n", stat->average_list_length);
85 void odb_hash_free_stat(odb_hash_stat_t * stat) argument
87 free(stat);
/external/chromium_org/base/files/
H A Dfile_enumerator.h20 #include <sys/stat.h>
61 const struct stat& stat() const { return stat_; } function in class:base::FileEnumerator::FileInfo
70 struct stat stat_;

Completed in 7282 milliseconds

1234567