Home | History | Annotate | Download | only in tv

Lines Matching defs:tune

70      * Tunes to a given channel for TV program recording. The first tune request will create a new
79 * {@link RecordingCallback#onTuned(Uri)} if the tune request was fulfilled, or
86 public void tune(String inputId, Uri channelUri) {
87 tune(inputId, channelUri, null);
91 * Tunes to a given channel for TV program recording. The first tune request will create a new
101 * {@link RecordingCallback#onTuned(Uri)} if the tune request was fulfilled, or
106 * @param params Domain-specific data for this tune request. Keys <em>must</em> be a scoped
111 public void tune(String inputId, Uri channelUri, Bundle params) {
112 if (DEBUG) Log.d(TAG, "tune(" + channelUri + ")");
117 throw new IllegalStateException("tune failed - recording already started");
121 mSession.tune(channelUri, params);
170 * @throws IllegalStateException If {@link #tune} request hasn't been handled yet.
324 mSession.tune(mChannelUri, mConnectionParams);