Searched defs:recordedProgramUri (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/java/android/media/tv/
H A DTvRecordingClient.java261 * @param recordedProgramUri The URI for the newly recorded program.
263 public void onRecordingStopped(Uri recordedProgramUri) { argument
365 public void onRecordingStopped(TvInputManager.Session session, Uri recordedProgramUri) { argument
367 Log.d(TAG, "onRecordingStopped(recordedProgramUri= " + recordedProgramUri + ")");
374 mCallback.onRecordingStopped(recordedProgramUri);
H A DITvInputSessionWrapper.java322 public void timeShiftPlay(Uri recordedProgramUri) { argument
324 DO_TIME_SHIFT_PLAY, recordedProgramUri));
H A DTvView.java467 * @param recordedProgramUri The URI of a recorded program.
469 public void timeShiftPlay(String inputId, Uri recordedProgramUri) { argument
470 if (DEBUG) Log.d(TAG, "timeShiftPlay(" + recordedProgramUri + ")");
481 mSession.timeShiftPlay(recordedProgramUri);
483 mSessionCallback.mRecordedProgramUri = recordedProgramUri;
487 mSessionCallback = new MySessionCallback(inputId, recordedProgramUri);
1055 MySessionCallback(String inputId, Uri recordedProgramUri) { argument
1057 mRecordedProgramUri = recordedProgramUri;
H A DTvInputService.java893 * @param recordedProgramUri The URI of a recorded TV program.
901 public void onTimeShiftPlay(Uri recordedProgramUri) { argument
1323 void timeShiftPlay(Uri recordedProgramUri) { argument
1325 onTimeShiftPlay(recordedProgramUri);
1574 * @param recordedProgramUri The URI of the newly recorded program.
1576 public void notifyRecordingStopped(final Uri recordedProgramUri) { argument
1584 mSessionCallback.onRecordingStopped(recordedProgramUri);
H A DTvInputManager.java533 * @param recordedProgramUri The URI for the newly recorded program.
535 void onRecordingStopped(Session session, Uri recordedProgramUri) { argument
708 void postRecordingStopped(final Uri recordedProgramUri) { argument
712 mSessionCallback.onRecordingStopped(mSession, recordedProgramUri);
1080 public void onRecordingStopped(Uri recordedProgramUri, int seq) {
1087 record.postRecordingStopped(recordedProgramUri);
2085 void timeShiftPlay(Uri recordedProgramUri) { argument
2091 mService.timeShiftPlay(mToken, recordedProgramUri, mUserId);
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputManagerService.java1526 public void timeShiftPlay(IBinder sessionToken, final Uri recordedProgramUri, int userId) { argument
1535 recordedProgramUri);
2677 public void onRecordingStopped(Uri recordedProgramUri) { argument
2680 Slog.d(TAG, "onRecordingStopped(recordedProgramUri=" + recordedProgramUri
2687 mSessionState.client.onRecordingStopped(recordedProgramUri, mSessionState.seq);

Completed in 709 milliseconds