Home | History | Annotate | Download | only in deviceinfo

Lines Matching refs:serviceState

37 import android.telephony.ServiceState;
316 private void updateServiceState(ServiceState serviceState) {
317 final int state = serviceState.getState();
321 case ServiceState.STATE_IN_SERVICE:
324 case ServiceState.STATE_OUT_OF_SERVICE:
327 case ServiceState.STATE_EMERGENCY_ONLY:
332 case ServiceState.STATE_POWER_OFF:
341 if (serviceState.getRoaming()) {
346 setSummaryText(KEY_OPERATOR_NAME, serviceState.getOperatorAlphaLong());
359 if ((ServiceState.STATE_OUT_OF_SERVICE == state) ||
360 (ServiceState.STATE_POWER_OFF == state)) {
443 public void onServiceStateChanged(ServiceState serviceState) {
444 updateServiceState(serviceState);