Home
last modified time | relevance | path

Searched refs:cpuActivePowerMap_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/powermgr/battery_statistics/services/native/src/entities/
H A Dcpu_entity.cpp110 auto cpuActiveIter = cpuActivePowerMap_.find(uid); in CalculateCpuActivePower()
111 if (cpuActiveIter != cpuActivePowerMap_.end()) { in CalculateCpuActivePower()
118 cpuActivePowerMap_.insert(std::pair<int32_t, double>(uid, cpuActivePower)); in CalculateCpuActivePower()
192 auto cpuActiveIter = cpuActivePowerMap_.find(uid); in GetStatsPowerMah()
193 if (cpuActiveIter != cpuActivePowerMap_.end()) { in GetStatsPowerMah()
238 for (auto& iter : cpuActivePowerMap_) { in Reset()
/ohos5.0/base/powermgr/battery_statistics/services/native/include/entities/
H A Dcpu_entity.h42 std::map<int32_t, double> cpuActivePowerMap_; variable