Searched refs:playbackType (Results 1 - 7 of 7) sorted by last modified time

/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDescriptor.java52 static final String KEY_PLAYBACK_TYPE = "playbackType";
322 result.append(", playbackType=").append(getPlaybackType());
586 * @param playbackType The playback type of the route:
590 public Builder setPlaybackType(int playbackType) { argument
591 mBundle.putInt(KEY_PLAYBACK_TYPE, playbackType);
H A DMediaRouter.java1457 + ", playbackType=" + mPlaybackType
2703 mPlaybackInfo.playbackType = mSelectedRoute.getPlaybackType();
H A DRemoteControlClientCompat.java78 public int playbackType = MediaRouter.RouteInfo.PLAYBACK_TYPE_REMOTE; field in class:RemoteControlClientCompat.PlaybackInfo
150 mUserRouteObj, info.playbackType);
/frameworks/support/media-compat/tests/src/android/support/v4/media/session/
H A DMediaControllerCompatTest.java399 final int playbackType = MediaControllerCompat.PlaybackInfo.PLAYBACK_TYPE_LOCAL;
406 playbackType, audioStream, volumeControl, maxVolume, currentVolume);
408 assertEquals(playbackType, info.getPlaybackType());
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaRouterService.java1279 final int playbackType = computePlaybackType(descriptor);
1280 if (mMutableInfo.playbackType != playbackType) {
1281 mMutableInfo.playbackType = playbackType;
/frameworks/base/media/java/android/media/
H A DMediaRouter.java503 route.mPlaybackType = globalRoute.playbackType;
539 if (route.mPlaybackType != globalRoute.playbackType) {
540 route.mPlaybackType = globalRoute.playbackType;
H A DMediaRouterClientState.java101 public int playbackType; field in class:MediaRouterClientState.RouteInfo
113 playbackType = MediaRouter.RouteInfo.PLAYBACK_TYPE_REMOTE;
127 playbackType = other.playbackType;
143 playbackType = in.readInt();
165 dest.writeInt(playbackType);
182 + ", playbackType=" + playbackType

Completed in 333 milliseconds