Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DIMediaRouter2.aidl28 void notifyRouterRegistered(in List<MediaRoute2Info> currentRoutes, in notifyRouterRegistered() argument
DMediaRouter2.java1125 List<MediaRoute2Info> currentRoutes, RoutingSessionInfo currentSystemSessionInfo) { in syncRoutesOnHandler() argument
1126 if (currentRoutes == null || currentRoutes.isEmpty() || currentSystemSessionInfo == null) { in syncRoutesOnHandler()
1127 Log.e(TAG, "syncRoutesOnHandler: Received wrong data. currentRoutes=" + currentRoutes in syncRoutesOnHandler()
1132 updateRoutesOnHandler(currentRoutes); in syncRoutesOnHandler()
2390 List<MediaRoute2Info> currentRoutes, RoutingSessionInfo currentSystemSessionInfo) { in notifyRouterRegistered() argument
2395 currentRoutes, in notifyRouterRegistered()
/frameworks/base/services/core/java/com/android/server/media/
DMediaRouter2ServiceImpl.java2217 List<MediaRoute2Info> currentRoutes, RoutingSessionInfo currentSystemSessionInfo) { in notifyRegistered() argument
2220 getVisibleRoutes(currentRoutes), currentSystemSessionInfo); in notifyRegistered()
3194 List<MediaRoute2Info> currentRoutes = new ArrayList<>(); in notifyRouterRegistered() local
3204 currentRoutes.addAll(providerInfo.getRoutes()); in notifyRouterRegistered()
3210 currentRoutes.addAll(systemProviderInfo.getRoutes()); in notifyRouterRegistered()
3217 currentRoutes.add(mSystemProvider.getDefaultRoute()); in notifyRouterRegistered()
3221 if (!currentRoutes.isEmpty()) { in notifyRouterRegistered()
3222 routerRecord.notifyRegistered(currentRoutes, currentSystemSessionInfo); in notifyRouterRegistered()