Lines Matching refs:inputId

275      * @param inputId The ID of the TV input for the given channel.
278 public void tune(@NonNull String inputId, Uri channelUri) {
279 tune(inputId, channelUri, null);
285 * @param inputId The ID of TV input for the given channel.
291 public void tune(String inputId, Uri channelUri, Bundle params) {
293 if (TextUtils.isEmpty(inputId)) {
294 throw new IllegalArgumentException("inputId cannot be null or an empty string");
301 if (mSessionCallback != null && TextUtils.equals(mSessionCallback.mInputId, inputId)) {
305 // createSession() was called but the actual session for the given inputId has not
308 // a new callback because this tuning request was made on the same inputId.
314 // In case createSession() is called multiple times across different inputId's before
321 mSessionCallback = new MySessionCallback(inputId, channelUri, params);
323 mTvInputManager.createSession(inputId, mSessionCallback, mHandler);
820 * @param inputId The ID of the TV input bound to this view.
824 public void onTimeShiftStartPositionChanged(String inputId, long timeMs) {
833 * @param inputId The ID of the TV input bound to this view.
837 public void onTimeShiftCurrentPositionChanged(String inputId, long timeMs) {
850 * @param inputId The ID of the TV input bound to this view.
852 public void onConnectionFailed(String inputId) {
858 * @param inputId The ID of the TV input bound to this view.
860 public void onDisconnected(String inputId) {
867 * @param inputId The ID of the TV input bound to this view.
870 public void onChannelRetuned(String inputId, Uri channelUri) {
876 * @param inputId The ID of the TV input bound to this view.
879 public void onTracksChanged(String inputId, List<TvTrackInfo> tracks) {
885 * @param inputId The ID of the TV input bound to this view.
891 public void onTrackSelected(String inputId, int type, String trackId) {
899 * @param inputId The ID of the TV input bound to this view.
903 public void onVideoSizeChanged(String inputId, int width, int height) {
909 * @param inputId The ID of the TV input bound to this view.
911 public void onVideoAvailable(String inputId) {
917 * @param inputId The ID of the TV input bound to this view.
927 public void onVideoUnavailable(String inputId, int reason) {
934 * @param inputId The ID of the TV input bound to this view.
936 public void onContentAllowed(String inputId) {
943 * @param inputId The ID of the TV input bound to this view.
946 public void onContentBlocked(String inputId, TvContentRating rating) {
952 * @param inputId The ID of the TV input bound to this view.
958 public void onEvent(String inputId, String eventType, Bundle eventArgs) {
964 * @param inputId The ID of the TV input bound to this view.
972 public void onTimeShiftStatusChanged(String inputId, int status) {
998 MySessionCallback(String inputId, Uri channelUri, Bundle tuneParams) {
999 mInputId = inputId;