/external/chromium_org/components/nacl/loader/ |
D | nacl_helper_linux.cc | 50 const NaClLoaderSystemInfo& system_info) { in BecomeNaClLoader() argument 66 listener.set_prereserved_sandbox_size(system_info.prereserved_sandbox_size); in BecomeNaClLoader() 67 listener.set_number_of_cores(system_info.number_of_cores); in BecomeNaClLoader() 74 const NaClLoaderSystemInfo& system_info) { in ChildNaClLoaderInit() argument 106 BecomeNaClLoader(child_fds, system_info); in ChildNaClLoaderInit() 117 const NaClLoaderSystemInfo& system_info, in HandleForkRequest() argument 132 ChildNaClLoaderInit(child_fds, system_info); in HandleForkRequest() 196 const NaClLoaderSystemInfo& system_info, in HonorRequestAndReply() argument 203 have_to_reply = HandleForkRequest(attached_fds, system_info, in HonorRequestAndReply() 228 const NaClLoaderSystemInfo& system_info) { in HandleZygoteRequest() argument [all …]
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
D | system_info_unittest.py | 8 from telemetry.core import system_info 21 info = system_info.SystemInfo.FromDict(data) 22 self.assertTrue(isinstance(info, system_info.SystemInfo)) 43 info = system_info.SystemInfo.FromDict(data) 61 system_info.SystemInfo.FromDict(data_copy)
|
D | browser_unittest.py | 11 from telemetry.core import system_info 141 self.assertTrue(isinstance(info, system_info.SystemInfo))
|
/external/chromium/base/win/ |
D | windows_version.cc | 41 SYSTEM_INFO system_info = { 0 }; in OSInfo() local 42 GetNativeSystemInfo(&system_info); in OSInfo() 43 switch (system_info.wProcessorArchitecture) { in OSInfo() 48 processors_ = system_info.dwNumberOfProcessors; in OSInfo() 49 allocation_granularity_ = system_info.dwAllocationGranularity; in OSInfo()
|
/external/chromium_org/base/win/ |
D | windows_version.cc | 74 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/ |
D | port.cc | 57 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/ |
D | port.cc | 56 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/tools/perf/measurements/ |
D | rasterize_and_record.py | 55 system_info = browser.GetSystemInfo() 56 if (system_info.gpu.feature_status 57 and system_info.gpu.feature_status.get(
|
/external/chromium_org/chrome/test/nacl/ |
D | nacl_browsertest.cc | 86 SYSTEM_INFO system_info; 87 GetSystemInfo(&system_info); 90 system_info.dwNumberOfProcessors); 94 L"%u", system_info.dwNumberOfProcessors);
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
D | test_expectations_unittest.py | 6 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
|
D | page_runner.py | 62 system_info = self.browser.GetSystemInfo() 63 if system_info.model_name: 64 logging.info('Model: %s' % system_info.model_name) 65 if system_info.gpu: 66 for i, device in enumerate(system_info.gpu.devices): 68 if system_info.gpu.aux_attributes: 70 for k, v in sorted(system_info.gpu.aux_attributes.iteritems()): 72 if system_info.gpu.feature_status: 74 for k, v in sorted(system_info.gpu.feature_status.iteritems()):
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
D | system_info_backend.py | 6 from telemetry.core import system_info 23 self._system_info = system_info.SystemInfo.FromDict(
|
/external/chromium_org/chrome/app/ |
D | image_pre_reader_win.cc | 168 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/mesa3d/src/gallium/auxiliary/util/ |
D | u_cpu_detect.c | 229 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/third_party/mesa/src/src/gallium/auxiliary/util/ |
D | u_cpu_detect.c | 229 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/ |
D | process_metrics_win.cc | 304 SYSTEM_INFO system_info; in GetSystemCommitCharge() local 305 GetSystemInfo(&system_info); in GetSystemCommitCharge() 312 return (info.CommitTotal * system_info.dwPageSize) / 1024; in GetSystemCommitCharge()
|
/external/chromium/base/ |
D | process_util_win.cc | 897 SYSTEM_INFO system_info; in GetSystemCommitCharge() local 898 GetSystemInfo(&system_info); in GetSystemCommitCharge() 905 return (info.CommitTotal * system_info.dwPageSize) / 1024; in GetSystemCommitCharge()
|
/external/openssl/crypto/rand/ |
D | rand_unix.c | 409 system_info sysInfo; in RAND_poll()
|
/external/chromium_org/third_party/openssl/openssl/crypto/rand/ |
D | rand_unix.c | 409 system_info sysInfo; in RAND_poll()
|
/external/v8/tools/ |
D | grokdump.py | 382 system_info = MINIDUMP_RAW_SYSTEM_INFO.Read( 384 self.arch = system_info.processor_architecture
|
/external/chromium_org/chrome/ |
D | chrome_browser_extensions.gypi | 553 'browser/extensions/api/system_info/system_info_api.cc', 554 'browser/extensions/api/system_info/system_info_api.h', 555 'browser/extensions/api/system_info/system_info_provider.cc', 556 'browser/extensions/api/system_info/system_info_provider.h',
|
/external/libffi/src/ |
D | dlmalloc.c | 2501 SYSTEM_INFO system_info; in init_mparams() local 2502 GetSystemInfo(&system_info); in init_mparams() 2503 mparams.page_size = system_info.dwPageSize; in init_mparams() 2504 mparams.granularity = system_info.dwAllocationGranularity; in init_mparams()
|
/external/qemu/distrib/sdl-1.2.15/src/stdlib/ |
D | SDL_malloc.c | 2511 SYSTEM_INFO system_info; in init_mparams() local 2512 GetSystemInfo(&system_info); in init_mparams() 2513 mparams.page_size = system_info.dwPageSize; in init_mparams() 2514 mparams.granularity = system_info.dwAllocationGranularity; in init_mparams()
|
/external/eigen/unsupported/test/mpreal/ |
D | dlmalloc.c | 2971 SYSTEM_INFO system_info; in init_mparams() local 2972 GetSystemInfo(&system_info); in init_mparams() 2973 psize = system_info.dwPageSize; in init_mparams() 2975 DEFAULT_GRANULARITY : system_info.dwAllocationGranularity); in init_mparams()
|
/external/qemu/ |
D | exec.c | 244 SYSTEM_INFO system_info; in page_init() local 246 GetSystemInfo(&system_info); in page_init() 247 qemu_real_host_page_size = system_info.dwPageSize; in page_init()
|