Searched refs:batteryLevelInt (Results 1 – 1 of 1) sorted by relevance
1961 final int batteryLevelInt = buildBatteryLevelInt(cur); in writeHistoryDelta() local1962 final boolean batteryLevelIntChanged = batteryLevelInt != lastBatteryLevelInt; in writeHistoryDelta()1995 dest.writeInt(batteryLevelInt); in writeHistoryDelta()1997 + Integer.toHexString(batteryLevelInt) in writeHistoryDelta()2095 int batteryLevelInt = src.readInt(); in readHistoryDelta() local2096 cur.batteryLevel = (byte)((batteryLevelInt>>25)&0x7f); in readHistoryDelta()2097 cur.batteryTemperature = (short)((batteryLevelInt<<7)>>21); in readHistoryDelta()2098 cur.batteryVoltage = (char)(batteryLevelInt&0x3fff); in readHistoryDelta()2101 + Integer.toHexString(batteryLevelInt) in readHistoryDelta()