Searched defs:CarrierIdentifier (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/service/carrier/
H A DCarrierIdentifier.java31 public class CarrierIdentifier implements Parcelable { class in inherits:Parcelable
33 /** Used to create a {@link CarrierIdentifier} from a {@link Parcel}. */
34 public static final Creator<CarrierIdentifier> CREATOR = new Creator<CarrierIdentifier>() {
36 public CarrierIdentifier createFromParcel(Parcel parcel) {
37 return new CarrierIdentifier(parcel);
41 public CarrierIdentifier[] newArray(int i) {
42 return new CarrierIdentifier[i];
53 public CarrierIdentifier(String mcc, String mnc, @Nullable String spn, @Nullable String imsi, method in class:CarrierIdentifier
71 public CarrierIdentifier(byt method in class:CarrierIdentifier
90 public CarrierIdentifier(Parcel parcel) { method in class:CarrierIdentifier
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCarrierIdentifier.java49 * CarrierIdentifier identifies the subscription carrier and returns a canonical carrier Id
50 * and a user friendly carrier name. CarrierIdentifier reads subscription info and check against
52 * dedicated CarrierIdentifier.
54 public class CarrierIdentifier extends Handler { class in inherits:Handler
55 private static final String LOG_TAG = CarrierIdentifier.class.getSimpleName();
131 public CarrierIdentifier(Phone phone) { method in class:CarrierIdentifier
132 logd("Creating CarrierIdentifier[" + phone.getPhoneId() + "]");
415 if (!CarrierIdentifier.equals(subscriptionRule.mMccMnc, mMccMnc, false)) {
438 if (!CarrierIdentifier.equals(subscriptionRule.mGid1, mGid1, true)) {
447 if (!CarrierIdentifier
[all...]

Completed in 102 milliseconds