/frameworks/base/telephony/java/android/service/euicc/ |
D | EuiccService.java | 93 public abstract class EuiccService extends Service { class 312 public EuiccService() { in EuiccService() method in EuiccService 668 EuiccService.this.onDownloadSubscription( in downloadSubscription() 675 int resultCode = EuiccService.this.onDownloadSubscription( in downloadSubscription() 694 String eid = EuiccService.this.onGetEid(slotId); in getEid() 710 EuiccService.this.onStartOtaIfNecessary(slotId, new OtaStatusChangedCallback() { in startOtaIfNecessary() 729 int status = EuiccService.this.onGetOtaStatus(slotId); in getOtaStatus() 748 EuiccService.this.onGetDownloadableSubscriptionMetadata( in getDownloadableSubscriptionMetadata() 766 EuiccService.this.onGetDefaultDownloadableSubscriptionList( in getDefaultDownloadableSubscriptionList() 783 EuiccService.this.onGetEuiccProfileInfoList(slotId); in getEuiccProfileInfoList() [all …]
|
D | DownloadSubscriptionResult.java | 21 import android.service.euicc.EuiccService.ResolvableError; 22 import android.service.euicc.EuiccService.Result;
|
D | GetDownloadableSubscriptionMetadataResult.java | 88 if (this.result == EuiccService.RESULT_OK) { in GetDownloadableSubscriptionMetadataResult()
|
D | GetDefaultDownloadableSubscriptionListResult.java | 92 if (this.result == EuiccService.RESULT_OK) { in GetDefaultDownloadableSubscriptionListResult()
|
D | GetEuiccProfileInfoListResult.java | 97 if (this.result == EuiccService.RESULT_OK) { in GetEuiccProfileInfoListResult()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/ |
D | EuiccOperation.java | 25 import android.service.euicc.EuiccService; 274 resolutionExtras.getBoolean(EuiccService.EXTRA_RESOLUTION_CONSENT), in continueOperation() 279 resolutionExtras.getBoolean(EuiccService.EXTRA_RESOLUTION_CONSENT), in continueOperation() 284 resolutionExtras.getBoolean(EuiccService.EXTRA_RESOLUTION_CONSENT), in continueOperation() 289 resolutionExtras.getBoolean(EuiccService.EXTRA_RESOLUTION_CONSENT), in continueOperation() 294 resolutionExtras.getString(EuiccService.EXTRA_RESOLUTION_CONFIRMATION_CODE), in continueOperation() 302 resolutionExtras.getBoolean(EuiccService.EXTRA_RESOLUTION_CONSENT), in continueOperation() 307 resolutionExtras.getBoolean(EuiccService.EXTRA_RESOLUTION_CONSENT), in continueOperation() 312 resolutionExtras.getBoolean(EuiccService.EXTRA_RESOLUTION_CONSENT), in continueOperation() 439 if ((mResolvableErrors & EuiccService.RESOLVABLE_ERROR_POLICY_RULES) != 0) { in resolvedDownloadResolvableErrors() [all …]
|
D | EuiccController.java | 35 import android.service.euicc.EuiccService; 400 case EuiccService.RESULT_OK: in onGetMetadataComplete() 406 case EuiccService.RESULT_MUST_DEACTIVATE_SIM: in onGetMetadataComplete() 409 EuiccService.ACTION_RESOLVE_DEACTIVATE_SIM, in onGetMetadataComplete() 559 addResolutionIntent(extrasIntent, EuiccService.ACTION_RESOLVE_NO_PRIVILEGES, in downloadSubscription() 593 if (result.getResult() != EuiccService.RESULT_OK) { in onGetMetadataComplete() 611 if (result.getResult() == EuiccService.RESULT_MUST_DEACTIVATE_SIM) { in onGetMetadataComplete() 615 addResolutionIntent(extrasIntent, EuiccService.ACTION_RESOLVE_DEACTIVATE_SIM, in onGetMetadataComplete() 627 if (result.getResult() != EuiccService.RESULT_OK) { in onGetMetadataComplete() 676 case EuiccService.RESULT_OK: in downloadSubscriptionPrivileged() [all …]
|
D | EuiccConnector.java | 41 import android.service.euicc.EuiccService; 181 Intent intent = new Intent(EuiccService.EUICC_SERVICE_INTERFACE); in findBestComponent() 1076 Intent intent = new Intent(EuiccService.EUICC_SERVICE_INTERFACE); in createBinding()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/euicc/ |
D | EuiccControllerTest.java | 51 import android.service.euicc.EuiccService; 324 EuiccService.RESULT_MUST_DEACTIVATE_SIM, null /* subscription */); in testGetDownloadableSubscriptionMetadata_mustDeactivateSim() 328 verifyResolutionIntent(EuiccService.ACTION_RESOLVE_DEACTIVATE_SIM, in testGetDownloadableSubscriptionMetadata_mustDeactivateSim() 337 EuiccService.RESULT_OK, SUBSCRIPTION_WITH_METADATA); in testGetDownloadableSubscriptionMetadata_success() 373 EuiccService.RESULT_MUST_DEACTIVATE_SIM, null /* subscriptions */); in testGetDefaultDownloadableSubscriptionList_mustDeactivateSim() 377 verifyResolutionIntent(EuiccService.ACTION_RESOLVE_DEACTIVATE_SIM, in testGetDefaultDownloadableSubscriptionList_mustDeactivateSim() 386 EuiccService.RESULT_OK, in testGetDefaultDownloadableSubscriptionList_success() 424 EuiccService.RESULT_MUST_DEACTIVATE_SIM, 0 /* resolvableError */, in testDownloadSubscription_mustDeactivateSim() 428 verifyResolutionIntent(EuiccService.ACTION_RESOLVE_DEACTIVATE_SIM, in testDownloadSubscription_mustDeactivateSim() 436 EuiccService.RESULT_RESOLVABLE_ERRORS, 0b01 /* resolvableError */, in testDownloadSubscription_needConfirmationCode() [all …]
|
D | EuiccConnectorTest.java | 40 import android.service.euicc.EuiccService; 372 EuiccService.EUICC_SERVICE_INTERFACE, in prepareEuiccApp()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | SubscriptionInfoUpdaterTest.java | 46 import android.service.euicc.EuiccService; 596 EuiccService.RESULT_OK, euiccProfiles, false /* removable */)); in testUpdateEmbeddedSubscriptions_listSuccess()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | SubscriptionInfoUpdater.java | 46 import android.service.euicc.EuiccService; 886 if (result.getResult() == EuiccService.RESULT_OK && list != null) { in updateEmbeddedSubscriptionsCache()
|
/frameworks/base/api/ |
D | system-current.txt | 7282 public abstract class EuiccService extends android.app.Service { 7283 ctor public EuiccService(); 7299 …method public abstract void onStartOtaIfNecessary(int, android.service.euicc.EuiccService.OtaStatu… 7315 field public static final String EUICC_SERVICE_INTERFACE = "android.service.euicc.EuiccService"; 7332 public abstract static class EuiccService.OtaStatusChangedCallback { 7333 ctor public EuiccService.OtaStatusChangedCallback();
|
/frameworks/base/non-updatable-api/ |
D | system-current.txt | 7180 public abstract class EuiccService extends android.app.Service { 7181 ctor public EuiccService(); 7197 …method public abstract void onStartOtaIfNecessary(int, android.service.euicc.EuiccService.OtaStatu… 7213 field public static final String EUICC_SERVICE_INTERFACE = "android.service.euicc.EuiccService"; 7230 public abstract static class EuiccService.OtaStatusChangedCallback { 7231 ctor public EuiccService.OtaStatusChangedCallback();
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 63187 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->deleteSubscription(ILjava/lang/String;La… 63188 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->downloadSubscription(ILandroid/telephony… 63189 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->eraseSubscriptions(ILandroid/service/eui… 63190 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->getDefaultDownloadableSubscriptionList(I… 63191 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->getDownloadableSubscriptionMetadata(ILan… 63192 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->getEid(ILandroid/service/euicc/IGetEidCa… 63193 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->getEuiccInfo(ILandroid/service/euicc/IGe… 63194 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->getEuiccProfileInfoList(ILandroid/servic… 63195 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->getOtaStatus(ILandroid/service/euicc/IGe… 63196 Landroid/service/euicc/EuiccService$IEuiccServiceWrapper;->retainSubscriptionsForFactoryReset(ILand… [all …]
|