Searched refs:stateInt (Results 1 – 2 of 2) sorted by relevance
784 private CommandsInterface.RadioState getRadioStateFromInt(int stateInt) { in getRadioStateFromInt() argument787 switch(stateInt) { in getRadioStateFromInt()798 throw new RuntimeException("Unrecognized RadioState: " + stateInt); in getRadioStateFromInt()
2793 final int stateInt = buildStateInt(cur); in writeHistoryDelta() local2794 final boolean stateIntChanged = stateInt != lastStateInt; in writeHistoryDelta()2835 dest.writeInt(stateInt); in writeHistoryDelta()2837 + Integer.toHexString(stateInt) in writeHistoryDelta()3064 int stateInt = src.readInt(); in readHistoryDelta() local3065 cur.states = (firstToken&DELTA_STATE_MASK) | (stateInt&(~STATE_BATTERY_MASK)); in readHistoryDelta()3066 cur.batteryStatus = (byte)((stateInt>>STATE_BATTERY_STATUS_SHIFT) in readHistoryDelta()3068 cur.batteryHealth = (byte)((stateInt>>STATE_BATTERY_HEALTH_SHIFT) in readHistoryDelta()3070 cur.batteryPlugType = (byte)((stateInt>>STATE_BATTERY_PLUG_SHIFT) in readHistoryDelta()3085 + Integer.toHexString(stateInt) in readHistoryDelta()