Home
last modified time | relevance | path

Searched refs:getAllAssociations (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Connectivity/remoteauth/tests/unit/src/com/android/server/remoteauth/connectivity/
DCdmConnectivityManagerTest.java74 verify(mCompanionDeviceManagerWrapper, times(1)).getAllAssociations(); in testStartDiscovery_callsGetAllAssociationsOnce()
81 when(mCompanionDeviceManagerWrapper.getAllAssociations()) in testStartDiscovery_fetchesNoAssociations()
127 verify(mCompanionDeviceManagerWrapper, times(1)).getAllAssociations(); in testStartDiscovery_DoesNotReturnNonWatchAssociations()
144 when(mCompanionDeviceManagerWrapper.getAllAssociations()) in testStartDiscovery_returnsOneWatchAssociation()
154 verify(mCompanionDeviceManagerWrapper, times(1)).getAllAssociations(); in testStartDiscovery_returnsOneWatchAssociation()
177 when(mCompanionDeviceManagerWrapper.getAllAssociations()) in testStartDiscovery_returnsMultipleWatchAssociations()
187 verify(mCompanionDeviceManagerWrapper, times(1)).getAllAssociations(); in testStartDiscovery_returnsMultipleWatchAssociations()
212 when(mCompanionDeviceManagerWrapper.getAllAssociations()) in testMultipleStartDiscovery_runsAllCallbacks()
225 verify(mCompanionDeviceManagerWrapper, times(2)).getAllAssociations(); in testMultipleStartDiscovery_runsAllCallbacks()
252 when(mCompanionDeviceManagerWrapper.getAllAssociations()) in testStartDiscovery_returnsExpectedDiscoveredDevice()
[all …]
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/wear/
DCompanionDeviceManagerProxy.java48 public List<AssociationInfo> getAllAssociations() { in getAllAssociations() method in CompanionDeviceManagerProxy
50 return mService.getAllAssociations(); in getAllAssociations()
/packages/modules/Connectivity/service/src/com/android/server/connectivity/wear/
DCompanionDeviceManagerProxyService.java49 public List<AssociationInfo> getAllAssociations() { in getAllAssociations() method in CompanionDeviceManagerProxyService
55 return cdm.getAllAssociations(); in getAllAssociations()
/packages/modules/Connectivity/remoteauth/service/java/com/android/server/remoteauth/connectivity/
DCompanionDeviceManagerWrapper.java60 public List<AssociationInfo> getAllAssociations() { in getAllAssociations() method in CompanionDeviceManagerWrapper
71 return mCompanionDeviceManager.getAllAssociations(); in getAllAssociations()
DCdmConnectivityManager.java89 List<AssociationInfo> associations = mCompanionDeviceManagerWrapper.getAllAssociations(); in startDiscoveryAsync()
/packages/modules/Connectivity/Tethering/common/TetheringLib/src/android/net/wear/
DICompanionDeviceManagerProxy.aidl23 List<AssociationInfo> getAllAssociations(); in getAllAssociations() method
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DBluetoothDetailsCompanionAppsControllerTest.java76 when(mCompanionDeviceManager.getAllAssociations()).thenReturn(mAssociations); in setUp()
135 when(mCompanionDeviceManager.getAllAssociations()).thenReturn(mAssociations); in removeAssociation()
DBluetoothDetailsDataSyncControllerTest.java71 when(mCompanionDeviceManager.getAllAssociations()).thenReturn(Collections.emptyList()); in setUp()
DBluetoothDeviceDetailsFragmentTest.java112 when(mCompanionDeviceManager.getAllAssociations()).thenReturn(ImmutableList.of()); in setUp()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDetailsDataSyncController.java68 mCompanionDeviceManager.getAllAssociations().stream().filter( in BluetoothDetailsDataSyncController()
DBluetoothDetailsCompanionAppsController.java94 mCompanionDeviceManager.getAllAssociations(), in getAssociations()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/
DUtils.java501 for (AssociationInfo association : cdm.getAllAssociations()) { in enforceCdmAssociation()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/le_scan/
DTransitionalScanHelper.java1109 for (AssociationInfo info : mCompanionManager.getAllAssociations()) { in getAssociatedDevices()