Searched refs:sysctl_value (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/third_party/webrtc/base/ |
D | systeminfo.cc | 137 uint32_t sysctl_value; in SystemInfo() local 138 size_t length = sizeof(sysctl_value); in SystemInfo() 139 if (!sysctlbyname("hw.physicalcpu_max", &sysctl_value, &length, NULL, 0)) { in SystemInfo() 140 physical_cpus_ = static_cast<int>(sysctl_value); in SystemInfo() 142 length = sizeof(sysctl_value); in SystemInfo() 143 if (!sysctlbyname("hw.logicalcpu_max", &sysctl_value, &length, NULL, 0)) { in SystemInfo() 144 logical_cpus_ = static_cast<int>(sysctl_value); in SystemInfo() 157 length = sizeof(sysctl_value); in SystemInfo() 158 if (!sysctlbyname("machdep.cpu.family", &sysctl_value, &length, NULL, 0)) { in SystemInfo() 159 cpu_family_ = static_cast<int>(sysctl_value); in SystemInfo() [all …]
|