Home | History | Annotate | Download | only in euicc

Lines Matching refs:callbackIntent

327      * @param callbackIntent a PendingIntent to launch when the operation completes.
331 boolean switchAfterDownload, PendingIntent callbackIntent) {
333 sendUnavailableError(callbackIntent);
338 mContext.getOpPackageName(), callbackIntent);
359 * @param callbackIntent a PendingIntent to launch when the operation completes. This is
364 PendingIntent callbackIntent) throws IntentSender.SendIntentException {
372 callbackIntent);
395 PendingIntent callbackIntent =
398 if (callbackIntent != null) {
399 sendUnavailableError(callbackIntent);
424 * @param callbackIntent a PendingIntent to launch when the operation completes.
430 DownloadableSubscription subscription, PendingIntent callbackIntent) {
432 sendUnavailableError(callbackIntent);
437 subscription, mContext.getOpPackageName(), callbackIntent);
455 * @param callbackIntent a PendingIntent to launch when the operation completes.
460 public void getDefaultDownloadableSubscriptionList(PendingIntent callbackIntent) {
462 sendUnavailableError(callbackIntent);
467 mContext.getOpPackageName(), callbackIntent);
502 * @param callbackIntent a PendingIntent to launch when the operation completes.
505 public void deleteSubscription(int subscriptionId, PendingIntent callbackIntent) {
507 sendUnavailableError(callbackIntent);
512 subscriptionId, mContext.getOpPackageName(), callbackIntent);
530 * @param callbackIntent a PendingIntent to launch when the operation completes.
533 public void switchToSubscription(int subscriptionId, PendingIntent callbackIntent) {
535 sendUnavailableError(callbackIntent);
540 subscriptionId, mContext.getOpPackageName(), callbackIntent);
555 * @param callbackIntent a PendingIntent to launch when the operation completes.
560 int subscriptionId, String nickname, PendingIntent callbackIntent) {
562 sendUnavailableError(callbackIntent);
567 subscriptionId, nickname, callbackIntent);
579 * @param callbackIntent a PendingIntent to launch when the operation completes.
584 public void eraseSubscriptions(PendingIntent callbackIntent) {
586 sendUnavailableError(callbackIntent);
590 getIEuiccController().eraseSubscriptions(callbackIntent);
611 * @param callbackIntent a PendingIntent to launch when the operation completes.
614 public void retainSubscriptionsForFactoryReset(PendingIntent callbackIntent) {
616 sendUnavailableError(callbackIntent);
620 getIEuiccController().retainSubscriptionsForFactoryReset(callbackIntent);
626 private static void sendUnavailableError(PendingIntent callbackIntent) {
628 callbackIntent.send(EMBEDDED_SUBSCRIPTION_RESULT_ERROR);