Searched refs:batteryLevelInt (Results 1 – 1 of 1) sorted by relevance
3234 final int batteryLevelInt = buildBatteryLevelInt(cur) | includeStepDetails; in writeHistoryDelta() local3235 final boolean batteryLevelIntChanged = batteryLevelInt != lastBatteryLevelInt; in writeHistoryDelta()3273 dest.writeInt(batteryLevelInt); in writeHistoryDelta()3275 + Integer.toHexString(batteryLevelInt) in writeHistoryDelta()3362 private void readBatteryLevelInt(int batteryLevelInt, HistoryItem out) { in readBatteryLevelInt() argument3363 out.batteryLevel = (byte)((batteryLevelInt & 0xfe000000) >>> 25); in readBatteryLevelInt()3364 out.batteryTemperature = (short)((batteryLevelInt & 0x01ff8000) >>> 15); in readBatteryLevelInt()3365 out.batteryVoltage = (char)((batteryLevelInt & 0x00007ffe) >>> 1); in readBatteryLevelInt()3503 final int batteryLevelInt; in readHistoryDelta() local3505 batteryLevelInt = src.readInt(); in readHistoryDelta()[all …]