Lines Matching refs:inputId

273      * @param inputId The ID of TV input which will play the given channel.
276 public void tune(String inputId, Uri channelUri) {
277 tune(inputId, channelUri, null);
283 * @param inputId The ID of TV input which will play the given channel.
289 public void tune(String inputId, Uri channelUri, Bundle params) {
291 if (TextUtils.isEmpty(inputId)) {
292 throw new IllegalArgumentException("inputId cannot be null or an empty string");
299 if (mSessionCallback != null && mSessionCallback.mInputId.equals(inputId)) {
315 mSessionCallback = new MySessionCallback(inputId, channelUri, params);
317 mTvInputManager.createSession(inputId, mSessionCallback, mHandler);
740 * @param inputId The ID of the TV input bound to this view.
742 public void onConnectionFailed(String inputId) {
748 * @param inputId The ID of the TV input bound to this view.
750 public void onDisconnected(String inputId) {
757 * @param inputId The ID of the TV input bound to this view.
760 public void onChannelRetuned(String inputId, Uri channelUri) {
766 * @param inputId The ID of the TV input bound to this view.
769 public void onTracksChanged(String inputId, List<TvTrackInfo> tracks) {
775 * @param inputId The ID of the TV input bound to this view.
781 public void onTrackSelected(String inputId, int type, String trackId) {
789 * @param inputId The ID of the TV input bound to this view.
793 public void onVideoSizeChanged(String inputId, int width, int height) {
799 * @param inputId The ID of the TV input bound to this view.
801 public void onVideoAvailable(String inputId) {
807 * @param inputId The ID of the TV input bound to this view.
816 public void onVideoUnavailable(String inputId, int reason) {
823 * @param inputId The ID of the TV input bound to this view.
825 public void onContentAllowed(String inputId) {
832 * @param inputId The ID of the TV input bound to this view.
835 public void onContentBlocked(String inputId, TvContentRating rating) {
846 public void onEvent(String inputId, String eventType, Bundle eventArgs) {
872 MySessionCallback(String inputId, Uri channelUri, Bundle tuneParams) {
873 mInputId = inputId;