Home
last modified time | relevance | path

Searched refs:mRadioState (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/telephony/current/mockmodem/src/android/telephony/mockmodem/
DIRadioModemImpl.java67 private int mRadioState; field in IRadioModemImpl
143 mRadioState = (int) ar.result; in handleMessage()
144 Log.i(mTag, "Radio state: " + mRadioState); in handleMessage()
425 mRadioState = MockModemConfigInterface.RADIO_STATE_ON; in setRadioPower()
427 mRadioState = MockModemConfigInterface.RADIO_STATE_OFF; in setRadioPower()
429 mMockModemConfigInterface.setRadioState(mSubId, mRadioState, mTag); in setRadioPower()
DIRadioNetworkImpl.java69 private int mRadioState; field in IRadioNetworkImpl
129 int oldRadioState = mRadioState; in handleMessage()
132 mRadioState = (int) ar.result; in handleMessage()
133 Log.i(mTag, "Radio state: " + mRadioState); in handleMessage()
134 if (oldRadioState != mRadioState) { in handleMessage()
170 if (mRadioState != MockModemConfigInterface.RADIO_STATE_ON) { in updateNetworkStatus()
520 && mRadioState == MockModemConfigInterface.RADIO_STATE_ON) { in getSignalStrength()
1076 if (mRadioState != MockModemConfigInterface.RADIO_STATE_ON) { in unsolCurrentSignalStrength()
1104 if (mRadioState != MockModemConfigInterface.RADIO_STATE_ON) { in unsolCellInfoList()
1128 if (mRadioState != MockModemConfigInterface.RADIO_STATE_ON) { in unsolBarringInfoChanged()
[all …]
DMockModemConfigBase.java82 private int mRadioState = MockModemConfigInterface.DEFAULT_RADIO_STATE; field in MockModemConfigBase
389 + mRadioState in handleMessage()
393 if (mRadioState != state) { in handleMessage()
394 mRadioState = state; in handleMessage()
396 new AsyncResult(null, mRadioState, null)); in handleMessage()
566 mRadioState = MockModemConfigInterface.DEFAULT_RADIO_STATE; in setDefaultConfigValue()
812 mRadioStateChangedRegistrants.notifyRegistrants(new AsyncResult(null, mRadioState, null)); in notifyAllRegistrantNotifications()