Home
last modified time | relevance | path

Searched refs:onServiceConnected (Results 1 – 25 of 153) sorted by relevance

1234567

/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/common/
DStartDpcInsideSuwServiceConnectionTest.java121 mStartDpcInsideSuwServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_serviceConnects()
166 restoredServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_instanceStateSavedAndRestoredBeforeServiceConnected()
192 mStartDpcInsideSuwServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_instanceStateSavedAndRestoredAfterServiceConnected()
217 restoredServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_instanceStateSavedAndRestoredAfterServiceConnected()
244 mStartDpcInsideSuwServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_instanceStateSavedAndRestoredAfterDpcFinished()
297 mStartDpcInsideSuwServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_serviceConnectsAndDisconnects()
324 mStartDpcInsideSuwServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_serviceConnectsAndDisconnects_instanceStateSavedAndRestored()
350 restoredServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_serviceConnectsAndDisconnects_instanceStateSavedAndRestored()
378 mStartDpcInsideSuwServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_serviceConnectsTwice()
380 mStartDpcInsideSuwServiceConnection.onServiceConnected(TEST_SUW_COMPONENT_NAME, null); in testBindingSucceeds_serviceConnectsTwice()
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarLocationServiceTest.java221 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testLoadsLocationWithHeadlessSystemUser()
243 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testDoesNotLoadLocationWhenNoFileExists()
258 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testDoesNotLoadLocationFromIncompleteFile()
273 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testDoesNotLoadLocationFromCorruptFile()
289 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testDoesNotLoadIncompleteLocation()
308 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testDoesNotLoadOldLocation()
323 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testStoresLocationUponShutdownPrepare()
384 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testDoesNotStoreNullLocation()
407 mUserServiceCallback.onServiceConnected(mMockIPerUserCarService); in testDeletesCacheFileWhenLocationIsDisabled()
/packages/apps/Dialer/java/com/android/dialer/simulator/service/
DSimulatorServiceClient.java40 private void onServiceConnected(ISimulatorService service) { in onServiceConnected() method in SimulatorServiceClient
56 public void onServiceConnected(ComponentName name, IBinder service) { in onServiceConnected() method in SimulatorServiceClient.SimulatorServiceConnection
58 client.onServiceConnected(simulatorService); in onServiceConnected()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/bluetooth/
DCarBluetoothServiceTest.java163 mUserSwitchCallback.onServiceConnected(mMockPerUserCarService); in testConnectionResourceFlagTrue_doCreateDefaultConnectionPolicy()
183 mUserSwitchCallback.onServiceConnected(mMockPerUserCarService); in testConnectionResourceFlagFalse_doNotCreateDefaultConnectionPolicy()
203 mUserSwitchCallback.onServiceConnected(mMockPerUserCarService); in testPowerResourceFlagTrue_doCreateDefaultPowerPolicy()
223 mUserSwitchCallback.onServiceConnected(mMockPerUserCarService); in testPowerResourceFlagFalse_doNotCreateDefaultPowerPolicy()
/packages/services/Car/service/src/com/android/car/
DPerUserCarServiceHelper.java132 public void onServiceConnected(ComponentName componentName, IBinder service) {
146 callback.onServiceConnected(mPerUserCarService);
250 void onServiceConnected(IPerUserCarService perUserCarService); in onServiceConnected() method
/packages/services/Car/tests/carservice_unit_test/src/android/car/
DCarTest.java220 car.getServiceConnectionListener().onServiceConnected(new ComponentName("", ""), in testCreateCarWithStatusChangeNoServiceConnectionWithCarServiceStarted()
237 car.getServiceConnectionListener().onServiceConnected(new ComponentName("", ""), in testCreateCarWithStatusChangeNoServiceHandleCarServiceRestart()
252 car.getServiceConnectionListener().onServiceConnected(new ComponentName("", ""), in testCreateCarWithStatusChangeNoServiceHandleCarServiceRestart()
/packages/apps/Car/Radio/src/com/android/car/radio/service/
DRadioAppServiceWrapper.java141 public void onServiceConnected(ComponentName className, IBinder binder) {
142 RadioAppServiceWrapper.this.onServiceConnected(binder,
211 private void onServiceConnected(IBinder binder, @NonNull IRadioAppService service) { in onServiceConnected() method in RadioAppServiceWrapper
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallScreeningServiceFilterTest.java265 serviceConnection.onServiceConnected(COMPONENT_NAME, mBinder); in testAllowCall()
301 serviceConnection.onServiceConnected(COMPONENT_NAME, mBinder); in testDisallowCall()
338 serviceConnection.onServiceConnected(COMPONENT_NAME, mBinder); in testSilenceCall()
373 serviceConnection.onServiceConnected(COMPONENT_NAME, mBinder); in testScreenCallFurther()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothProfileConnector.java100 public void onServiceConnected(ComponentName className, IBinder service) {
234 mServiceListener.onServiceConnected(mProfileId, mProfileProxy);
/packages/modules/Uwb/framework/java/android/uwb/
DRangingSession.java419 default void onServiceConnected(@NonNull PersistableBundle parameters) {} in onServiceConnected() method
1014 public void onServiceConnected(@NonNull PersistableBundle params) { in onServiceConnected() method in RangingSession
1020 executeCallback(() -> mCallback.onServiceConnected(params)); in onServiceConnected()
DRangingManager.java443 public void onServiceConnected(SessionHandle sessionHandle, in onServiceConnected() method in RangingManager
453 session.onServiceConnected(parameters); in onServiceConnected()
/packages/modules/Uwb/framework/tests/src/android/uwb/
DRangingManagerTest.java251 rangingManager.onServiceConnected(handle, PARAMS); in testCorrectCallbackInvoked()
252 verify(callback, times(1)).onServiceConnected(eq(PARAMS)); in testCorrectCallbackInvoked()
344 rangingManager.onServiceConnected(handle, PARAMS); in testNoCallbackInvoked_sessionClosed()
345 verify(callback, never()).onServiceConnected(eq(PARAMS)); in testNoCallbackInvoked_sessionClosed()
/packages/modules/Bluetooth/system/binder/android/bluetooth/
DIBluetoothProfileServiceConnection.aidl29 void onServiceConnected(in ComponentName comp, in IBinder service); in onServiceConnected() method
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
DBluetoothHeadsetFragment.java137 public void onServiceConnected(ComponentName name, IBinder service) { in setUpInCallServiceImpl()
304 public void onServiceConnected(int profile, BluetoothProfile proxy) { in onServiceConnected() method in BluetoothHeadsetFragment.ProfileServiceListener
/packages/apps/TV/tests/common/src/com/android/tv/testing/testinput/
DTestInputControlConnection.java39 public void onServiceConnected(ComponentName name, IBinder service) { in onServiceConnected() method in TestInputControlConnection
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationApplication.java45 public void onServiceConnected(ComponentName name, IBinder service) {
/packages/modules/NetworkStack/tests/integration/src/android/net/networkstack/
DTestNetworkStackServiceClient.kt65 override fun onServiceConnected(name: ComponentName, service: IBinder) { in onServiceConnected() method in android.net.networkstack.TestNetworkStackServiceClient
/packages/apps/Car/Notification/tests/robotests/src/com/android/car/notification/testutils/
DShadowCar.java53 serviceConnection.onServiceConnected(null, null); in createCar()
/packages/modules/OnDevicePersonalization/framework/java/android/ondevicepersonalization/
DOnDevicePersonalizationManager.java54 public void onServiceConnected(ComponentName name, IBinder service) {
/packages/apps/Launcher3/tests/src/com/android/launcher3/util/rule/
DTISBindRule.java46 public void onServiceConnected(ComponentName componentName, IBinder iBinder) { in createConnection()
/packages/apps/Contacts/src/com/android/contacts/vcard/
DShareVCardActivity.java43 public synchronized void onServiceConnected(ComponentName name, IBinder binder) { in onServiceConnected() method in ShareVCardActivity
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/testutils/
DShadowCar.java52 serviceConnection.onServiceConnected(null, null); in createCar()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
DRestrictedProfilePinServiceConnection.java45 public void onServiceConnected(ComponentName name, IBinder binder) { in onServiceConnected() method in RestrictedProfilePinServiceConnection
/packages/modules/Connectivity/tests/cts/hostside/app/src/com/android/cts/net/hostside/
DRemoteSocketFactoryClient.java57 public void onServiceConnected(ComponentName name, IBinder service) { in bind()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DTISBindHelper.java61 public void onServiceConnected(ComponentName componentName, IBinder iBinder) { in onServiceConnected() method in TISBindHelper

1234567