Searched refs:tune (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/media/java/android/media/tv/
H A DITvInputSession.aidl39 void tune(in Uri channelUri, in Bundle params);
H A DITvInputManager.aidl66 void tune(in IBinder sessionToken, in Uri channelUri, in Bundle params, int userId);
H A DITvInputSessionWrapper.java125 mTvInputSessionImpl.tune((Uri) args.arg1, (Bundle) args.arg2);
193 throw new RuntimeException("Too much time to handle tune request. (" + duration
195 + "Consider handling the tune request in a separate thread.");
232 public void tune(Uri channelUri, Bundle params) { method in class:ITvInputSessionWrapper
233 // Clear the pending tune requests.
H A DTvView.java59 * <p>Once the application supplies the URI for a specific TV channel to {@link #tune(String, Uri)}
278 public void tune(@NonNull String inputId, Uri channelUri) { method in class:TvView
279 tune(inputId, channelUri, null);
291 public void tune(String inputId, Uri channelUri, Bundle params) { method in class:TvView
292 if (DEBUG) Log.d(TAG, "tune(" + channelUri + ")");
303 mSession.tune(channelUri, params);
307 // the new ones and tune later in onSessionCreated(). It is not necessary to create
331 * <p>This method is primarily used to un-tune the current TvView.
865 * without any {@link TvView#tune(String, Uri)} request.
1046 mSession.tune(mChannelUr
[all...]
H A DTvInputManager.java269 * without any {@link TvInputManager.Session#tune(Uri)} request.
1472 public void tune(Uri channelUri) { method in class:TvInputManager.Session
1473 tune(channelUri, null);
1480 * @param params A set of extra parameters which might be handled with this tune event.
1484 public void tune(@NonNull Uri channelUri, Bundle params) { method in class:TvInputManager.Session
1501 mService.tune(mToken, channelUri, params, mUserId);
H A DTvInputService.java904 * settings until the next tune request. Pause/resume/seek request does not reset the
1132 void tune(Uri channelUri, Bundle params) { method in class:TvInputService.Session
1506 session.tune(TvContract.buildChannelUriForPassthroughInput(
/frameworks/av/include/radio/
H A DIRadio.h48 virtual status_t tune(unsigned int channel, unsigned int subChannel) = 0;
H A DRadio.h61 status_t tune(unsigned int channel, unsigned int subChannel);
/frameworks/base/core/java/android/hardware/radio/
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.
H A DRadioModule.java73 public native int tune(int channel, int subChannel); method in class:RadioModule
/frameworks/av/radio/
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);
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);
/frameworks/av/services/radio/
H A DRadioService.h156 virtual status_t tune(unsigned int channel, unsigned int subChannel);
H A DRadioService.cpp819 status_t RadioService::ModuleClient::tune(unsigned int channel, unsigned int subChannel) function in class:android::RadioService::ModuleClient
825 status = (status_t)mTuner->tune(mTuner, channel, subChannel);
/frameworks/base/core/jni/
H A Dandroid_hardware_Radio.cpp705 status_t status = module->tune((unsigned int)channel, (unsigned int)subChannel);
829 {"tune",
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java1196 public void tune(IBinder sessionToken, final Uri channelUri, Bundle params, int userId) { method in class:TvInputManagerService.BinderService
1199 userId, "tune");
1204 getSessionLocked(sessionToken, callingUid, resolvedUserId).tune(
1224 Slog.e(TAG, "error in tune", e);

Completed in 4490 milliseconds