HomeSort by relevance Sort by last modified time
    Searched refs:recordingId (Results 1 - 6 of 6) sorted by null

  /packages/apps/TV/src/com/android/tv/dvr/
DvrDataManager.java 134 * Returns the scheduled recording program with the given recordingId or null if is not found.
137 ScheduledRecording getScheduledRecording(long recordingId);
143 /** Returns the recorded program with the given recordingId or null if is not found. */
145 RecordedProgram getRecordedProgram(long recordingId);
DvrDataManagerImpl.java 568 public ScheduledRecording getScheduledRecording(long recordingId) {
569 return mScheduledRecordings.get(recordingId);
580 public RecordedProgram getRecordedProgram(long recordingId) {
581 return mRecordedPrograms.get(recordingId);
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/ui/
DvrSeriesDeletionFragment.java 188 long recordingId = guidedAction.getId();
189 if (mWatchedRecordings.contains(recordingId)) {
194 notifyActionChanged(findActionPositionById(recordingId));
DvrUiHelper.java 581 long recordingId;
585 recordingId = schedule.getId();
592 recordingId = schedule.getRecordedProgramId();
605 recordingId = ((RecordedProgram) dvrItem).getId();
608 recordingId = ((SeriesRecording) dvrItem).getId();
613 intent.putExtra(DvrDetailsActivity.RECORDING_ID, recordingId);
    [all...]
  /packages/apps/TV/tests/common/src/com/android/tv/testing/dvr/
DvrDataManagerInMemoryImpl.java 309 public RecordedProgram getRecordedProgram(long recordingId) {
310 return mRecordedPrograms.get(recordingId);
  /packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
TunerSessionWorker.java 337 private Long getDurationForRecording(String recordingId) {
350 Log.e(TAG, "meta file for recording was not found: " + recordingId);
    [all...]

Completed in 1554 milliseconds