Home
last modified time | relevance | path

Searched refs:callbackIntent (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/
DContactSaveService.java195 public void onServiceCompleted(Intent callbackIntent); in onServiceCompleted() argument
386 Intent callbackIntent = new Intent(context, callbackActivity); in createNewRawContactIntent() local
387 callbackIntent.setAction(callbackAction); in createNewRawContactIntent()
388 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent); in createNewRawContactIntent()
397 Intent callbackIntent = intent.getParcelableExtra(EXTRA_CALLBACK_INTENT); in createRawContact() local
425 callbackIntent.setData(RawContacts.getContactLookupUri(resolver, rawContactUri)); in createRawContact()
427 deliverCallback(callbackIntent); in createRawContact()
478 Intent callbackIntent = new Intent(context, callbackActivity); in createSaveContactIntent() local
479 callbackIntent.putExtra(saveModeExtraKey, saveMode); in createSaveContactIntent()
481 callbackIntent.putExtra(joinContactIdExtraKey, joinContactId); in createSaveContactIntent()
[all …]
DContactsActivity.java90 public void onServiceCompleted(Intent callbackIntent) { in onServiceCompleted() argument
91 onNewIntent(callbackIntent); in onServiceCompleted()
DAppCompatContactsActivity.java91 public void onServiceCompleted(Intent callbackIntent) { in onServiceCompleted() argument
92 onNewIntent(callbackIntent); in onServiceCompleted()
/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSProfileSelectorTest.java268 Intent callbackIntent = new Intent(MyONSProfileSelector.ACTION_SUB_SWITCH); in testStartProfileSelectionSuccess() local
269 callbackIntent.putExtra("sequenceId", 1); in testStartProfileSelectionSuccess()
270 callbackIntent.putExtra("subId", subId); in testStartProfileSelectionSuccess()
414 Intent callbackIntent = new Intent(MyONSProfileSelector.ACTION_SUB_SWITCH); in testStartProfileSelectionWithActivePrimarySimOnESim() local
415 callbackIntent.putExtra("sequenceId", 1); in testStartProfileSelectionWithActivePrimarySimOnESim()
416 callbackIntent.putExtra("subId", 5); in testStartProfileSelectionWithActivePrimarySimOnESim()
626 Intent callbackIntent = new Intent(MyONSProfileSelector.ACTION_SUB_SWITCH); in testStartProfileSelectionSuccessWithSameArgumentsAgain() local
627 callbackIntent.putExtra("sequenceId", 1); in testStartProfileSelectionSuccessWithSameArgumentsAgain()
628 callbackIntent.putExtra("subId", 5); in testStartProfileSelectionSuccessWithSameArgumentsAgain()
/packages/services/Telephony/src/com/android/phone/euicc/
DEuiccResolutionUiDispatcherActivity.java71 PendingIntent callbackIntent = in onDispatchFailure() local
74 if (callbackIntent != null) { in onDispatchFailure()
76 callbackIntent.send(EuiccManager.EMBEDDED_SUBSCRIPTION_RESULT_ERROR); in onDispatchFailure()
/packages/services/AlternativeNetworkAccess/src/com/android/ons/
DONSProfileSelector.java349 Intent callbackIntent = new Intent(ACTION_SUB_SWITCH); in switchToSubscription() local
350 callbackIntent.setClass(mContext, OpportunisticNetworkService.class); in switchToSubscription()
352 callbackIntent.putExtra("sequenceId", mSequenceId); in switchToSubscription()
353 callbackIntent.putExtra("subId", subId); in switchToSubscription()
356 1, callbackIntent, PendingIntent.FLAG_ONE_SHOT); in switchToSubscription()