Searched refs:bindIntent (Results 1 – 5 of 5) sorted by relevance
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | InCallControllerTests.java | 145 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_NoServicesFound_IncomingCall() local 146 assertEquals(InCallService.SERVICE_INTERFACE, bindIntent.getAction()); in testBindToService_NoServicesFound_IncomingCall() 147 assertEquals(SYS_PKG, bindIntent.getComponent().getPackageName()); in testBindToService_NoServicesFound_IncomingCall() 148 assertEquals(SYS_CLASS, bindIntent.getComponent().getClassName()); in testBindToService_NoServicesFound_IncomingCall() 149 assertNull(bindIntent.getExtras()); in testBindToService_NoServicesFound_IncomingCall() 178 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_NoServicesFound_OutgoingCall() local 179 assertEquals(InCallService.SERVICE_INTERFACE, bindIntent.getAction()); in testBindToService_NoServicesFound_OutgoingCall() 180 assertEquals(SYS_PKG, bindIntent.getComponent().getPackageName()); in testBindToService_NoServicesFound_OutgoingCall() 181 assertEquals(SYS_CLASS, bindIntent.getComponent().getClassName()); in testBindToService_NoServicesFound_OutgoingCall() 182 assertEquals(PA_HANDLE, bindIntent.getExtras().getParcelable( in testBindToService_NoServicesFound_OutgoingCall() [all …]
|
/packages/services/Telephony/src/com/android/phone/vvm/ |
D | RemoteVvmTaskManager.java | 117 Intent bindIntent = newBindIntent(context); in getRemotePackage() local 139 bindIntent.setPackage(packageName); in getRemotePackage() 141 .resolveService(bindIntent, PackageManager.MATCH_ALL); in getRemotePackage()
|
/packages/apps/Nfc/src/com/android/nfc/cardemulation/ |
D | HostNfcFEmulationManager.java | 228 Intent bindIntent = new Intent(HostNfcFService.SERVICE_INTERFACE); in bindServiceIfNeededLocked() local 229 bindIntent.setComponent(service); in bindServiceIfNeededLocked() 230 if (mContext.bindServiceAsUser(bindIntent, mConnection, in bindServiceIfNeededLocked()
|
/packages/apps/Car/Hvac/src/com/android/car/hvac/ |
D | HvacUiService.java | 135 Intent bindIntent = new Intent(this /* context */, HvacController.class); in onCreate() local 136 if (!bindService(bindIntent, mServiceConnection, Context.BIND_AUTO_CREATE)) { in onCreate()
|
/packages/apps/Car/Radio/src/com/android/car/radio/ |
D | RadioController.java | 201 Intent bindIntent = new Intent(mActivity, RadioService.class); in start() local 202 if (!mActivity.bindService(bindIntent, mServiceConnection, Context.BIND_AUTO_CREATE)) { in start()
|