Home
last modified time | relevance | path

Searched refs:PositionHolder (Results 1 – 3 of 3) sorted by relevance

/packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/
DDvrStorageManager.java226 private ArrayList<BufferManager.PositionHolder> readOldIndexFile(File indexFile) in readOldIndexFile()
228 ArrayList<BufferManager.PositionHolder> indices = new ArrayList<>(); in readOldIndexFile()
233 indices.add(new BufferManager.PositionHolder(positionUs, positionUs, 0)); in readOldIndexFile()
239 private ArrayList<BufferManager.PositionHolder> readNewIndexFile(File indexFile) in readNewIndexFile()
241 ArrayList<BufferManager.PositionHolder> indices = new ArrayList<>(); in readNewIndexFile()
248 indices.add(new BufferManager.PositionHolder(positionUs, basePositionUs, offset)); in readNewIndexFile()
255 public ArrayList<BufferManager.PositionHolder> readIndexFile(String trackId) in readIndexFile()
DBufferManager.java189 public static class PositionHolder { class in BufferManager
209 public PositionHolder(long positionUs, long basePositionUs, int offset) { in PositionHolder() method in BufferManager.PositionHolder
267 ArrayList<PositionHolder> readIndexFile(String trackId) throws IOException; in readIndexFile()
426 ArrayList<PositionHolder> keyPositions = mStorageManager.readIndexFile(trackId); in loadTrackFromStorage()
438 for (PositionHolder position : keyPositions) { in loadTrackFromStorage()
DTrickplayStorageManager.java135 public ArrayList<BufferManager.PositionHolder> readIndexFile(String trackId) { in readIndexFile()