Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/dvr/
DDvrPlayActivity.java38 long recordingId = getIntent().getLongExtra(ScheduledRecording.RECORDING_ID_EXTRA, 0); in onCreate() local
39 ScheduledRecording scheduledRecording = dvrDataManager.getScheduledRecording(recordingId); in onCreate()
DDvrDataManager.java104 ScheduledRecording getScheduledRecording(long recordingId); in getScheduledRecording() argument
117 RecordedProgram getRecordedProgram(long recordingId); in getRecordedProgram() argument
DDvrDataManagerImpl.java234 public ScheduledRecording getScheduledRecording(long recordingId) { in getScheduledRecording() argument
236 return mScheduledRecordings.get(recordingId); in getScheduledRecording()
252 public RecordedProgram getRecordedProgram(long recordingId) { in getRecordedProgram() argument
253 return mRecordedPrograms.get(recordingId); in getRecordedProgram()
DDvrDataManagerInMemoryImpl.java200 public RecordedProgram getRecordedProgram(long recordingId) { in getRecordedProgram() argument
201 return mRecordedPrograms.get(recordingId); in getRecordedProgram()
/packages/apps/TV/src/com/android/tv/ui/
DTunableTvView.java502 long recordingId = ContentUris.parseId(recordingUri); in playRecording() local
503 mRecordedProgram = mDvrDataManager.getRecordedProgram(recordingId); in playRecording()
/packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
DTunerSessionWorker.java252 private Long getDurationForRecording(String recordingId) { in getDurationForRecording() argument
268 Log.e(TAG, "meta file for recording was not found: " + recordingId); in getDurationForRecording()