HomeSort by relevance Sort by last modified time
    Searched refs:mServiceState (Results 1 - 10 of 10) sorted by null

  /frameworks/base/services/core/java/com/android/server/connectivity/
DataConnectionStats.java 45 private ServiceState mServiceState;
82 if (mServiceState == null) {
90 int networkType = mServiceState.getDataNetworkType();
126 return mServiceState != null
127 && mServiceState.getState() != ServiceState.STATE_OUT_OF_SERVICE
128 && mServiceState.getState() != ServiceState.STATE_POWER_OFF;
139 mServiceState = state;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
NetworkControllerBaseTest.java 48 private ServiceState mServiceState;
74 mServiceState = mock(ServiceState.class);
139 when(mServiceState.getRoaming()).thenReturn(isRoaming);
144 when(mServiceState.getCdmaEriIconIndex()).thenReturn(isRoaming ?
146 when(mServiceState.getCdmaEriIconMode()).thenReturn(isRoaming ?
152 when(mServiceState.getVoiceRegState()).thenReturn(voiceRegState);
157 when(mServiceState.getDataRegState()).thenReturn(dataRegState);
162 when(mServiceState.isEmergencyOnly()).thenReturn(isEmergency);
191 Log.d(TAG, "Sending Service State: " + mServiceState);
192 mPhoneStateListener.onServiceStateChanged(mServiceState);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetPhoneState.java 39 private ServiceState mServiceState;
235 mServiceState = serviceState;
316 if (mServiceState != null &&
317 (mServiceState.getRadioTechnology() ==
319 mServiceState.getRadioTechnology() ==
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneStateIntentReceiver.java 48 ServiceState mServiceState = new ServiceState();
91 return mServiceState;
186 mServiceState = ServiceState.newFromBundle(intent.getExtras());
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java 42 private int mServiceState = -1;
60 if (newState != mServiceState) {
62 " Current state=" + mServiceState);
63 mServiceState = newState;
  /packages/services/Telephony/src/com/android/services/telephony/
TelecomAccountRegistry.java 191 if (newState == ServiceState.STATE_IN_SERVICE && mServiceState != newState) {
195 mServiceState = newState;
205 private int mServiceState = ServiceState.STATE_POWER_OFF;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkControllerImpl.java     [all...]
  /frameworks/base/services/core/java/com/android/server/
TelephonyRegistry.java 136 private ServiceState[] mServiceState;
293 mServiceState = new ServiceState[numPhones];
309 mServiceState[i] = new ServiceState();
499 if (VDBG) log("listen: call onSSC state=" + mServiceState[phoneId]);
501 new ServiceState(mServiceState[phoneId]));
702 mServiceState[phoneId] = state;
    [all...]
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.cpp 488 mClient(client), mServiceState(SOUND_TRIGGER_STATE_NO_INIT)
612 if (mServiceState == SOUND_TRIGGER_STATE_DISABLED) {
769 if (state == mServiceState) {
773 mServiceState = state;
SoundTriggerHwService.h 153 sound_trigger_service_state_t mServiceState;

Completed in 922 milliseconds