/base/powermgr/battery_statistics/services/native/src/entities/ |
D | user_entity.cpp | 35 double UserEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 38 auto iter = userPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 42 power, uidOrUserId); in GetEntityPowerMah() 45 … "No user power consumption related with user id: %{public}d found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | alarm_entity.cpp | 65 double AlarmEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 68 auto iter = alarmPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 72 power, uidOrUserId); in GetEntityPowerMah() 75 … "No app alarm power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | flashlight_entity.cpp | 69 double FlashlightEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 72 auto iter = flashlightPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 76 power, uidOrUserId); in GetEntityPowerMah() 79 …"No app flashlight power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | wakelock_entity.cpp | 69 double WakelockEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 72 auto iter = wakelockPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 76 power, uidOrUserId); in GetEntityPowerMah() 79 … "No app wakelock power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | gnss_entity.cpp | 68 double GnssEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 71 auto iter = gnssPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 75 power, uidOrUserId); in GetEntityPowerMah() 78 … "No app gnss power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | audio_entity.cpp | 72 double AudioEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 75 auto iter = audioPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 79 power, uidOrUserId); in GetEntityPowerMah() 82 … "No app audio power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | camera_entity.cpp | 66 double CameraEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 69 auto iter = cameraPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 73 power, uidOrUserId); in GetEntityPowerMah() 76 … "No app camera power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | sensor_entity.cpp | 122 double SensorEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 125 auto iter = sensorTotalPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 129 power, uidOrUserId); in GetEntityPowerMah() 132 … "No app sensor power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | cpu_entity.cpp | 170 double CpuEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 173 auto iter = cpuTotalPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 177 power, uidOrUserId); in GetEntityPowerMah() 180 … "No app cpu total power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | bluetooth_entity.cpp | 230 double BluetoothEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 233 if (uidOrUserId > StatsUtils::INVALID_VALUE) { in GetEntityPowerMah() 234 auto iter = appBluetoothPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 238 power, uidOrUserId); in GetEntityPowerMah() 241 … "No app blueooth power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
D | uid_entity.cpp | 144 double UidEntity::GetEntityPowerMah(int32_t uidOrUserId) in GetEntityPowerMah() argument 147 auto iter = uidPowerMap_.find(uidOrUserId); in GetEntityPowerMah() 151 power, uidOrUserId); in GetEntityPowerMah() 154 … "No app uid power consumption related to uid: %{public}d was found, return 0", uidOrUserId); in GetEntityPowerMah()
|
/base/powermgr/battery_statistics/services/native/include/entities/ |
D | user_entity.h | 30 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | idle_entity.h | 30 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | alarm_entity.h | 31 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | audio_entity.h | 33 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | gnss_entity.h | 33 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | wakelock_entity.h | 33 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | flashlight_entity.h | 33 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | camera_entity.h | 33 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | cpu_entity.h | 32 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | screen_entity.h | 31 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | uid_entity.h | 31 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | phone_entity.h | 32 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | sensor_entity.h | 33 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|
D | wifi_entity.h | 32 double GetEntityPowerMah(int32_t uidOrUserId = StatsUtils::INVALID_VALUE) override;
|