Home
last modified time | relevance | path

Searched refs:stateInt (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java1878 final int stateInt = buildStateInt(cur); in writeHistoryDelta() local
1879 final boolean stateIntChanged = stateInt != lastStateInt; in writeHistoryDelta()
1915 dest.writeInt(stateInt); in writeHistoryDelta()
1917 + Integer.toHexString(stateInt) in writeHistoryDelta()
2129 int stateInt = src.readInt(); in readHistoryDelta() local
2130 cur.states = (firstToken&DELTA_STATE_MASK) | (stateInt&(~DELTA_STATE_MASK)); in readHistoryDelta()
2131 cur.batteryStatus = (byte)((stateInt>>STATE_BATTERY_STATUS_SHIFT) in readHistoryDelta()
2133 cur.batteryHealth = (byte)((stateInt>>STATE_BATTERY_HEALTH_SHIFT) in readHistoryDelta()
2135 cur.batteryPlugType = (byte)((stateInt>>STATE_BATTERY_PLUG_SHIFT) in readHistoryDelta()
2150 + Integer.toHexString(stateInt) in readHistoryDelta()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRIL.java2289 private RadioState getRadioStateFromInt(int stateInt) { in getRadioStateFromInt() argument
2293 switch(stateInt) { in getRadioStateFromInt()
2300 "Unrecognized RIL_RadioState: " + stateInt); in getRadioStateFromInt()