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.java1966 final int stateInt = buildStateInt(cur); in writeHistoryDelta() local
1967 final boolean stateIntChanged = stateInt != lastStateInt; in writeHistoryDelta()
2003 dest.writeInt(stateInt); in writeHistoryDelta()
2005 + Integer.toHexString(stateInt) in writeHistoryDelta()
2108 int stateInt = src.readInt(); in readHistoryDelta() local
2109 cur.states = (firstToken&DELTA_STATE_MASK) | (stateInt&(~DELTA_STATE_MASK)); in readHistoryDelta()
2110 cur.batteryStatus = (byte)((stateInt>>STATE_BATTERY_STATUS_SHIFT) in readHistoryDelta()
2112 cur.batteryHealth = (byte)((stateInt>>STATE_BATTERY_HEALTH_SHIFT) in readHistoryDelta()
2114 cur.batteryPlugType = (byte)((stateInt>>STATE_BATTERY_PLUG_SHIFT) in readHistoryDelta()
2129 + Integer.toHexString(stateInt) in readHistoryDelta()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRIL.java2249 private RadioState getRadioStateFromInt(int stateInt) { in getRadioStateFromInt() argument
2253 switch(stateInt) { in getRadioStateFromInt()
2260 "Unrecognized RIL_RadioState: " + stateInt); in getRadioStateFromInt()