Home | History | Annotate | Download | only in deviceinfo

Lines Matching refs:serviceState

34 import android.telephony.ServiceState;
277 private void updateServiceState(ServiceState serviceState) {
278 final int state = serviceState.getState();
282 case ServiceState.STATE_IN_SERVICE:
285 case ServiceState.STATE_OUT_OF_SERVICE:
286 case ServiceState.STATE_EMERGENCY_ONLY:
289 case ServiceState.STATE_POWER_OFF:
296 if (serviceState.getRoaming()) {
301 setSummaryText(KEY_OPERATOR_NAME, serviceState.getOperatorAlphaLong());
315 if ((ServiceState.STATE_OUT_OF_SERVICE == state) ||
316 (ServiceState.STATE_POWER_OFF == state)) {
387 public void onServiceStateChanged(ServiceState serviceState) {
388 updateServiceState(serviceState);