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

/frameworks/base/media/java/android/media/tv/
H A DITvInputSession.aidl38 void tune(in Uri channelUri, in Bundle params);
H A DITvInputSessionWrapper.java118 mTvInputSessionImpl.tune((Uri) args.arg1, (Bundle) args.arg2);
166 throw new RuntimeException("Too much time to handle tune request. (" + duration
168 + "Consider handling the tune request in a separate thread.");
201 public void tune(Uri channelUri, Bundle params) { method in class:ITvInputSessionWrapper
202 // Clear the pending tune requests.
H A DTvView.java53 * Once the application supplies the URI for a specific TV channel to {@link #tune(String, Uri)}
276 public void tune(String inputId, Uri channelUri) { method in class:TvView
277 tune(inputId, channelUri, null);
285 * @param params Extra parameters which might be handled with the tune event.
289 public void tune(String inputId, Uri channelUri, Bundle params) { method in class:TvView
290 if (DEBUG) Log.d(TAG, "tune(" + channelUri + ")");
301 mSession.tune(channelUri, params);
325 * This method is primarily used to un-tune the current TvView.
755 * without any {@link TvView#tune(String, Uri)} request.
911 mSession.tune(mChannelUr
[all...]
H A DITvInputManager.aidl63 void tune(in IBinder sessionToken, in Uri channelUri, in Bundle params, int userId);
H A DTvInputManager.java221 * without any {@link TvInputManager.Session#tune(Uri)} request.
1304 public void tune(Uri channelUri) { method in class:TvInputManager.Session
1305 tune(channelUri, null);
1312 * @param params A set of extra parameters which might be handled with this tune event.
1317 public void tune(Uri channelUri, Bundle params) { method in class:TvInputManager.Session
1336 mService.tune(mToken, channelUri, params, mUserId);
H A DTvInputService.java928 void tune(Uri channelUri, Bundle params) { method in class:TvInputService.Session
1231 session.tune(TvContract.buildChannelUriForPassthroughInput(getHardwareInputId()));
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java1163 public void tune(IBinder sessionToken, final Uri channelUri, Bundle params, int userId) { method in class:TvInputManagerService.BinderService
1166 userId, "tune");
1171 getSessionLocked(sessionToken, callingUid, resolvedUserId).tune(
1191 Slog.e(TAG, "error in tune", e);

Completed in 1003 milliseconds