Home
last modified time | relevance | path

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

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DInCallControllerTests.java235 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_NoServicesFound_IncomingCall() local
236 assertEquals(InCallService.SERVICE_INTERFACE, bindIntent.getAction()); in testBindToService_NoServicesFound_IncomingCall()
237 assertEquals(SYS_PKG, bindIntent.getComponent().getPackageName()); in testBindToService_NoServicesFound_IncomingCall()
238 assertEquals(SYS_CLASS, bindIntent.getComponent().getClassName()); in testBindToService_NoServicesFound_IncomingCall()
239 assertNull(bindIntent.getExtras()); in testBindToService_NoServicesFound_IncomingCall()
270 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_NoServicesFound_OutgoingCall() local
271 assertEquals(InCallService.SERVICE_INTERFACE, bindIntent.getAction()); in testBindToService_NoServicesFound_OutgoingCall()
272 assertEquals(SYS_PKG, bindIntent.getComponent().getPackageName()); in testBindToService_NoServicesFound_OutgoingCall()
273 assertEquals(SYS_CLASS, bindIntent.getComponent().getClassName()); in testBindToService_NoServicesFound_OutgoingCall()
274 assertEquals(PA_HANDLE, bindIntent.getExtras().getParcelable( in testBindToService_NoServicesFound_OutgoingCall()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DPhoneAccountSuggestionHelper.java68 Intent bindIntent = new Intent(); in bindAndGetSuggestions() local
69 bindIntent.setComponent(new ComponentName(suggestionServiceInfo.packageName, in bindAndGetSuggestions()
127 if (!context.bindService(bindIntent, serviceConnection, Context.BIND_AUTO_CREATE)) { in bindAndGetSuggestions()
/packages/services/Telephony/src/com/android/phone/vvm/
DRemoteVvmTaskManager.java139 Intent bindIntent = newBindIntent(context); in getRemotePackage() local
165 bindIntent.setPackage(packageName); in getRemotePackage()
166 ResolveInfo info = context.getPackageManager().resolveService(bindIntent, 0); in getRemotePackage()
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DHostNfcFEmulationManager.java233 Intent bindIntent = new Intent(HostNfcFService.SERVICE_INTERFACE); in bindServiceIfNeededLocked() local
234 bindIntent.setComponent(service); in bindServiceIfNeededLocked()
235 if (mContext.bindServiceAsUser(bindIntent, mConnection, in bindServiceIfNeededLocked()
/packages/apps/Car/Radio/src/com/android/car/radio/service/
DRadioAppServiceWrapper.java190 Intent bindIntent = new Intent(RadioAppService.ACTION_APP_SERVICE, null, in bind() local
192 if (!context.bindService(bindIntent, mServiceConnection, Context.BIND_AUTO_CREATE)) { in bind()
/packages/apps/Car/Hvac/src/com/android/car/hvac/
DHvacUiService.java215 Intent bindIntent = new Intent(this /* context */, HvacController.class); in layoutHvacUi() local
216 if (!bindService(bindIntent, mServiceConnection, Context.BIND_AUTO_CREATE)) { in layoutHvacUi()