Searched defs:system_info (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dsystem_info_backend.py6 from telemetry.core import system_info namespace
29 return system_info.SystemInfo.FromDict(
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dsystem_info_unittest.py8 from telemetry.core import system_info namespace
22 info = system_info.SystemInfo.FromDict(data)
23 self.assertTrue(isinstance(info, system_info.SystemInfo))
44 info = system_info.SystemInfo.FromDict(data)
62 system_info.SystemInfo.FromDict(data_copy)
H A Dbrowser_unittest.py10 from telemetry.core import system_info namespace
85 self.assertTrue(isinstance(info, system_info.SystemInfo))
/external/lldb/test/
H A Ddosep.ty50 system_info = " ".join(platform.uname()) variable
58 print "FAIL: LLDB (suite) :: %s (%s)" % (f, system_info)
/external/chromium_org/base/win/
H A Dwindows_version.cc74 SYSTEM_INFO system_info = { 0 }; local
75 ::GetNativeSystemInfo(&system_info);
76 switch (system_info.wProcessorArchitecture) {
81 processors_ = system_info.dwNumberOfProcessors;
82 allocation_granularity_ = system_info.dwAllocationGranularity;
124 system_info.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) {
/external/chromium_org/chrome/test/nacl/
H A Dnacl_browsertest.cc158 SYSTEM_INFO system_info; local
159 GetSystemInfo(&system_info);
162 system_info.dwNumberOfProcessors);
166 L"%u", system_info.dwNumberOfProcessors);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_cpu_detect.c229 SYSTEM_INFO system_info; local
230 GetSystemInfo(&system_info);
231 util_cpu_caps.nr_cpus = system_info.dwNumberOfProcessors;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_cpu_detect.c229 SYSTEM_INFO system_info; local
230 GetSystemInfo(&system_info);
231 util_cpu_caps.nr_cpus = system_info.dwNumberOfProcessors;
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dtest_expectations_unittest.py6 from telemetry.core import system_info namespace
32 self.system_info = system_info.SystemInfo.FromDict({
44 return False if not self.system_info else True
47 return self.system_info
/external/chromium_org/base/process/
H A Dprocess_metrics_win.cc276 SYSTEM_INFO system_info; local
277 GetSystemInfo(&system_info);
284 return (info.CommitTotal * system_info.dwPageSize) / 1024;
/external/chromium_org/chrome/app/
H A Dimage_pre_reader_win.cc168 SYSTEM_INFO system_info = {}; local
169 GetSystemInfo(&system_info);
170 if (system_info.dwPageSize == 0)
171 system_info.dwPageSize = 4096;
184 touch_ptr += system_info.dwPageSize;
/external/chromium_org/components/nacl/loader/
H A Dnacl_helper_linux.cc70 const NaClLoaderSystemInfo& system_info,
115 listener.set_prereserved_sandbox_size(system_info.prereserved_sandbox_size);
116 listener.set_number_of_cores(system_info.number_of_cores);
124 const NaClLoaderSystemInfo& system_info,
145 browser_fd.Pass(), system_info, uses_nonsfi_mode, nacl_sandbox);
153 const NaClLoaderSystemInfo& system_info,
183 system_info,
237 const NaClLoaderSystemInfo& system_info,
246 system_info,
273 const NaClLoaderSystemInfo& system_info,
69 BecomeNaClLoader(base::ScopedFD browser_fd, const NaClLoaderSystemInfo& system_info, bool uses_nonsfi_mode, nacl::NaClSandbox* nacl_sandbox) argument
123 ChildNaClLoaderInit(ScopedVector<base::ScopedFD> child_fds, const NaClLoaderSystemInfo& system_info, bool uses_nonsfi_mode, nacl::NaClSandbox* nacl_sandbox, const std::string& channel_id) argument
152 HandleForkRequest(ScopedVector<base::ScopedFD> child_fds, const NaClLoaderSystemInfo& system_info, nacl::NaClSandbox* nacl_sandbox, PickleIterator* input_iter, Pickle* output_pickle) argument
234 HonorRequestAndReply(int reply_fd, int command_type, ScopedVector<base::ScopedFD> attached_fds, const NaClLoaderSystemInfo& system_info, nacl::NaClSandbox* nacl_sandbox, PickleIterator* input_iter) argument
272 HandleZygoteRequest(int zygote_ipc_fd, const NaClLoaderSystemInfo& system_info, nacl::NaClSandbox* nacl_sandbox) argument
417 const NaClLoaderSystemInfo system_info = { local
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.cc57 SYSTEM_INFO system_info; local
58 GetSystemInfo(&system_info);
59 pagesize = std::max(system_info.dwPageSize,
60 system_info.dwAllocationGranularity);
262 SYSTEM_INFO system_info; local
263 GetSystemInfo(&system_info);
264 pagesize = system_info.dwPageSize;
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dport.cc56 SYSTEM_INFO system_info; local
57 GetSystemInfo(&system_info);
58 pagesize = std::max(system_info.dwPageSize,
59 system_info.dwAllocationGranularity);
/external/qemu/
H A Dtranslate-all.c296 SYSTEM_INFO system_info; local
298 GetSystemInfo(&system_info);
299 qemu_real_host_page_size = system_info.dwPageSize;
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c414 system_info.dwAllocationGranularity in WIN32,
2511 SYSTEM_INFO system_info; local
2512 GetSystemInfo(&system_info);
2513 mparams.page_size = system_info.dwPageSize;
2514 mparams.granularity = system_info.dwAllocationGranularity;

Completed in 394 milliseconds