Home
last modified time | relevance | path

Searched refs:currentRoutes (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/media/java/android/media/
H A DIMediaRouter2.aidl27 void notifyRouterRegistered(in List<MediaRoute2Info> currentRoutes, in notifyRouterRegistered() argument
H A DMediaRouter2.java873 List<MediaRoute2Info> currentRoutes, RoutingSessionInfo currentSystemSessionInfo) { in syncRoutesOnHandler() argument
874 if (currentRoutes == null || currentRoutes.isEmpty() || currentSystemSessionInfo == null) { in syncRoutesOnHandler()
875 Log.e(TAG, "syncRoutesOnHandler: Received wrong data. currentRoutes=" + currentRoutes in syncRoutesOnHandler()
882 for (MediaRoute2Info route : currentRoutes) { in syncRoutesOnHandler()
2065 List<MediaRoute2Info> currentRoutes, RoutingSessionInfo currentSystemSessionInfo) { in notifyRouterRegistered() argument
2070 currentRoutes, in notifyRouterRegistered()
/aosp14/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouter2ServiceImpl.java1657 List<MediaRoute2Info> currentRoutes, RoutingSessionInfo currentSystemSessionInfo) { in notifyRegistered() argument
1660 getVisibleRoutes(currentRoutes), currentSystemSessionInfo); in notifyRegistered()
2536 List<MediaRoute2Info> currentRoutes = new ArrayList<>(); in notifyRouterRegistered() local
2546 currentRoutes.addAll(providerInfo.getRoutes()); in notifyRouterRegistered()
2552 currentRoutes.addAll(systemProviderInfo.getRoutes()); in notifyRouterRegistered()
2559 currentRoutes.add(mSystemProvider.getDefaultRoute()); in notifyRouterRegistered()
2563 if (currentRoutes.size() == 0) { in notifyRouterRegistered()
2567 routerRecord.notifyRegistered(currentRoutes, currentSystemSessionInfo); in notifyRouterRegistered()