Searched refs:GetSectionIntValue (Results 1 – 3 of 3) sorted by relevance
/external/webrtc/webrtc/base/ |
D | linux.cc | 66 if (GetSectionIntValue(i, "processor", &processor_id)) { in GetNumCpus() 103 if (GetSectionIntValue(i, "physical id", &physical_id) && in GetNumPhysicalCpus() 104 GetSectionIntValue(i, "cpu cores", &cores) && in GetNumPhysicalCpus() 130 if (GetSectionIntValue(i, "CPU architecture", &cpu_family)) { in GetCpuFamily() 136 GetSectionIntValue(0, "cpu family", &cpu_family); in GetCpuFamily() 158 bool ProcCpuInfo::GetSectionIntValue(size_t section_num, in GetSectionIntValue() function in rtc::ProcCpuInfo
|
D | linux_unittest.cc | 51 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "model", &out_model)); in TEST() 55 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "stepping", &out_stepping)); in TEST() 59 EXPECT_TRUE(proc_info.GetSectionIntValue(0, "processor", &out_processor)); in TEST()
|
D | linux.h | 100 virtual bool GetSectionIntValue(size_t section_num, const std::string& key,
|