/packages/apps/Contacts/src/com/android/contacts/ |
D | ContactSaveService.java | 372 Intent serviceIntent = new Intent( in createNewRawContactIntent() local 374 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT); in createNewRawContactIntent() 376 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name); in createNewRawContactIntent() 377 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type); in createNewRawContactIntent() 378 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet); in createNewRawContactIntent() 380 serviceIntent.putParcelableArrayListExtra( in createNewRawContactIntent() 388 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent); in createNewRawContactIntent() 389 return serviceIntent; in createNewRawContactIntent() 463 Intent serviceIntent = new Intent( in createSaveContactIntent() local 465 serviceIntent.setAction(ContactSaveService.ACTION_SAVE_CONTACT); in createSaveContactIntent() [all …]
|
/packages/services/Car/service/src/com/android/car/ |
D | CarProjectionService.java | 192 public void registerProjectionRunner(Intent serviceIntent) { in registerProjectionRunner() argument 196 if (serviceIntent.filterEquals(mRegisteredService) && mBound) { in registerProjectionRunner() 200 Log.w(CarLog.TAG_PROJECTION, "Registering new service[" + serviceIntent in registerProjectionRunner() 205 bindToService(serviceIntent); in registerProjectionRunner() 209 public void unregisterProjectionRunner(Intent serviceIntent) { in unregisterProjectionRunner() argument 212 if (!serviceIntent.filterEquals(mRegisteredService)) { in unregisterProjectionRunner() 214 + serviceIntent + "]. Registered service[" + mRegisteredService + "]"); in unregisterProjectionRunner() 222 private void bindToService(Intent serviceIntent) { in bindToService() argument 224 mRegisteredService = serviceIntent; in bindToService() 227 mContext.bindServiceAsUser(serviceIntent, mConnection, Context.BIND_AUTO_CREATE, in bindToService()
|
/packages/apps/Dialer/java/com/android/dialer/interactions/ |
D | ContactUpdateService.java | 36 Intent serviceIntent = new Intent(context, ContactUpdateService.class); in createSetSuperPrimaryIntent() local 37 serviceIntent.putExtra(EXTRA_PHONE_NUMBER_DATA_ID, dataId); in createSetSuperPrimaryIntent() 38 return serviceIntent; in createSetSuperPrimaryIntent()
|
D | PhoneNumberInteraction.java | 569 final Intent serviceIntent = in onClick() local 571 activity.startService(serviceIntent); in onClick()
|
/packages/apps/DeskClock/tests/src/com/android/deskclock/timer/ |
D | TimerServiceTest.java | 130 Intent serviceIntent = new Intent(ApplicationProvider.getApplicationContext(), in getTimerServiceIntent() local 133 final ComponentName component = serviceIntent.getComponent(); in getTimerServiceIntent() 137 return serviceIntent; in getTimerServiceIntent()
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | ComponentContextFixture.java | 143 Intent serviceIntent, in bindServiceAsUser() argument 148 return bindService(serviceIntent, connection, flags); in bindServiceAsUser() 153 Intent serviceIntent, in bindService() argument 159 IInterface service = mServiceByComponentName.get(serviceIntent.getComponent()); in bindService() 162 + serviceIntent.getComponent()); in bindService() 165 connection.onServiceConnected(serviceIntent.getComponent(), service.asBinder()); in bindService()
|
/packages/services/Car/car-test-lib/src/android/car/testapi/ |
D | FakeCarProjectionService.java | 78 public void registerProjectionRunner(Intent serviceIntent) throws RemoteException { in registerProjectionRunner() argument 79 mContext.bindService(serviceIntent, mServiceConnection, Context.BIND_AUTO_CREATE); in registerProjectionRunner() 83 public void unregisterProjectionRunner(Intent serviceIntent) throws RemoteException { in unregisterProjectionRunner() argument
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
D | GroupNameEditDialogFragment.java | 253 final Intent serviceIntent; in maybePersistCurrentGroupName() local 255 serviceIntent = ContactSaveService.createNewGroupIntent(getActivity(), mAccount, in maybePersistCurrentGroupName() 258 serviceIntent = ContactSaveService.createGroupRenameIntent(getActivity(), mGroupId, in maybePersistCurrentGroupName() 261 ContactSaveService.startService(getActivity(), serviceIntent); in maybePersistCurrentGroupName() local
|
/packages/apps/Dialer/java/com/android/dialer/app/calllog/ |
D | CallLogNotificationsService.java | 86 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class); in markAllNewVoicemailsAsOld() local 87 serviceIntent.setAction(CallLogNotificationsService.ACTION_MARK_ALL_NEW_VOICEMAILS_AS_OLD); in markAllNewVoicemailsAsOld() 88 context.startService(serviceIntent); in markAllNewVoicemailsAsOld()
|
/packages/apps/SecureElement/src/com/android/se/ |
D | SEApplication.java | 29 Intent serviceIntent = new Intent(getApplicationContext(), SecureElementService.class); in onCreate() local 30 startService(serviceIntent); in onCreate()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | ServiceBinder.java | 86 Intent serviceIntent = new Intent(mServiceAction).setComponent(mComponentName); in bind() local 94 isBound = mContext.bindServiceAsUser(serviceIntent, connection, bindingFlags, in bind() 97 isBound = mContext.bindService(serviceIntent, connection, bindingFlags); in bind()
|
D | InCallController.java | 1449 Intent serviceIntent = new Intent(InCallService.SERVICE_INTERFACE); in getInCallServiceComponents() local 1451 serviceIntent.setPackage(packageName); in getInCallServiceComponents() 1454 serviceIntent.setComponent(componentName); in getInCallServiceComponents() 1459 serviceIntent, in getInCallServiceComponents()
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
D | DirectoryContactUtil.java | 53 Intent serviceIntent = ContactSaveService.createNewRawContactIntent( in createCopy() local 56 context.startService(serviceIntent); in createCopy()
|
/packages/services/Car/car-lib/src/android/car/ |
D | ICarProjection.aidl | 38 void registerProjectionRunner(in Intent serviceIntent) = 0; field 44 void unregisterProjectionRunner(in Intent serviceIntent) = 1; field
|
D | CarProjectionManager.java | 464 public void registerProjectionRunner(@NonNull Intent serviceIntent) { in registerProjectionRunner() argument 468 mService.registerProjectionRunner(serviceIntent); in registerProjectionRunner() 481 public void unregisterProjectionRunner(@NonNull Intent serviceIntent) { in unregisterProjectionRunner() argument 485 mService.unregisterProjectionRunner(serviceIntent); in unregisterProjectionRunner()
|
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/ |
D | BasicKeyChainServiceTest.java | 326 Intent serviceIntent = new Intent(mContext, IKeyChainServiceTestSupport.class); in bindTestSupportService() local 327 serviceIntent.setComponent( in bindTestSupportService() 331 Log.d(TAG, String.format("Binding intent: %s", serviceIntent)); in bindTestSupportService() 333 mContext.bindService(serviceIntent, mSupportConnection, Context.BIND_AUTO_CREATE); in bindTestSupportService()
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
D | CellBroadcastReceiver.java | 452 Intent serviceIntent = new Intent(CellBroadcastConfigService.ACTION_ENABLE_CHANNELS, in startConfigService() local 455 context.startService(serviceIntent); in startConfigService()
|