HomeSort by relevance Sort by last modified time
    Searched defs:scheduledRecording (Results 1 - 2 of 2) sorted by null

  /packages/apps/TV/tests/unit/src/com/android/tv/dvr/
DvrDataManagerInMemoryImpl.java 27 import com.android.tv.dvr.ScheduledRecording.RecordingState;
43 private final Map<Long, ScheduledRecording> mScheduledRecordings = new HashMap<>();
66 private List<ScheduledRecording> getScheduledRecordingsPrograms() {
76 public List<ScheduledRecording> getAllScheduledRecordings() {
98 List<ScheduledRecording> temp = getNonStartedScheduledRecordings();
99 Collections.sort(temp, ScheduledRecording.START_TIME_COMPARATOR);
100 for (ScheduledRecording r : temp) {
109 public List<ScheduledRecording> getScheduledRecordings(Range<Long> period,
111 List<ScheduledRecording> temp = getScheduledRecordingsPrograms();
112 List<ScheduledRecording> result = new ArrayList<>()
    [all...]
  /packages/apps/TV/src/com/android/tv/guide/
ProgramManager.java 32 import com.android.tv.dvr.ScheduledRecording;
83 public final ScheduledRecording scheduledRecording;
107 private TableEntry(long channelId, Program program, ScheduledRecording scheduledRecording,
111 this.scheduledRecording = scheduledRecording;
194 for (ScheduledRecording r : mDvrDataManager.getAllScheduledRecordings()) {
232 public void onScheduledRecordingAdded(ScheduledRecording... scheduledRecordings) {
233 for (ScheduledRecording schedule : scheduledRecordings)
    [all...]

Completed in 63 milliseconds