/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
H A D | InCallControllerTests.java | 354 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 D | TransportClientManager.java | 144 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 D | TransportClient.java | 114 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 D | TestNetworkStackServiceClient.kt | 73 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 D | MbmsUtils.java | 119 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 D | PhoneAccountSuggestionHelper.java | 68 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 D | HostNfcFEmulationManager.java | 232 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 D | RemoteVvmTaskManager.java | 139 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 D | ServiceWatcherImpl.java | 204 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 D | RadioAppServiceWrapper.java | 190 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 D | HvacUiService.java | 216 Intent bindIntent = new Intent(this /* context */, HvacController.class); in layoutHvacUi() local 217 if (!bindService(bindIntent, mServiceConnection, Context.BIND_AUTO_CREATE)) { in layoutHvacUi()
|