HomeSort by relevance Sort by last modified time
    Searched defs:mServiceState (Results 1 - 8 of 8) 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;
  /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;
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.h 150 sound_trigger_service_state_t mServiceState;
  /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/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetPhoneState.java 37 private ServiceState mServiceState;
183 mServiceState = serviceState;
252 if (mServiceState != null &&
253 (mServiceState.getRadioTechnology() ==
255 mServiceState.getRadioTechnology() ==
  /packages/services/Telephony/src/com/android/services/telephony/
TelecomAccountRegistry.java 205 if (newState == ServiceState.STATE_IN_SERVICE && mServiceState != newState) {
209 mServiceState = newState;
218 private int mServiceState = ServiceState.STATE_POWER_OFF;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkControllerImpl.java 75 ServiceState mServiceState;
268 return (mServiceState != null && mServiceState.isEmergencyOnly());
507 mServiceState = state;
582 if (mServiceState != null) {
587 switch(mServiceState.getVoiceRegState()) {
593 retVal = mServiceState.getDataRegState() == ServiceState.STATE_IN_SERVICE;
601 if (DEBUG) Log.d(TAG, "hasService: mServiceState=" + mServiceState + " retVal=" + retVal);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
TelephonyRegistry.java 123 private ServiceState[] mServiceState;
245 mServiceState = new ServiceState[numPhones];
261 mServiceState[i] = new ServiceState();
357 if (VDBG) log("listen: call onSSC state=" + mServiceState[phoneId]);
359 new ServiceState(mServiceState[phoneId]));
553 mServiceState[phoneId] = state;
    [all...]

Completed in 3753 milliseconds