Home | History | Annotate | Download | only in media

Lines Matching refs:routeId

97     public RouteController onCreateRouteController(@NonNull String routeId) {
98 if (routeId == null) {
99 throw new IllegalArgumentException("routeId cannot be null");
101 return createRouteController(routeId, null);
106 @NonNull String routeId, @NonNull String routeGroupId) {
107 if (routeId == null) {
108 throw new IllegalArgumentException("routeId cannot be null");
113 return createRouteController(routeId, routeGroupId);
253 private RouteController createRouteController(String routeId, String routeGroupId) {
260 if (route.getId().equals(routeId)) {
261 Controller controller = new Controller(routeId, routeGroupId);
355 public Controller(String routeId, String routeGroupId) {
356 mRouteId = routeId;
566 public int createRouteController(String routeId, String routeGroupId) {
569 data.putString(CLIENT_DATA_ROUTE_ID, routeId);