Home
last modified time | relevance | path

Searched refs:fCPUInfos (Results 1 – 4 of 4) sorted by relevance

/haiku/src/apps/activitymonitor/
H A DSystemInfo.h47 { return fCPUInfos[cpu].active_time; } in CPUActiveTime()
49 { return fCPUInfos[cpu].current_frequency; } in CPUCurrentFrequency()
69 cpu_info* fCPUInfos; variable
H A DSystemInfo.cpp27 fCPUInfos = new cpu_info[fSystemInfo.cpu_count]; in SystemInfo()
28 get_cpu_info(0, fSystemInfo.cpu_count, fCPUInfos); in SystemInfo()
43 delete[] fCPUInfos; in ~SystemInfo()
/haiku/src/apps/debuganalyzer/model_loader/
H A DModelLoader.cpp329 fCPUInfos(NULL), in ModelLoader()
338 delete[] fCPUInfos; in ~ModelLoader()
377 fCPUInfos = new(std::nothrow) CPUInfo[kMaxCPUCount]; in PrepareForLoading()
378 if (fCPUInfos == NULL) in PrepareForLoading()
412 delete[] fCPUInfos; in FinishLoading()
413 fCPUInfos = NULL; in FinishLoading()
510 fModel->CPUAt(i)->SetIdleTime(fCPUInfos[i].idleTime); in _Load()
1341 fCPUInfos[cpu].idleTime += time; in _AddIdleTime()
H A DModelLoader.h122 CPUInfo* fCPUInfos; variable