OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:totalPowerMah
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/com/android/internal/os/
BatterySipper.java
26
public double
totalPowerMah
;
95
this.
totalPowerMah
= value;
117
return Double.compare(other.
totalPowerMah
,
totalPowerMah
);
139
totalPowerMah
+= other.
totalPowerMah
;
178
return
totalPowerMah
= usagePowerMah + wifiPowerMah + gpsPowerMah + cpuPowerMah +
BatteryStatsHelper.java
449
mMaxRealPower = mMaxPower = mUsageList.get(0).
totalPowerMah
;
452
mComputedPower += mUsageList.get(i).
totalPowerMah
;
597
if (radio.
totalPowerMah
> 0) {
622
final double
totalPowerMah
= (suspendPowerMaMs + idlePowerMaMs) / (60 * 60 * 1000);
623
if (DEBUG &&
totalPowerMah
!= 0) {
630
if (
totalPowerMah
!= 0) {
631
addEntry(BatterySipper.DrainType.IDLE, mTypeBatteryRealtimeUs / 1000,
totalPowerMah
);
646
if (bs.
totalPowerMah
> 0) {
660
if (bs.
totalPowerMah
> 0) {
/packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageSummary.java
274
return Double.compare(b.
totalPowerMah
, a.
totalPowerMah
);
304
if ((sipper.
totalPowerMah
* SECONDS_IN_HOUR) < MIN_POWER_THRESHOLD_MILLI_AMP) {
309
((sipper.
totalPowerMah
/ totalPower) * dischargeAmount);
316
if (sipper.
totalPowerMah
< ((mStatsHelper.getMaxRealPower()*2)/3)) {
329
if (sipper.
totalPowerMah
< (mStatsHelper.getMaxRealPower()/2)) {
356
final double percentOfMax = (sipper.
totalPowerMah
* 100)
PowerUsageDetail.java
94
((entry.sipper.
totalPowerMah
* dischargeAmount / helper.getTotalPower()) + .5));
96
Math.ceil(entry.sipper.
totalPowerMah
* 100 / helper.getMaxPower()));
148
entry.sipper.
totalPowerMah
,
184
entry.sipper.
totalPowerMah
,
210
entry.sipper.
totalPowerMah
,
235
entry.sipper.
totalPowerMah
,
272
entry.sipper.
totalPowerMah
,
[
all
...]
/packages/apps/Settings/src/com/android/settings/applications/
InstalledAppDetails.java
607
final int percentOfMax = (int) ((mSipper.
totalPowerMah
)
[
all
...]
/frameworks/base/core/java/android/os/
BatteryStats.java
[
all
...]
Completed in 137 milliseconds