Home
last modified time | relevance | path

Searched refs:system_info (Results 1 – 25 of 27) sorted by relevance

12

/external/chromium_org/components/nacl/loader/
Dnacl_helper_linux.cc70 const NaClLoaderSystemInfo& system_info, in BecomeNaClLoader() argument
115 listener.set_prereserved_sandbox_size(system_info.prereserved_sandbox_size); in BecomeNaClLoader()
116 listener.set_number_of_cores(system_info.number_of_cores); in BecomeNaClLoader()
124 const NaClLoaderSystemInfo& system_info, in ChildNaClLoaderInit() argument
145 browser_fd.Pass(), system_info, uses_nonsfi_mode, nacl_sandbox); in ChildNaClLoaderInit()
153 const NaClLoaderSystemInfo& system_info, in HandleForkRequest() argument
183 system_info, in HandleForkRequest()
237 const NaClLoaderSystemInfo& system_info, in HonorRequestAndReply() argument
246 system_info, in HonorRequestAndReply()
273 const NaClLoaderSystemInfo& system_info, in HandleZygoteRequest() argument
[all …]
/external/chromium_org/tools/telemetry/telemetry/core/
Dsystem_info_unittest.py8 from telemetry.core import system_info
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)
Dbrowser_unittest.py10 from telemetry.core import system_info
85 self.assertTrue(isinstance(info, system_info.SystemInfo))
/external/chromium_org/base/win/
Dwindows_version.cc74 SYSTEM_INFO system_info = { 0 }; in OSInfo() local
75 ::GetNativeSystemInfo(&system_info); in OSInfo()
76 switch (system_info.wProcessorArchitecture) { in OSInfo()
81 processors_ = system_info.dwNumberOfProcessors; in OSInfo()
82 allocation_granularity_ = system_info.dwAllocationGranularity; in OSInfo()
124 system_info.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) { in OSInfo()
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
Dport.cc57 SYSTEM_INFO system_info; in getpagesize() local
58 GetSystemInfo(&system_info); in getpagesize()
59 pagesize = std::max(system_info.dwPageSize, in getpagesize()
60 system_info.dwAllocationGranularity); in getpagesize()
262 SYSTEM_INFO system_info; in TCMalloc_SystemAddGuard() local
263 GetSystemInfo(&system_info); in TCMalloc_SystemAddGuard()
264 pagesize = system_info.dwPageSize; in TCMalloc_SystemAddGuard()
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
Dport.cc56 SYSTEM_INFO system_info; in getpagesize() local
57 GetSystemInfo(&system_info); in getpagesize()
58 pagesize = std::max(system_info.dwPageSize, in getpagesize()
59 system_info.dwAllocationGranularity); in getpagesize()
/external/chromium_org/v8/src/base/
Dsys-info.cc49 SYSTEM_INFO system_info = {0}; in NumberOfProcessors()
50 ::GetNativeSystemInfo(&system_info); in NumberOfProcessors()
51 return static_cast<int>(system_info.dwNumberOfProcessors); in NumberOfProcessors()
/external/chromium_org/tools/telemetry/telemetry/page/
Dpage_runner.py63 system_info = self.browser.GetSystemInfo()
64 if system_info.model_name:
65 logging.info('Model: %s', system_info.model_name)
66 if system_info.gpu:
67 for i, device in enumerate(system_info.gpu.devices):
69 if system_info.gpu.aux_attributes:
71 for k, v in sorted(system_info.gpu.aux_attributes.iteritems()):
73 if system_info.gpu.feature_status:
75 for k, v in sorted(system_info.gpu.feature_status.iteritems()):
77 if system_info.gpu.driver_bug_workarounds:
[all …]
Dtest_expectations_unittest.py6 from telemetry.core import system_info
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/tools/telemetry/telemetry/core/backends/chrome/
Dsystem_info_backend.py6 from telemetry.core import system_info
29 return system_info.SystemInfo.FromDict(
/external/chromium_org/chrome/app/
Dimage_pre_reader_win.cc168 SYSTEM_INFO system_info = {}; in TouchPagesInRange() local
169 GetSystemInfo(&system_info); in TouchPagesInRange()
170 if (system_info.dwPageSize == 0) in TouchPagesInRange()
171 system_info.dwPageSize = 4096; in TouchPagesInRange()
184 touch_ptr += system_info.dwPageSize; in TouchPagesInRange()
/external/lldb/test/
Ddosep.ty50 system_info = " ".join(platform.uname())
58 print "FAIL: LLDB (suite) :: %s (%s)" % (f, system_info)
/external/chromium_org/chrome/test/nacl/
Dnacl_browsertest.cc158 SYSTEM_INFO system_info; in NumberOfCoresAsFilePathString() local
159 GetSystemInfo(&system_info); in NumberOfCoresAsFilePathString()
162 system_info.dwNumberOfProcessors); in NumberOfCoresAsFilePathString()
166 L"%u", system_info.dwNumberOfProcessors); in NumberOfCoresAsFilePathString()
/external/chromium_org/content/test/gpu/gpu_tests/
Dcloud_storage_test_base.py107 system_info = browser.GetSystemInfo()
108 if not system_info.gpu:
110 device = system_info.gpu.devices[0]
120 'disable_multisampling' in system_info.gpu.driver_bug_workarounds)
Dcontext_lost.py126 system_info = tab.browser.GetSystemInfo()
128 system_info.gpu.aux_attributes[u'process_crash_count']
137 system_info = tab.browser.GetSystemInfo()
139 system_info.gpu.aux_attributes[u'process_crash_count']
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_cpu_detect.c229 SYSTEM_INFO system_info; in util_cpu_detect() local
230 GetSystemInfo(&system_info); in util_cpu_detect()
231 util_cpu_caps.nr_cpus = system_info.dwNumberOfProcessors; in util_cpu_detect()
/external/mesa3d/src/gallium/auxiliary/util/
Du_cpu_detect.c229 SYSTEM_INFO system_info; in util_cpu_detect() local
230 GetSystemInfo(&system_info); in util_cpu_detect()
231 util_cpu_caps.nr_cpus = system_info.dwNumberOfProcessors; in util_cpu_detect()
/external/chromium_org/base/process/
Dprocess_metrics_win.cc276 SYSTEM_INFO system_info; in GetSystemCommitCharge() local
277 GetSystemInfo(&system_info); in GetSystemCommitCharge()
284 return (info.CommitTotal * system_info.dwPageSize) / 1024; in GetSystemCommitCharge()
/external/chromium_org/extensions/browser/api/system_cpu/
Dcpu_info_provider_win.cc21 PVOID system_info,
/external/chromium_org/extensions/browser/
DBUILD.gn205 "api/system_info/system_info_api.cc",
206 "api/system_info/system_info_api.h",
207 "api/system_info/system_info_provider.cc",
208 "api/system_info/system_info_provider.h",
/external/openssl/crypto/rand/
Drand_unix.c409 system_info sysInfo; in RAND_poll()
/external/chromium_org/athena/home/
Dathena_start_page_view.cc252 ui::ScopedLayerAnimationSettings system_info( in SetLayoutStateWithAnimation() local
262 system_info.SetTweenType(tween_type); in SetLayoutStateWithAnimation()
/external/lldb/source/Host/common/
DHost.cpp1507 SYSTEM_INFO system_info; in GetNumberCPUS()
1508 ::GetSystemInfo (&system_info); in GetNumberCPUS()
1509 g_num_cores = system_info.dwNumberOfProcessors; in GetNumberCPUS()
/external/qemu/
Dtranslate-all.c296 SYSTEM_INFO system_info; in page_init() local
298 GetSystemInfo(&system_info); in page_init()
299 qemu_real_host_page_size = system_info.dwPageSize; in page_init()
/external/chromium_org/extensions/
Dextensions.gyp476 'browser/api/system_info/system_info_api.cc',
477 'browser/api/system_info/system_info_api.h',
478 'browser/api/system_info/system_info_provider.cc',
479 'browser/api/system_info/system_info_provider.h',

12