Searched refs:batteryLevelInt (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java2449 final int batteryLevelInt = buildBatteryLevelInt(cur) | includeStepDetails;
2450 final boolean batteryLevelIntChanged = batteryLevelInt != lastBatteryLevelInt;
2488 dest.writeInt(batteryLevelInt);
2490 + Integer.toHexString(batteryLevelInt)
2569 private void readBatteryLevelInt(int batteryLevelInt, HistoryItem out) { argument
2570 out.batteryLevel = (byte)((batteryLevelInt & 0xfe000000) >>> 25);
2571 out.batteryTemperature = (short)((batteryLevelInt & 0x01ff8000) >>> 15);
2572 out.batteryVoltage = (char)((batteryLevelInt & 0x00007ffe) >>> 1);
2710 final int batteryLevelInt;
2712 batteryLevelInt
[all...]

Completed in 33 milliseconds