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 …]
DAppCompatContactsActivity.java91 public void onServiceCompleted(Intent callbackIntent) { in onServiceCompleted() argument
92 onNewIntent(callbackIntent); in onServiceCompleted()
DContactsActivity.java90 public void onServiceCompleted(Intent callbackIntent) { in onServiceCompleted() argument
91 onNewIntent(callbackIntent); in onServiceCompleted()
/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSProfileSelectorTest.java223 Intent callbackIntent = new Intent(MyONSProfileSelector.ACTION_SUB_SWITCH); in testStartProfileSelectionSuccess() local
224 callbackIntent.putExtra("sequenceId", 1); in testStartProfileSelectionSuccess()
225 callbackIntent.putExtra("subId", 5); in testStartProfileSelectionSuccess()
289 Intent callbackIntent = new Intent(MyONSProfileSelector.ACTION_SUB_SWITCH); in testStartProfileSelectionWithActivePrimarySimOnESim() local
290 callbackIntent.putExtra("sequenceId", 1); in testStartProfileSelectionWithActivePrimarySimOnESim()
291 callbackIntent.putExtra("subId", 5); in testStartProfileSelectionWithActivePrimarySimOnESim()
/packages/services/Telephony/src/com/android/phone/euicc/
DEuiccResolutionUiDispatcherActivity.java62 PendingIntent callbackIntent = in onDispatchFailure() local
65 if (callbackIntent != null) { in onDispatchFailure()
67 callbackIntent.send(EuiccManager.EMBEDDED_SUBSCRIPTION_RESULT_ERROR); in onDispatchFailure()
/packages/services/AlternativeNetworkAccess/src/com/android/ons/
DONSProfileSelector.java309 Intent callbackIntent = new Intent(ACTION_SUB_SWITCH); in switchToSubscription() local
310 callbackIntent.setClass(mContext, OpportunisticNetworkService.class); in switchToSubscription()
312 callbackIntent.putExtra("sequenceId", mSequenceId); in switchToSubscription()
313 callbackIntent.putExtra("subId", subId); in switchToSubscription()
316 1, callbackIntent, in switchToSubscription()