Home
last modified time | relevance | path

Searched refs:mRecordedPrograms (Results 1 – 2 of 2) sorted by relevance

/packages/apps/TV/src/com/android/tv/dvr/
DDvrDataManagerInMemoryImpl.java46 private final Map<Long, RecordedProgram> mRecordedPrograms = new HashMap<>(); field in DvrDataManagerInMemoryImpl
64 return new ArrayList<>(mRecordedPrograms.values()); in getRecordedPrograms()
116 if (mRecordedPrograms.containsKey(id)) { in updateRecordedProgram()
117 mRecordedPrograms.put(id, r); in updateRecordedProgram()
125 mRecordedPrograms.remove(scheduledRecording.getId()); in removeRecordedProgram()
149 mRecordedPrograms.put(recordedProgram.getId(), recordedProgram); in addRecordedProgramInternal()
201 return mRecordedPrograms.get(recordingId); in getRecordedProgram()
DDvrDataManagerImpl.java65 private final HashMap<Long, RecordedProgram> mRecordedPrograms = new HashMap<>(); field in DvrDataManagerImpl
94 RecordedProgram old = mRecordedPrograms.remove(id); in onObservedChange()
101 RecordedProgram old = mRecordedPrograms.put(id, recordedProgram); in onObservedChange()
176 return new ArrayList<>(mRecordedPrograms.values()); in getRecordedPrograms()
253 return mRecordedPrograms.get(recordingId); in getRecordedProgram()
371 mRecordedPrograms.put(r.getId(), r); in onPostExecute()