Searched defs:tune (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/radio/
H A DIRadio.cpp148 virtual status_t tune(unsigned int channel, unsigned int subChannel) function in class:android::BpRadio
293 status_t status = tune(channel, subChannel);
H A DRadio.cpp198 status_t Radio::tune(unsigned int channel, unsigned int subChannel) function in class:android::Radio
204 return mIRadio->tune(channel, subChannel);
/frameworks/base/core/java/android/hardware/radio/
H A DRadioModule.java73 public native int tune(int channel, int subChannel); method in class:RadioModule
H A DRadioTuner.java160 * onProgramInfoChanged() will be called when tune completes or
162 * @param channel the specific channel or frequency to tune to.
163 * @param subChannel the specific sub-channel to tune to. N/A if the selected configuration
176 public abstract int tune(int channel, int subChannel); method in class:RadioTuner
179 * Cancel a pending scan or tune operation.
239 /** A pending seek or tune operation was cancelled */
241 /** A pending seek or tune operation timed out */
268 * {@link RadioTuner#tune(int, int)} or when a switching to alternate frequency occurs.
/frameworks/base/media/java/android/media/tv/
H A DTvRecordingClient.java70 * 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) { method in class:TvRecordingClient
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) { method in class:TvRecordingClient
112 if (DEBUG) Log.d(TAG, "tune(" + channelUri + ")");
117 throw new IllegalStateException("tune faile
[all...]
H A DITvInputSessionWrapper.java148 mTvInputRecordingSessionImpl.tune((Uri) args.arg1, (Bundle) args.arg2);
150 mTvInputSessionImpl.tune((Uri) args.arg1, (Bundle) args.arg2);
236 throw new RuntimeException("Too much time to handle tune request. (" + durationMs
238 + "Consider handling the tune request in a separate thread.");
277 public void tune(Uri channelUri, Bundle params) { method in class:ITvInputSessionWrapper
278 // Clear the pending tune requests.
H A DTvView.java61 * <p>Once the application supplies the URI for a specific TV channel to {@link #tune}
291 public void tune(@NonNull String inputId, Uri channelUri) { method in class:TvView
292 tune(inputId, channelUri, null);
301 * @param params Domain-specific data for this tune request. Keys <em>must</em> be a scoped
305 public void tune(String inputId, Uri channelUri, Bundle params) { method in class:TvView
306 if (DEBUG) Log.d(TAG, "tune(" + channelUri + ")");
317 mSession.tune(channelUri, params);
321 // the new ones and tune later in onSessionCreated(). It is not necessary to create
345 * <p>This method is primarily used to un-tune the current TvView.
910 * without any {@link TvView#tune} reques
[all...]
H A DTvInputService.java812 * @param params Domain-specific data for this tune request. Keys <em>must</em> be a scoped
950 * settings until the next tune request. Pause/resume/seek request does not reset the
1184 void tune(Uri channelUri, Bundle params) { method in class:TvInputService.Session
1536 * <p>Upon receiving a call to {@link #onTune(Uri)}, the session is expected to tune to the
1656 * Called when the application requests to tune to a given channel for TV program recording.
1661 * <p>The session must call {@link #notifyTuned(Uri)} if the tune request was fulfilled, or
1669 * Called when the application requests to tune to a given channel for TV program recording.
1676 * <p>The session must call {@link #notifyTuned(Uri)} if the tune request was fulfilled, or
1680 * @param params Domain-specific data for this tune request. Keys <em>must</em> be a scoped
1744 void tune(Ur method in class:TvInputService.RecordingSession
[all...]
H A DTvInputManager.java368 * without any {@link TvInputManager.Session#tune(Uri)} request.
1771 public void tune(Uri channelUri) { method in class:TvInputManager.Session
1772 tune(channelUri, null);
1779 * @param params A set of extra parameters which might be handled with this tune event.
1781 public void tune(@NonNull Uri channelUri, Bundle params) { method in class:TvInputManager.Session
1798 mService.tune(mToken, channelUri, params, mUserId);
/frameworks/av/services/radio/
H A DRadioService.cpp820 status_t RadioService::ModuleClient::tune(unsigned int channel, unsigned int subChannel) function in class:android::RadioService::ModuleClient
826 status = (status_t)mTuner->tune(mTuner, channel, subChannel);
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java1330 public void tune(IBinder sessionToken, final Uri channelUri, Bundle params, int userId) { method in class:TvInputManagerService.BinderService
1333 userId, "tune");
1338 getSessionLocked(sessionToken, callingUid, resolvedUserId).tune(
1361 Slog.e(TAG, "error in tune", e);

Completed in 268 milliseconds