/external/chromium_org/third_party/libjingle/source/talk/base/ |
systeminfo_unittest.cc | 30 #include "talk/base/systeminfo.h" 34 talk_base::SystemInfo info; 42 talk_base::SystemInfo info; 56 talk_base::SystemInfo info; 58 talk_base::SystemInfo::Architecture architecture = info.GetCpuArchitecture(); 61 EXPECT_EQ(talk_base::SystemInfo::SI_ARCH_X64, architecture); 64 EXPECT_EQ(talk_base::SystemInfo::SI_ARCH_ARM, architecture); 66 EXPECT_EQ(talk_base::SystemInfo::SI_ARCH_X86, architecture); 74 talk_base::SystemInfo info; 82 talk_base::SystemInfo info [all...] |
systeminfo.cc | 28 #include "talk/base/systeminfo.h" 127 SystemInfo::SystemInfo() 230 int SystemInfo::GetMaxCpus() { 235 int SystemInfo::GetMaxPhysicalCpus() { 242 int SystemInfo::GetCurCpus() { 265 SystemInfo::Architecture SystemInfo::GetCpuArchitecture() { 272 std::string SystemInfo::GetCpuVendor() { 291 int SystemInfo::GetCpuCacheSize() [all...] |
systeminfo.h | 37 class SystemInfo { 46 SystemInfo();
|
cpumonitor.h | 41 class SystemInfo; 98 scoped_ptr<SystemInfo> sysinfo_;
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
system_info_backend.py | 18 req = {'method': 'SystemInfo.getInfo'} 23 self._system_info = system_info.SystemInfo.FromDict(
|
/external/netperf/ |
netcpu_ntperf.c | 166 SYSTEM_INFO SystemInfo; 168 GetSystemInfo(&SystemInfo); 227 SYSTEM_INFO SystemInfo; 229 GetSystemInfo(&SystemInfo); 259 if (returnNumCPUs != (int)SystemInfo.dwNumberOfProcessors) 263 (int)SystemInfo.dwNumberOfProcessors, returnNumCPUs); 308 SYSTEM_INFO SystemInfo; 310 GetSystemInfo(&SystemInfo); 354 if ((int)SystemInfo.dwNumberOfProcessors > 1) 356 for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++ [all...] |
/external/chromium_org/content/browser/devtools/ |
browser_protocol.json | 4 "domain": "SystemInfo", 5 "description": "The SystemInfo domain defines methods and events for querying low-level system information.", 30 "id": "SystemInfo", 44 { "name": "info", "$ref": "SystemInfo", "description": "Information about the system." }
|
devtools_protocol_constants.cc | 228 namespace SystemInfo { 229 const char kName[] = "SystemInfo"; 244 namespace SystemInfo { 247 } // SystemInfo 250 const char kName[] = "SystemInfo.getInfo"; 253 } // SystemInfo
|
devtools_protocol_constants.h | 229 namespace SystemInfo { 245 namespace SystemInfo { 248 } // SystemInfo 254 } // SystemInfo
|
devtools_system_info_handler.cc | 93 RegisterCommandHandler(devtools::SystemInfo::getInfo::kName,
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
system_info_unittest.py | 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)
|
system_info.py | 6 class SystemInfo(object): 17 """Constructs a SystemInfo from a dictionary of attributes.
|
/external/lzma/CPP/Windows/ |
System.cpp | 14 SYSTEM_INFO systemInfo;
15 GetSystemInfo(&systemInfo);
16 return (UInt32)systemInfo.dwNumberOfProcessors;
|
/external/chromium_org/chrome/browser/extensions/api/system_info/ |
system_info_api.h | 14 // to observe the systemInfo event listener arrival/removal.
|
system_info_api.cc | 49 // Event router for systemInfo API. It is a singleton instance shared by 73 // Called from any thread to dispatch the systemInfo event to all extension 78 // Called to dispatch the systemInfo.display.onDisplayChanged event. 116 // For systemInfo.display event. 164 systeminfo::BuildStorageUnitInfo(info, &unit);
|
system_info_provider.h | 28 // of query requests, e.g. calling systemInfo.cpu.get repeatedly in an
|
/external/chromium_org/chrome/browser/extensions/api/system_storage/ |
storage_info_provider.h | 23 namespace systeminfo { namespace in namespace:extensions 30 } // namespace systeminfo
|
storage_info_provider.cc | 21 namespace systeminfo { namespace in namespace:extensions 34 } // namespace systeminfo 85 systeminfo::BuildStorageUnitInfo(*it, unit.get());
|
system_storage_api.h | 14 // Implementation of the systeminfo.storage.get API. It is an asynchronous
|
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/ |
canned_data.py | 127 'systemInfo.cpu': { 130 'systemInfo.stuff': { 181 'systemInfo.display': { 251 'systemInfo.cpu': { 254 'systemInfo.stuff': { 325 'systemInfo.cpu': { 328 'systemInfo.stuff': { 424 'systemInfo.display': { 452 'systemInfo.display': { 486 'systemInfo.display': [all...] |
/external/chromium_org/chrome/browser/resources/feedback/js/ |
feedback.js | 40 var systemInfo = null; 144 systemInfo != null) { 158 if (systemInfo != null) 167 feedbackInfo.systemInformation.concat(systemInfo); 169 feedbackInfo.systemInformation = systemInfo; 294 systemInfo = sysInfo;
|
/external/chromium_org/chrome/common/extensions/api/ |
media_galleries_private.idl | 6 // systeminfo.storage API in the future.
|
/external/chromium_org/third_party/WebKit/Source/platform/win/ |
SystemInfo.cpp | 27 #include "platform/win/SystemInfo.h"
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
availability_finder_test.py | 147 self._avail_finder.GetApiAvailability('systemInfo.stuff')) 151 self._avail_finder.GetApiAvailability('systemInfo.cpu')) 216 self._avail_finder.GetApiAvailability('systemInfo.display'))
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
cpuid_unittest.cc | 34 #include "talk/base/systeminfo.h"
|