Home
last modified time | relevance | path

Searched refs:DownloadableSubscription (Results 1 – 19 of 19) sorted by relevance

/frameworks/base/telephony/java/android/telephony/euicc/
DDownloadableSubscription.java40 public final class DownloadableSubscription implements Parcelable { class
42 public static final @android.annotation.NonNull Creator<DownloadableSubscription> CREATOR =
43 new Creator<DownloadableSubscription>() {
45 public DownloadableSubscription createFromParcel(Parcel in) {
46 return new DownloadableSubscription(in);
50 public DownloadableSubscription[] newArray(int size) {
51 return new DownloadableSubscription[size];
84 private DownloadableSubscription(String encodedActivationCode) { in DownloadableSubscription() method in DownloadableSubscription
88 private DownloadableSubscription(Parcel in) { in DownloadableSubscription() method in DownloadableSubscription
96 private DownloadableSubscription(String encodedActivationCode, String confirmationCode, in DownloadableSubscription() method in DownloadableSubscription
[all …]
DDownloadableSubscription.aidl19 parcelable DownloadableSubscription;
DEuiccManager.java916 public void downloadSubscription(DownloadableSubscription subscription, in downloadSubscription()
1016 DownloadableSubscription subscription, PendingIntent callbackIntent) { in getDownloadableSubscriptionMetadata()
/frameworks/base/telephony/java/android/service/euicc/
DGetDownloadableSubscriptionMetadataResult.java23 import android.telephony.euicc.DownloadableSubscription;
54 private final DownloadableSubscription mSubscription;
72 public DownloadableSubscription getDownloadableSubscription() { in getDownloadableSubscription()
86 @Nullable DownloadableSubscription subscription) { in GetDownloadableSubscriptionMetadataResult()
101 this.mSubscription = in.readTypedObject(DownloadableSubscription.CREATOR); in GetDownloadableSubscriptionMetadataResult()
DGetDefaultDownloadableSubscriptionListResult.java23 import android.telephony.euicc.DownloadableSubscription;
57 private final DownloadableSubscription[] mSubscriptions;
75 public List<DownloadableSubscription> getDownloadableSubscriptions() { in getDownloadableSubscriptions()
90 @Nullable DownloadableSubscription[] subscriptions) { in GetDefaultDownloadableSubscriptionListResult()
105 this.mSubscriptions = in.createTypedArray(DownloadableSubscription.CREATOR); in GetDefaultDownloadableSubscriptionListResult()
DIEuiccService.aidl33 import android.telephony.euicc.DownloadableSubscription;
38 void downloadSubscription(int slotId, in DownloadableSubscription subscription, in downloadSubscription()
41 void getDownloadableSubscriptionMetadata(int slotId, in DownloadableSubscription subscription, in getDownloadableSubscriptionMetadata()
DEuiccService.java32 import android.telephony.euicc.DownloadableSubscription;
469 int slotId, DownloadableSubscription subscription, boolean forceDeactivateSim); in onGetDownloadableSubscriptionMetadata()
507 @NonNull DownloadableSubscription subscription, boolean switchAfterDownload, in onDownloadSubscription()
531 @NonNull DownloadableSubscription subscription, boolean switchAfterDownload, in onDownloadSubscription()
659 public void downloadSubscription(int slotId, DownloadableSubscription subscription, in downloadSubscription()
741 DownloadableSubscription subscription, in getDownloadableSubscriptionMetadata()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccOperation.java26 import android.telephony.euicc.DownloadableSubscription;
103 private final DownloadableSubscription mDownloadableSubscription;
116 DownloadableSubscription subscription, String callingPackage) { in forGetMetadataDeactivateSim()
128 DownloadableSubscription subscription, boolean switchAfterDownload, in forDownloadDeactivateSim()
139 DownloadableSubscription subscription, boolean switchAfterDownload, in forDownloadNoPrivileges()
150 DownloadableSubscription subscription, boolean switchAfterDownload, in forDownloadNoPrivilegesOrDeactivateSimCheckMetadata()
167 DownloadableSubscription subscription, boolean switchAfterDownload, in forDownloadConfirmationCode()
178 DownloadableSubscription subscription, boolean switchAfterDownload, in forDownloadResolvableErrors()
207 @Nullable DownloadableSubscription downloadableSubscription, in EuiccOperation()
223 @Nullable DownloadableSubscription downloadableSubscription, in EuiccOperation()
[all …]
DEuiccController.java44 import android.telephony.euicc.DownloadableSubscription;
259 DownloadableSubscription subscription, String callingPackage, in getDownloadableSubscriptionMetadata()
360 void getDownloadableSubscriptionMetadata(int cardId, DownloadableSubscription subscription, in getDownloadableSubscriptionMetadata()
379 protected final DownloadableSubscription mSubscription;
385 DownloadableSubscription subscription, in GetMetadataCommandCallback()
437 public void downloadSubscription(int cardId, DownloadableSubscription subscription, in downloadSubscription()
523 void downloadSubscription(int cardId, DownloadableSubscription subscription, in downloadSubscription()
578 DownloadableSubscription subscription, boolean switchAfterDownload, in DownloadSubscriptionGetMetadataCommandCallback()
590 DownloadableSubscription subscription = result.getDownloadableSubscription(); in onGetMetadataComplete()
650 DownloadableSubscription subscription, boolean switchAfterDownload, in downloadSubscriptionPrivilegedCheckMetadata()
[all …]
DEuiccConnector.java64 import android.telephony.euicc.DownloadableSubscription;
221 DownloadableSubscription mSubscription;
234 DownloadableSubscription mSubscription;
439 DownloadableSubscription subscription, in getDownloadableSubscriptionMetadata()
451 public void downloadSubscription(int cardId, DownloadableSubscription subscription, in downloadSubscription()
/frameworks/base/telephony/java/com/android/internal/telephony/euicc/
DIEuiccController.aidl22 import android.telephony.euicc.DownloadableSubscription;
31 in DownloadableSubscription subscription, in getDownloadableSubscriptionMetadata()
37 oneway void downloadSubscription(int cardId, in DownloadableSubscription subscription, in downloadSubscription()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/euicc/
DEuiccControllerTest.java59 import android.telephony.euicc.DownloadableSubscription;
87 private static final DownloadableSubscription SUBSCRIPTION =
88 DownloadableSubscription.forActivationCode("abcde");
106 private static final DownloadableSubscription SUBSCRIPTION_WITH_METADATA =
107 DownloadableSubscription.forActivationCode("abcde");
341 DownloadableSubscription receivedSubscription = intent.getParcelableExtra( in testGetDownloadableSubscriptionMetadata_success()
387 new DownloadableSubscription[] { SUBSCRIPTION_WITH_METADATA }); in testGetDefaultDownloadableSubscriptionList_success()
396 ((DownloadableSubscription) receivedSubscriptions[0]).getCarrierName()); in testGetDefaultDownloadableSubscriptionList_success()
1290 private void callGetDownloadableSubscriptionMetadata(DownloadableSubscription subscription, in callGetDownloadableSubscriptionMetadata()
1318 private void callDownloadSubscription(DownloadableSubscription subscription, in callDownloadSubscription()
/frameworks/base/telephony/api/
Dsystem-current.txt1157 public final class DownloadableSubscription implements android.os.Parcelable {
1162 public static final class DownloadableSubscription.Builder {
1163 ctor public DownloadableSubscription.Builder();
1164 ctor public DownloadableSubscription.Builder(android.telephony.euicc.DownloadableSubscription);
1165 method public android.telephony.euicc.DownloadableSubscription build();
1166 …method public android.telephony.euicc.DownloadableSubscription.Builder setAccessRules(java.util.Li…
1167 method public android.telephony.euicc.DownloadableSubscription.Builder setCarrierName(String);
1168 …method public android.telephony.euicc.DownloadableSubscription.Builder setConfirmationCode(String);
1169 …method public android.telephony.euicc.DownloadableSubscription.Builder setEncodedActivationCode(St…
1223 …oid getDownloadableSubscriptionMetadata(android.telephony.euicc.DownloadableSubscription, android.…
/frameworks/base/api/
Dsystem-current.txt7288 …lt onDownloadSubscription(int, @NonNull android.telephony.euicc.DownloadableSubscription, boolean,…
7289 …nt onDownloadSubscription(int, @NonNull android.telephony.euicc.DownloadableSubscription, boolean,…
7293 …etDownloadableSubscriptionMetadata(int, android.telephony.euicc.DownloadableSubscription, boolean);
7338 …nloadableSubscriptionListResult(int, @Nullable android.telephony.euicc.DownloadableSubscription[]);
7340 …method @Nullable public java.util.List<android.telephony.euicc.DownloadableSubscription> getDownlo…
7347 …oadableSubscriptionMetadataResult(int, @Nullable android.telephony.euicc.DownloadableSubscription);
7349 …method @Nullable public android.telephony.euicc.DownloadableSubscription getDownloadableSubscripti…
9385 public final class DownloadableSubscription implements android.os.Parcelable {
9390 public static final class DownloadableSubscription.Builder {
9391 ctor public DownloadableSubscription.Builder();
[all …]
Dlint-baseline.txt1127 …euicc.EuiccManager#downloadSubscription(android.telephony.euicc.DownloadableSubscription, boolean,…
Dcurrent.txt46462 public final class DownloadableSubscription implements android.os.Parcelable {
46464 method public static android.telephony.euicc.DownloadableSubscription forActivationCode(String);
46468 …atic final android.os.Parcelable.Creator<android.telephony.euicc.DownloadableSubscription> CREATOR;
46482 …IONS") public void downloadSubscription(android.telephony.euicc.DownloadableSubscription, boolean,…
/frameworks/base/non-updatable-api/
Dsystem-current.txt7186 …lt onDownloadSubscription(int, @NonNull android.telephony.euicc.DownloadableSubscription, boolean,…
7187 …nt onDownloadSubscription(int, @NonNull android.telephony.euicc.DownloadableSubscription, boolean,…
7191 …etDownloadableSubscriptionMetadata(int, android.telephony.euicc.DownloadableSubscription, boolean);
7236 …nloadableSubscriptionListResult(int, @Nullable android.telephony.euicc.DownloadableSubscription[]);
7238 …method @Nullable public java.util.List<android.telephony.euicc.DownloadableSubscription> getDownlo…
7245 …oadableSubscriptionMetadataResult(int, @Nullable android.telephony.euicc.DownloadableSubscription);
7247 …method @Nullable public android.telephony.euicc.DownloadableSubscription getDownloadableSubscripti…
9283 public final class DownloadableSubscription implements android.os.Parcelable {
9288 public static final class DownloadableSubscription.Builder {
9289 ctor public DownloadableSubscription.Builder();
[all …]
Dcurrent.txt46318 public final class DownloadableSubscription implements android.os.Parcelable {
46320 method public static android.telephony.euicc.DownloadableSubscription forActivationCode(String);
46324 …atic final android.os.Parcelable.Creator<android.telephony.euicc.DownloadableSubscription> CREATOR;
46338 …IONS") public void downloadSubscription(android.telephony.euicc.DownloadableSubscription, boolean,…
/frameworks/base/config/
Dhiddenapi-greylist-max-o.txt63188 …ServiceWrapper;->downloadSubscription(ILandroid/telephony/euicc/DownloadableSubscription;ZZLandroi…
63191 …->getDownloadableSubscriptionMetadata(ILandroid/telephony/euicc/DownloadableSubscription;ZLandroid…
63204 …loadableSubscriptionListResult;->mSubscriptions:[Landroid/telephony/euicc/DownloadableSubscription;
63206 …adableSubscriptionMetadataResult;->mSubscription:Landroid/telephony/euicc/DownloadableSubscription;
63237 …ice$Stub$Proxy;->downloadSubscription(ILandroid/telephony/euicc/DownloadableSubscription;ZZLandroi…
63240 …->getDownloadableSubscriptionMetadata(ILandroid/telephony/euicc/DownloadableSubscription;ZLandroid…
63267 …/IEuiccService;->downloadSubscription(ILandroid/telephony/euicc/DownloadableSubscription;ZZLandroi…
63270 …->getDownloadableSubscriptionMetadata(ILandroid/telephony/euicc/DownloadableSubscription;ZLandroid…
67616 Landroid/telephony/euicc/DownloadableSubscription$Builder;->accessRules:Ljava/util/List;
67617 Landroid/telephony/euicc/DownloadableSubscription$Builder;->carrierName:Ljava/lang/String;
[all …]