/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/data/ |
D | EuiccRulesAuthTableTest.java | 24 import android.service.carrier.CarrierIdentifier; 35 CarrierIdentifier opA = new CarrierIdentifier(new byte[] {0x21, 0x63, 0x54}, null, "4"); in testFindIndex() 36 CarrierIdentifier opB = new CarrierIdentifier(new byte[] {0x21, 0x69, 0x54}, "4", null); in testFindIndex() 43 Arrays.asList(new CarrierIdentifier[] {}), in testFindIndex() 49 new CarrierIdentifier( in testFindIndex() 54 new CarrierIdentifier( in testFindIndex() 62 new CarrierIdentifier( in testFindIndex() 65 new CarrierIdentifier( in testFindIndex() 74 new CarrierIdentifier( in testFindIndex() 77 new CarrierIdentifier( in testFindIndex() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CarrierRestrictionRulesTest.java | 21 import android.service.carrier.CarrierIdentifier; 61 ArrayList<CarrierIdentifier> allowedCarriers = new ArrayList<>(); in testBuilderAllowedAndExcludedCarriers() 62 allowedCarriers.add(new CarrierIdentifier(MCC1, MNC1, null, null, null, null)); in testBuilderAllowedAndExcludedCarriers() 63 allowedCarriers.add(new CarrierIdentifier(MCC2, MNC2, null, null, null, null)); in testBuilderAllowedAndExcludedCarriers() 65 ArrayList<CarrierIdentifier> excludedCarriers = new ArrayList<>(); in testBuilderAllowedAndExcludedCarriers() 66 excludedCarriers.add(new CarrierIdentifier(MCC2, MNC2, null, null, GID1, null)); in testBuilderAllowedAndExcludedCarriers() 82 ArrayList<CarrierIdentifier> emptyCarriers = new ArrayList<>(); in testBuilderEmptyLists() 95 ArrayList<CarrierIdentifier> allowedCarriers = new ArrayList<>(); in testBuilderWildCharacter() 96 allowedCarriers.add(new CarrierIdentifier(MCC1_WILDCHAR, MNC1_WILDCHAR, null, null, in testBuilderWildCharacter() 99 ArrayList<CarrierIdentifier> excludedCarriers = new ArrayList<>(); in testBuilderWildCharacter() [all …]
|
D | CarrierResolverTest.java | 30 import android.service.carrier.CarrierIdentifier; 236 CarrierIdentifier identifier = new CarrierIdentifier(null, null, null, null, null, null); in testGetCarrierIdFromIdentifier() 240 identifier = new CarrierIdentifier(MCCMNC.substring(0, 3), MCCMNC.substring(3), null, null, in testGetCarrierIdFromIdentifier() 245 … identifier = new CarrierIdentifier(MCCMNC.substring(0, 3), MCCMNC.substring(3), SPN_FI, null, in testGetCarrierIdFromIdentifier()
|
D | RILTest.java | 139 import android.service.carrier.CarrierIdentifier; 2610 ArrayList<CarrierIdentifier> carriers = new ArrayList<>(); in testCreateCarrierRestrictionList() 2611 carriers.add(new CarrierIdentifier("110", "120", null, null, null, null)); in testCreateCarrierRestrictionList() 2612 carriers.add(new CarrierIdentifier("210", "220", "SPN", null, null, null)); in testCreateCarrierRestrictionList() 2613 carriers.add(new CarrierIdentifier("310", "320", null, "012345", null, null)); in testCreateCarrierRestrictionList() 2614 carriers.add(new CarrierIdentifier("410", "420", null, null, "GID1", null)); in testCreateCarrierRestrictionList() 2615 carriers.add(new CarrierIdentifier("510", "520", null, null, null, "GID2")); in testCreateCarrierRestrictionList() 2620 c1.matchType = CarrierIdentifier.MatchType.ALL; in testCreateCarrierRestrictionList() 2624 c2.matchType = CarrierIdentifier.MatchType.SPN; in testCreateCarrierRestrictionList() 2629 c3.matchType = CarrierIdentifier.MatchType.IMSI_PREFIX; in testCreateCarrierRestrictionList() [all …]
|
/frameworks/base/telephony/java/android/telephony/euicc/ |
D | EuiccRulesAuthTable.java | 23 import android.service.carrier.CarrierIdentifier; 55 private final CarrierIdentifier[][] mCarrierIds; 61 private CarrierIdentifier[][] mCarrierIds; 72 mCarrierIds = new CarrierIdentifier[ruleNum][]; in Builder() 97 … public Builder add(int policyRules, List<CarrierIdentifier> carrierId, int policyRuleFlags) { in add() 103 mCarrierIds[mPosition] = carrierId.toArray(new CarrierIdentifier[carrierId.size()]); in add() 135 private EuiccRulesAuthTable(int[] policyRules, CarrierIdentifier[][] carrierIds, in EuiccRulesAuthTable() 151 public int findIndex(@EuiccProfileInfo.PolicyRule int policy, CarrierIdentifier carrierId) { in findIndex() 156 CarrierIdentifier[] carrierIds = mCarrierIds[i]; in findIndex() 161 CarrierIdentifier ruleCarrierId = carrierIds[j]; in findIndex() [all …]
|
/frameworks/base/telephony/java/android/service/carrier/ |
D | CarrierIdentifier.java | 37 public class CarrierIdentifier implements Parcelable { class 40 …atic final @android.annotation.NonNull Creator<CarrierIdentifier> CREATOR = new Creator<CarrierIde… 42 public CarrierIdentifier createFromParcel(Parcel parcel) { 43 return new CarrierIdentifier(parcel); 47 public CarrierIdentifier[] newArray(int i) { 48 return new CarrierIdentifier[i]; 61 public CarrierIdentifier(String mcc, String mnc, @Nullable String spn, @Nullable String imsi, in CarrierIdentifier() method in CarrierIdentifier 79 public CarrierIdentifier(@NonNull String mcc, @NonNull String mnc, @Nullable String spn, in CarrierIdentifier() method in CarrierIdentifier 100 public CarrierIdentifier(byte[] mccMnc, @Nullable String gid1, @Nullable String gid2) { in CarrierIdentifier() method in CarrierIdentifier 119 public CarrierIdentifier(Parcel parcel) { in CarrierIdentifier() method in CarrierIdentifier [all …]
|
D | ICarrierService.aidl | 21 import android.service.carrier.CarrierIdentifier; 32 oneway void getCarrierConfig(in int phoneId, in CarrierIdentifier id, in ResultReceiver result); in getCarrierConfig()
|
D | CarrierService.java | 104 public abstract PersistableBundle onLoadConfig(CarrierIdentifier id); in onLoadConfig() 151 public PersistableBundle onLoadConfig(int subscriptionId, @Nullable CarrierIdentifier id) { in onLoadConfig() 236 public void getCarrierConfig(int phoneId, CarrierIdentifier id, ResultReceiver result) { in getCarrierConfig()
|
D | CarrierIdentifier.aidl | 19 parcelable CarrierIdentifier;
|
/frameworks/base/telephony/java/android/telephony/ |
D | CarrierRestrictionRules.java | 25 import android.service.carrier.CarrierIdentifier; 167 private List<CarrierIdentifier> mAllowedCarriers; 168 private List<CarrierIdentifier> mExcludedCarriers; 180 mAllowedCarriers = new ArrayList<CarrierIdentifier>(); in CarrierRestrictionRules() 181 mExcludedCarriers = new ArrayList<CarrierIdentifier>(); in CarrierRestrictionRules() 191 mAllowedCarriers = new ArrayList<CarrierIdentifier>(); in CarrierRestrictionRules() 192 mExcludedCarriers = new ArrayList<CarrierIdentifier>(); in CarrierRestrictionRules() 195 in.readTypedList(mAllowedCarriers, CarrierIdentifier.CREATOR); in CarrierRestrictionRules() 196 in.readTypedList(mExcludedCarriers, CarrierIdentifier.CREATOR); in CarrierRestrictionRules() 236 public @NonNull List<CarrierIdentifier> getAllowedCarriers() { in getAllowedCarriers() [all …]
|
D | TelephonyManager.java | 79 import android.service.carrier.CarrierIdentifier; 13669 public int setAllowedCarriers(int slotIndex, List<CarrierIdentifier> carriers) { in setAllowedCarriers() 13835 public List<CarrierIdentifier> getAllowedCarriers(int slotIndex) { in getAllowedCarriers() 13842 return new ArrayList<CarrierIdentifier>(0); in getAllowedCarriers()
|
/frameworks/base/core/tests/coretests/src/android/service/euicc/ |
D | EuiccProfileInfoTest.java | 26 import android.service.carrier.CarrierIdentifier; 50 new CarrierIdentifier( in testWriteToParcel() 102 new CarrierIdentifier( in testBuilderAndGetters() 139 new CarrierIdentifier( in testBuilder_BasedOnAnotherProfile() 164 new CarrierIdentifier( in testBuilder_BasedOnAnotherProfileWithEmptyAccessRules() 187 new CarrierIdentifier( in testEqualsHashCode() 250 .setCarrierIdentifier(new CarrierIdentifier(new byte[] {1, 2, 3, 4}, null, null)); in testBuilderSetOperatorMccMnc_Illegal()
|
/frameworks/base/telephony/java/android/service/euicc/ |
D | EuiccProfileInfo.java | 26 import android.service.carrier.CarrierIdentifier; 131 private final CarrierIdentifier mCarrierIdentifier; 187 mCarrierIdentifier = CarrierIdentifier.CREATOR.createFromParcel(in); in EuiccProfileInfo() 227 private CarrierIdentifier mCarrierIdentifier; 308 public Builder setCarrierIdentifier(CarrierIdentifier value) { in setCarrierIdentifier() 333 CarrierIdentifier carrierIdentifier, in EuiccProfileInfo() 392 public CarrierIdentifier getCarrierIdentifier() { in getCarrierIdentifier()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RILUtils.java | 307 import android.service.carrier.CarrierIdentifier; 1882 List<CarrierIdentifier> carriers) { in convertToHalCarrierRestrictionList() 1884 for (CarrierIdentifier ci : carriers) { in convertToHalCarrierRestrictionList() 1888 int matchType = CarrierIdentifier.MatchType.ALL; in convertToHalCarrierRestrictionList() 1891 matchType = CarrierIdentifier.MatchType.SPN; in convertToHalCarrierRestrictionList() 1894 matchType = CarrierIdentifier.MatchType.IMSI_PREFIX; in convertToHalCarrierRestrictionList() 1897 matchType = CarrierIdentifier.MatchType.GID1; in convertToHalCarrierRestrictionList() 1900 matchType = CarrierIdentifier.MatchType.GID2; in convertToHalCarrierRestrictionList() 1916 List<CarrierIdentifier> carriers) { in convertToHalCarrierRestrictionListAidl() 1920 CarrierIdentifier ci = carriers.get(i); in convertToHalCarrierRestrictionListAidl() [all …]
|
D | CarrierResolver.java | 34 import android.service.carrier.CarrierIdentifier; 1019 @NonNull CarrierIdentifier carrierIdentifier) { in getCarrierIdFromIdentifier()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/ |
D | EuiccPort.java | 23 import android.service.carrier.CarrierIdentifier; 546 CarrierIdentifier[] opIds = new CarrierIdentifier[opIdSize]; in getRulesAuthTable() 1298 private static CarrierIdentifier buildCarrierIdentifier(Asn1Node node) in buildCarrierIdentifier() 1308 return new CarrierIdentifier(node.getChild(Tags.TAG_CTX_0).asBytes(), gid1, gid2); in buildCarrierIdentifier()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/subscription/ |
D | SubscriptionManagerServiceTest.java | 89 import android.service.carrier.CarrierIdentifier; 935 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC1, FAKE_MNC1, null, null, null, in testUpdateEmbeddedSubscriptions() 944 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC2, FAKE_MNC2, null, null, null, in testUpdateEmbeddedSubscriptions() 2408 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC1, FAKE_MNC1, null, null, null, in testUserUnlockUpdateEmbeddedSubscriptions() 2585 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC1, FAKE_MNC1, null, null, null, in testEsimActivation() 2670 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC1, FAKE_MNC1, null, null, null, in testDeleteEsim() 2726 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC2, FAKE_MNC2, null, null, null, in testEsimSwitch() 3070 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC2, FAKE_MNC2, null, null, null, in testEmbeddedProfilesUpdateFailed() 3108 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC2, FAKE_MNC2, null, null, null, in testNonNullSubInfoBuilderFromEmbeddedProfile() 3202 .setCarrierIdentifier(new CarrierIdentifier(FAKE_MCC1, FAKE_MNC1, in testIsSatelliteSpn() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/ |
D | EuiccPortTest.java | 37 import android.service.carrier.CarrierIdentifier; 507 new CarrierIdentifier(new byte[] {0x12, (byte) 0xF3, 0x45}, null, null))); in testGetRulesAuthTable() 510 new CarrierIdentifier(new byte[] {0x23, 0x67, 0x45}, null, "040506"))); in testGetRulesAuthTable()
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | ITelephony.aidl | 32 import android.service.carrier.CarrierIdentifier;
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/subscription/ |
D | SubscriptionManagerService.java | 60 import android.service.carrier.CarrierIdentifier; 1233 CarrierIdentifier cid = embeddedProfile.getCarrierIdentifier(); in updateEmbeddedSubscriptions()
|
/frameworks/base/core/api/ |
D | system-current.txt | 12670 method public android.service.carrier.CarrierIdentifier getCarrierIdentifier(); 12697 …ice.euicc.EuiccProfileInfo.Builder setCarrierIdentifier(android.service.carrier.CarrierIdentifier); 14417 …> areCarrierIdentifiersAllowed(@NonNull java.util.List<android.service.carrier.CarrierIdentifier>); 14419 …method @NonNull public java.util.List<android.service.carrier.CarrierIdentifier> getAllowedCarrier… 14422 …method @NonNull public java.util.List<android.service.carrier.CarrierIdentifier> getExcludedCarrie… 14437 …les.Builder setAllowedCarriers(@NonNull java.util.List<android.service.carrier.CarrierIdentifier>); 14440 …es.Builder setExcludedCarriers(@NonNull java.util.List<android.service.carrier.CarrierIdentifier>); 15326 …IVILEGED_PHONE_STATE) public java.util.List<android.service.carrier.CarrierIdentifier> getAllowedC… 15435 …ATE) public int setAllowedCarriers(int, java.util.List<android.service.carrier.CarrierIdentifier>); 16100 method public int findIndex(int, android.service.carrier.CarrierIdentifier); [all …]
|
D | module-lib-lint-baseline.txt | 1442 …elephonyManager#setAllowedCarriers(int, java.util.List<android.service.carrier.CarrierIdentifier>):
|
D | test-lint-baseline.txt | 1602 …elephonyManager#setAllowedCarriers(int, java.util.List<android.service.carrier.CarrierIdentifier>):
|
D | system-lint-baseline.txt | 1518 …elephonyManager#setAllowedCarriers(int, java.util.List<android.service.carrier.CarrierIdentifier>):
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 48398 Landroid/service/carrier/CarrierIdentifier$MatchType;->ALL:I 48399 Landroid/service/carrier/CarrierIdentifier$MatchType;->GID1:I 48400 Landroid/service/carrier/CarrierIdentifier$MatchType;->GID2:I 48401 Landroid/service/carrier/CarrierIdentifier$MatchType;->IMSI_PREFIX:I 48402 Landroid/service/carrier/CarrierIdentifier$MatchType;->SPN:I 48403 Landroid/service/carrier/CarrierIdentifier;-><init>(Landroid/os/Parcel;)V 48404 Landroid/service/carrier/CarrierIdentifier;->mGid1:Ljava/lang/String; 48405 Landroid/service/carrier/CarrierIdentifier;->mGid2:Ljava/lang/String; 48406 Landroid/service/carrier/CarrierIdentifier;->mImsi:Ljava/lang/String; 48407 Landroid/service/carrier/CarrierIdentifier;->mMcc:Ljava/lang/String; [all …]
|