Home
last modified time | relevance | path

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

/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DInCallControllerTests.java354 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_NoServicesFound_IncomingCall() local
358 assertNull(bindIntent.getExtras()); in testBindToService_NoServicesFound_IncomingCall()
389 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_NoServicesFound_OutgoingCall() local
393 assertEquals(PA_HANDLE, bindIntent.getExtras().getParcelable( in testBindToService_NoServicesFound_OutgoingCall()
442 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_DefaultDialer_NoEmergency() local
502 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_SystemDialer_Emergency() local
581 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_SystemDialer_Crash() local
666 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_DefaultDialer_FallBackToSystem() local
699 bindIntent = bindIntentCaptor2.getValue(); in testBindToService_DefaultDialer_FallBackToSystem()
791 Intent bindIntent = bindIntentCaptor.getValue(); in testBindToService_IncludeExternal() local
[all …]
/aosp12/frameworks/base/services/backup/backuplib/java/com/android/server/backup/transport/
H A DTransportClientManager.java144 Intent bindIntent = mIntentFunction.apply(transportComponent); in getTransportClient() local
146 bindIntent.putExtras(extras); in getTransportClient()
148 return getTransportClient(transportComponent, caller, bindIntent); in getTransportClient()
152 ComponentName transportComponent, String caller, Intent bindIntent) { in getTransportClient() argument
159 bindIntent, in getTransportClient()
H A DTransportClient.java114 Intent bindIntent, in TransportClient() argument
122 bindIntent, in TransportClient()
134 Intent bindIntent, in TransportClient() argument
143 mBindIntent = bindIntent; in TransportClient()
/aosp12/packages/modules/NetworkStack/tests/integration/src/android/net/networkstack/
H A DTestNetworkStackServiceClient.kt73 val bindIntent = Intent(INetworkStackConnector::class.java.name + ".Test") regex
74 bindIntent.component = getNetworkStackComponent()
75 context.bindService(bindIntent, serviceConnection, Context.BIND_AUTO_CREATE)
/aosp12/frameworks/base/telephony/java/android/telephony/mbms/
H A DMbmsUtils.java119 Intent bindIntent = new Intent(); in startBinding() local
127 bindIntent.setComponent(MbmsUtils.toComponentName(mbmsServiceInfo)); in startBinding()
129 context.bindService(bindIntent, serviceConnection, Context.BIND_AUTO_CREATE); in startBinding()
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A 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()
/aosp12/packages/apps/Nfc/src/com/android/nfc/cardemulation/
H A DHostNfcFEmulationManager.java232 Intent bindIntent = new Intent(HostNfcFService.SERVICE_INTERFACE); in bindServiceIfNeededLocked() local
233 bindIntent.setComponent(service); in bindServiceIfNeededLocked()
235 mServiceBound = mContext.bindServiceAsUser(bindIntent, mConnection, in bindServiceIfNeededLocked()
/aosp12/packages/services/Telephony/src/com/android/phone/vvm/
H A 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()
/aosp12/frameworks/base/services/core/java/com/android/server/servicewatcher/
H A DServiceWatcherImpl.java204 Intent bindIntent = new Intent(mBoundServiceInfo.getAction()).setComponent( in bind() local
206 if (!mContext.bindServiceAsUser(bindIntent, this, in bind()
/aosp12/packages/apps/Car/Radio/src/com/android/car/radio/service/
H A 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()
/aosp12/packages/apps/Car/Hvac/src/com/android/car/hvac/
H A DHvacUiService.java216 Intent bindIntent = new Intent(this /* context */, HvacController.class); in layoutHvacUi() local
217 if (!bindService(bindIntent, mServiceConnection, Context.BIND_AUTO_CREATE)) { in layoutHvacUi()