OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:recordingid
(Results
1 - 6
of
6
) sorted by null
/packages/apps/TV/src/com/android/tv/dvr/
DvrDataManager.java
101
* Returns the scheduled recording program with the given
recordingId
or null if is not found.
104
ScheduledRecording getScheduledRecording(long
recordingId
);
114
* Returns the recorded program with the given
recordingId
or null if is not found.
117
RecordedProgram getRecordedProgram(long
recordingId
);
DvrPlayActivity.java
38
long
recordingId
= getIntent().getLongExtra(ScheduledRecording.RECORDING_ID_EXTRA, 0);
39
ScheduledRecording scheduledRecording = dvrDataManager.getScheduledRecording(
recordingId
);
DvrDataManagerImpl.java
234
public ScheduledRecording getScheduledRecording(long
recordingId
) {
236
return mScheduledRecordings.get(
recordingId
);
252
public RecordedProgram getRecordedProgram(long
recordingId
) {
253
return mRecordedPrograms.get(
recordingId
);
DvrDataManagerInMemoryImpl.java
200
public RecordedProgram getRecordedProgram(long
recordingId
) {
201
return mRecordedPrograms.get(
recordingId
);
/packages/apps/TV/src/com/android/tv/ui/
TunableTvView.java
502
long
recordingId
= ContentUris.parseId(recordingUri);
503
mRecordedProgram = mDvrDataManager.getRecordedProgram(
recordingId
);
[
all
...]
/packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
TunerSessionWorker.java
252
private Long getDurationForRecording(String
recordingId
) {
268
Log.e(TAG, "meta file for recording was not found: " +
recordingId
);
[
all
...]
Completed in 915 milliseconds