Searched refs:routeGroupId (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRegisteredMediaRouteProvider.java103 @NonNull String routeId, @NonNull String routeGroupId) {
107 if (routeGroupId == null) {
108 throw new IllegalArgumentException("routeGroupId cannot be null");
110 return createRouteController(routeId, routeGroupId);
250 private RouteController createRouteController(String routeId, String routeGroupId) { argument
258 Controller controller = new Controller(routeId, routeGroupId);
352 public Controller(String routeId, String routeGroupId) { argument
354 mRouteGroupId = routeGroupId;
563 public int createRouteController(String routeId, String routeGroupId) { argument
567 data.putString(CLIENT_DATA_ROUTE_LIBRARY_GROUP, routeGroupId);
102 onCreateRouteController( @onNull String routeId, @NonNull String routeGroupId) argument
[all...]
H A DMediaRouteProvider.java272 * @param routeGroupId The unique id of the route group.
280 @NonNull String routeGroupId) {
284 if (routeGroupId == null) {
285 throw new IllegalArgumentException("routeGroupId cannot be null");
279 onCreateRouteController(@onNull String routeId, @NonNull String routeGroupId) argument
H A DMediaRouteProviderService.java231 int controllerId, String routeId, String routeGroupId) {
234 if (client.createRouteController(routeId, routeGroupId, controllerId)) {
237 + ", routeId=" + routeId + ", routeGroupId=" + routeGroupId);
586 public boolean createRouteController(String routeId, String routeGroupId, argument
589 MediaRouteProvider.RouteController controller = routeGroupId == null
591 : mProvider.onCreateRouteController(routeId, routeGroupId);
689 String routeGroupId = data.getString(CLIENT_DATA_ROUTE_LIBRARY_GROUP);
692 messenger, requestId, arg, routeId, routeGroupId);
230 onCreateRouteController(Messenger messenger, int requestId, int controllerId, String routeId, String routeGroupId) argument

Completed in 47 milliseconds