Searched refs:batteryLevelInt (Results 1 – 1 of 1) sorted by relevance
1873 final int batteryLevelInt = buildBatteryLevelInt(cur) | includeStepDetails; in writeHistoryDelta() local1874 final boolean batteryLevelIntChanged = batteryLevelInt != lastBatteryLevelInt; in writeHistoryDelta()1907 dest.writeInt(batteryLevelInt); in writeHistoryDelta()1909 + Integer.toHexString(batteryLevelInt) in writeHistoryDelta()2112 final int batteryLevelInt; in readHistoryDelta() local2114 batteryLevelInt = src.readInt(); in readHistoryDelta()2115 cur.batteryLevel = (byte)((batteryLevelInt>>25)&0x7f); in readHistoryDelta()2116 cur.batteryTemperature = (short)((batteryLevelInt<<7)>>21); in readHistoryDelta()2117 cur.batteryVoltage = (char)(batteryLevelInt&0x3fff); in readHistoryDelta()2120 + Integer.toHexString(batteryLevelInt) in readHistoryDelta()[all …]