Searched refs:recordingId (Results 1 - 6 of 6) sorted by relevance

/packages/apps/TV/src/com/android/tv/dvr/
H A DDvrPlayActivity.java38 long recordingId = getIntent().getLongExtra(ScheduledRecording.RECORDING_ID_EXTRA, 0);
39 ScheduledRecording scheduledRecording = dvrDataManager.getScheduledRecording(recordingId);
H A DDvrDataManager.java101 * Returns the scheduled recording program with the given recordingId or null if is not found.
104 ScheduledRecording getScheduledRecording(long recordingId); argument
114 * Returns the recorded program with the given recordingId or null if is not found.
117 RecordedProgram getRecordedProgram(long recordingId); argument
H A DDvrDataManagerImpl.java234 public ScheduledRecording getScheduledRecording(long recordingId) { argument
236 return mScheduledRecordings.get(recordingId);
252 public RecordedProgram getRecordedProgram(long recordingId) { argument
253 return mRecordedPrograms.get(recordingId);
H A DDvrDataManagerInMemoryImpl.java200 public RecordedProgram getRecordedProgram(long recordingId) { argument
201 return mRecordedPrograms.get(recordingId);
/packages/apps/TV/src/com/android/tv/ui/
H A DTunableTvView.java502 long recordingId = ContentUris.parseId(recordingUri);
503 mRecordedProgram = mDvrDataManager.getRecordedProgram(recordingId);
/packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
H A DTunerSessionWorker.java252 private Long getDurationForRecording(String recordingId) { argument
268 Log.e(TAG, "meta file for recording was not found: " + recordingId);

Completed in 124 milliseconds