Home
last modified time | relevance | path

Searched refs:BluetoothRouteInfo (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/media/
DLegacyBluetoothRouteController.java63 private final Map<String, BluetoothRouteInfo> mBluetoothRoutes = new HashMap<>();
64 private final List<BluetoothRouteInfo> mActiveRoutes = new ArrayList<>();
150 BluetoothRouteInfo btRouteInfo = findBluetoothRouteWithRouteId(routeId); in transferTo()
162 private BluetoothRouteInfo findBluetoothRouteWithRouteId(String routeId) { in findBluetoothRouteWithRouteId()
166 for (BluetoothRouteInfo btRouteInfo : mBluetoothRoutes.values()) { in findBluetoothRouteWithRouteId()
189 BluetoothRouteInfo newBtRoute = createBluetoothRoute(device); in buildBluetoothRoutes()
210 for (BluetoothRouteInfo btRoute : mActiveRoutes) { in getTransferableRoutes()
228 for (BluetoothRouteInfo btRoute : mBluetoothRoutes.values()) { in getAllBluetoothRoutes()
261 for (BluetoothRouteInfo btRoute : mActiveRoutes) { in updateVolumeForDevices()
282 private BluetoothRouteInfo createBluetoothRoute(BluetoothDevice device) { in createBluetoothRoute()
[all …]
DBluetoothDeviceRoutesManager.java77 @NonNull private final Map<String, BluetoothRouteInfo> mBluetoothRoutes = new HashMap<>();
159 BluetoothRouteInfo btRouteInfo = mBluetoothRoutes.get(address); in activateBluetoothDeviceWithAddress()
188 BluetoothRouteInfo newBtRoute = createBluetoothRoute(device); in updateBluetoothRoutes()
203 for (BluetoothRouteInfo btRoute : mBluetoothRoutes.values()) { in getAvailableBluetoothRoutes()
232 private BluetoothRouteInfo createBluetoothRoute(BluetoothDevice device) { in createBluetoothRoute()
233 BluetoothRouteInfo in createBluetoothRoute()
234 newBtRoute = new BluetoothRouteInfo(); in createBluetoothRoute()
331 private static class BluetoothRouteInfo { class