HomeSort by relevance Sort by last modified time
    Searched refs:SystemInfo (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/webrtc/webrtc/system_wrappers/source/
cpu_info.cc 13 #include "webrtc/base/systeminfo.h"
18 return static_cast<uint32_t>(rtc::SystemInfo::GetMaxCpus());
  /external/google-breakpad/src/google_breakpad/processor/
symbol_supplier.h 42 struct SystemInfo;
67 const SystemInfo *system_info,
75 const SystemInfo *system_info,
88 const SystemInfo *system_info,
system_info.h 44 struct SystemInfo {
46 SystemInfo() : os(), os_short(), os_version(), cpu(), cpu_info(),
49 // Resets the SystemInfo object to its default values.
minidump_processor.h 47 struct SystemInfo;
84 static bool GetCPUInfo(Minidump* dump, SystemInfo* info);
90 static bool GetOSInfo(Minidump* dump, SystemInfo* info);
exploitability.h 65 SystemInfo *system_info_;
stack_frame_symbolizer.h 51 struct SystemInfo;
79 const SystemInfo* system_info,
stackwalker.h 88 const SystemInfo* system_info,
114 Stackwalker(const SystemInfo* system_info,
182 const SystemInfo* system_info_;
microdump.h 114 SystemInfo* GetSystemInfo() { return system_info_.get(); }
120 scoped_ptr<SystemInfo> system_info_;
process_state.h 110 const SystemInfo* system_info() const { return &system_info_; }
169 SystemInfo system_info_;
  /external/webrtc/webrtc/base/
systeminfo.h 20 class SystemInfo {
29 SystemInfo();
systeminfo_unittest.cc 13 #include "webrtc/base/systeminfo.h"
17 rtc::SystemInfo info;
25 rtc::SystemInfo info;
39 rtc::SystemInfo info;
41 rtc::SystemInfo::Architecture architecture = info.GetCpuArchitecture();
44 EXPECT_EQ(rtc::SystemInfo::SI_ARCH_X64, architecture);
47 EXPECT_EQ(rtc::SystemInfo::SI_ARCH_ARM, architecture);
49 EXPECT_EQ(rtc::SystemInfo::SI_ARCH_X86, architecture);
57 rtc::SystemInfo info;
83 rtc::SystemInfo info
    [all...]
systeminfo.cc 11 #include "webrtc/base/systeminfo.h"
91 int SystemInfo::logical_cpus_ = 0;
93 SystemInfo::SystemInfo() {
98 int SystemInfo::GetMaxCpus() {
107 int SystemInfo::GetCurCpus() {
131 SystemInfo::Architecture SystemInfo::GetCpuArchitecture() {
146 std::string SystemInfo::GetCpuVendor() {
164 int64_t SystemInfo::GetMemorySize()
    [all...]
  /external/google-breakpad/src/processor/
simple_symbol_supplier.h 108 const SystemInfo *system_info,
112 const SystemInfo *system_info,
119 const SystemInfo *system_info,
129 const SystemInfo *system_info,
stackwalker_ppc.h 56 StackwalkerPPC(const SystemInfo* system_info,
stackwalker_ppc64.h 54 StackwalkerPPC64(const SystemInfo* system_info,
stackwalker_sparc.h 56 StackwalkerSPARC(const SystemInfo* system_info,
stackwalker_mips.h 56 StackwalkerMIPS(const SystemInfo* system_info,
stackwalker_amd64.h 59 StackwalkerAMD64(const SystemInfo* system_info,
stackwalker_arm.h 57 StackwalkerARM(const SystemInfo* system_info,
stackwalker_arm64.h 57 StackwalkerARM64(const SystemInfo* system_info,
stackwalker_unittest_utils.h 170 typedef google_breakpad::SystemInfo SystemInfo;
172 const SystemInfo *system_info,
175 const SystemInfo *system_info,
179 const SystemInfo *system_info,
  /external/netperf/src/
netcpu_ntperf.c 146 SYSTEM_INFO SystemInfo;
148 GetSystemInfo(&SystemInfo);
207 SYSTEM_INFO SystemInfo;
209 GetSystemInfo(&SystemInfo);
239 if (returnNumCPUs != (int)SystemInfo.dwNumberOfProcessors)
243 (int)SystemInfo.dwNumberOfProcessors, returnNumCPUs);
288 SYSTEM_INFO SystemInfo;
290 GetSystemInfo(&SystemInfo);
334 if ((int)SystemInfo.dwNumberOfProcessors > 1)
336 for (i=0; i < (int)SystemInfo.dwNumberOfProcessors; i++
    [all...]
  /external/google-breakpad/src/tools/mac/crash_report/
on_demand_symbol_supplier.h 56 const SystemInfo *system_info,
61 const SystemInfo *system_info,
67 const SystemInfo *system_info,
106 const SystemInfo *system_info);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
system_info_unittest.py 23 info = system_info.SystemInfo.FromDict(data)
24 self.assertTrue(isinstance(info, system_info.SystemInfo))
45 info = system_info.SystemInfo.FromDict(data)
63 system_info.SystemInfo.FromDict(data_copy)
system_info.py 7 class SystemInfo(object):
18 """Constructs a SystemInfo from a dictionary of attributes.

Completed in 492 milliseconds

1 2 3