Lines Matching refs:type

235      * Route type flag for live audio.
247 * Route type flag for live video.
264 * Route type flag for application-specific usage.
318 * @param type route types
321 public RouteInfo getSelectedRoute(int type) {
338 info.type |= types;
364 * @param types type flags indicating which types this route should be used for.
652 static void dispatchRouteSelected(int type, RouteInfo info) {
654 if ((cbi.type & type) != 0) {
655 cbi.cb.onRouteSelected(cbi.router, type, info);
660 static void dispatchRouteUnselected(int type, RouteInfo info) {
662 if ((cbi.type & type) != 0) {
663 cbi.cb.onRouteUnselected(cbi.router, type, info);
670 if ((cbi.type & info.mSupportedTypes) != 0) {
678 if ((cbi.type & info.mSupportedTypes) != 0) {
686 if ((cbi.type & info.mSupportedTypes) != 0) {
694 if ((cbi.type & group.mSupportedTypes) != 0) {
702 if ((cbi.type & group.mSupportedTypes) != 0) {
710 if ((cbi.type & info.mSupportedTypes) != 0) {
718 if ((cbi.type & info.mSupportedTypes) != 0) {
939 * The default playback type, "local", indicating the presentation of the media is happening
945 * A playback type indicating the presentation of the media is happening on
1038 * @return A media type flag set describing which types this route supports.
1093 * @return the type of playback associated with this route
1379 * @param type
1381 public void setPlaybackType(int type) {
1382 if (mPlaybackType != type) {
1383 mPlaybackType = type;
1384 setPlaybackInfoOnRcc(RemoteControlClient.PLAYBACKINFO_PLAYBACK_TYPE, type);
1455 * Defines over what stream type the media is presented.
1869 public int type;
1873 public CallbackInfo(Callback cb, int type, MediaRouter router) {
1875 this.type = type;
1893 * for the given route type.
1896 * @param type Type flag set indicating the routes that have been selected
1899 public abstract void onRouteSelected(MediaRouter router, int type, RouteInfo info);
1903 * for the given route type.
1906 * @param type Type flag set indicating the routes that have been unselected
1909 public abstract void onRouteUnselected(MediaRouter router, int type, RouteInfo info);
1912 * Called when a route for the specified type was added.
1920 * Called when a route for the specified type was removed.
1990 public void onRouteSelected(MediaRouter router, int type, RouteInfo info) {
1994 public void onRouteUnselected(MediaRouter router, int type, RouteInfo info) {