Lines Matching refs:ServiceState
27 * The following phone information is included in returned ServiceState:
36 public class ServiceState implements Parcelable {
188 * Create a new ServiceState from a intent notifier Bundle
194 * @return newly created ServiceState
197 public static ServiceState newFromBundle(Bundle m) {
198 ServiceState ret;
199 ret = new ServiceState();
207 public ServiceState() {
215 public ServiceState(ServiceState s) {
219 protected void copyFrom(ServiceState s) {
240 * Construct a ServiceState object from the given parcel.
242 public ServiceState(Parcel in) {
286 public static final Parcelable.Creator<ServiceState> CREATOR =
287 new Parcelable.Creator<ServiceState>() {
288 public ServiceState createFromParcel(Parcel in) {
289 return new ServiceState(in);
292 public ServiceState[] newArray(int size) {
293 return new ServiceState[size];
443 ServiceState s;
446 s = (ServiceState) o;
565 if (DBG) Rlog.d(LOG_TAG, "[ServiceState] setNullState=" + state);
595 if (DBG) Rlog.e(LOG_TAG, "[ServiceState] setState deprecated use setVoiceRegState()");
601 if (DBG) Rlog.d(LOG_TAG, "[ServiceState] setVoiceRegState=" + mVoiceRegState);
607 if (DBG) Rlog.d(LOG_TAG, "[ServiceState] setDataRegState=" + mDataRegState);
682 * Set ServiceState based on intent notifier map.
737 if (DBG) Rlog.d(LOG_TAG, "[ServiceState] setDataRadioTechnology=" + mRilDataRadioTechnology);
765 Rlog.e(LOG_TAG, "ServiceState.getRadioTechnology() DEPRECATED will be removed *******");
771 case ServiceState.RIL_RADIO_TECHNOLOGY_GPRS:
773 case ServiceState.RIL_RADIO_TECHNOLOGY_EDGE:
775 case ServiceState.RIL_RADIO_TECHNOLOGY_UMTS:
777 case ServiceState.RIL_RADIO_TECHNOLOGY_HSDPA:
779 case ServiceState.RIL_RADIO_TECHNOLOGY_HSUPA:
781 case ServiceState.RIL_RADIO_TECHNOLOGY_HSPA:
783 case ServiceState.RIL_RADIO_TECHNOLOGY_IS95A:
784 case ServiceState.RIL_RADIO_TECHNOLOGY_IS95B:
786 case ServiceState.RIL_RADIO_TECHNOLOGY_1xRTT:
788 case ServiceState.RIL_RADIO_TECHNOLOGY_EVDO_0:
790 case ServiceState.RIL_RADIO_TECHNOLOGY_EVDO_A:
792 case ServiceState.RIL_RADIO_TECHNOLOGY_EVDO_B:
794 case ServiceState.RIL_RADIO_TECHNOLOGY_EHRPD:
796 case ServiceState.RIL_RADIO_TECHNOLOGY_LTE:
798 case ServiceState.RIL_RADIO_TECHNOLOGY_HSPAP:
810 Rlog.e(LOG_TAG, "ServiceState.getNetworkType() DEPRECATED will be removed *******");