HomeSort by relevance Sort by last modified time
    Searched refs:RadioState (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
UiccControllerTest.java 123 assertEquals(CommandsInterface.RadioState.RADIO_UNAVAILABLE,
132 assertEquals(CommandsInterface.RadioState.RADIO_ON, mSimulatedCommands.getRadioState());
IccCardProxyTest.java 103 assertEquals(CommandsInterface.RadioState.RADIO_ON, mSimulatedCommands.getRadioState());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RadioIndication.java 114 * @param radioState android.hardware.radio.V1_0.RadioState
116 public void radioStateChanged(int indicationType, int radioState) {
119 CommandsInterface.RadioState newState = getRadioStateFromInt(radioState);
    [all...]
BaseCommands.java 34 protected RadioState mState = RadioState.RADIO_UNAVAILABLE;
118 public RadioState getRadioState() {
215 if (mState == RadioState.RADIO_OFF || !mState.isAvailable()) {
774 * Store new RadioState and send notification based on the changes
779 * RadioState has 3 values : RADIO_OFF, RADIO_UNAVAILABLE, RADIO_ON.
781 * @param newState new RadioState decoded from RIL_UNSOL_RADIO_STATE_CHANGED
783 protected void setRadioState(RadioState newState) {
784 RadioState oldState;
CommandsInterface.java 38 enum RadioState {
122 RadioState getRadioState();
136 * Fires on any RadioState transition
152 * Fires on any transition into RadioState.isOn()
161 * Fires on any transition out of RadioState.isAvailable()
170 * Fires on any transition into !RadioState.isAvailable()
179 * Fires on any transition into RADIO_OFF or !RadioState.isAvailable()
    [all...]
ServiceStateTracker.java     [all...]
GsmCdmaPhone.java 380 CommandsInterface.RadioState radioState = mCi.getRadioState();
381 if (radioState.isAvailable()) {
383 if (radioState.isOn()) {
387 if (!radioState.isAvailable() || !radioState.isOn()) {
    [all...]
RIL.java 490 setRadioState(RadioState.RADIO_UNAVAILABLE);
    [all...]
  /hardware/interfaces/radio/1.0/vts/functional/
radio_indication.cpp 22 RadioState /*radioState*/) {
radio_hidl_hal_utils_v1_0.h 406 Return<void> radioStateChanged(RadioIndicationType type, RadioState radioState);
  /hardware/interfaces/radio/1.1/vts/functional/
radio_indication.cpp 38 RadioState /*radioState*/) {
radio_hidl_hal_utils_v1_1.h 429 Return<void> radioStateChanged(RadioIndicationType type, RadioState radioState);
  /hardware/interfaces/radio/1.0/
IRadioIndication.hal 27 * @param radioState Current radio state
29 oneway radioStateChanged(RadioIndicationType type, RadioState radioState);
448 * 1) RadioState:ON->RadioState:UNAVAILABLE->RadioState:ON or
449 * 2) RadioState:OFF->RadioState:UNAVAILABLE->RadioState:OFF
450 * This message must be sent either just before the Radio State changes to RadioState:UNAVAILABL
    [all...]
types.hal 233 enum RadioState : int32_t {
    [all...]
Android.mk     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCard.java 49 import com.android.internal.telephony.CommandsInterface.RadioState;
84 private RadioState mLastRadioState = RadioState.RADIO_UNAVAILABLE;
169 RadioState radioState = mCi.getRadioState();
170 if (DBG) log("update: radioState=" + radioState + " mLastRadioState="
173 if (radioState == RadioState.RADIO_ON && mLastRadioState == RadioState.RADIO_ON)
    [all...]
IccCardProxy.java 35 import com.android.internal.telephony.CommandsInterface.RadioState;
109 private RadioState mRadioState = RadioState.RADIO_UNAVAILABLE;
231 mRadioState = RadioState.RADIO_ON;
392 * RadioState changes. When the UiccController receives a radio
396 * IccCardProxy is also registered for RadioState changes, it will
402 if (mRadioState == RadioState.RADIO_UNAVAILABLE) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 146 setRadioState(RadioState.RADIO_ON);
472 if ((mState == RadioState.RADIO_ON) && !isSimLocked()) {
    [all...]
SimulatedCommandsVerifier.java 49 public RadioState getRadioState() {
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 
  /hardware/ril/libril/
ril_service.cpp     [all...]

Completed in 428 milliseconds

1 2