Searched refs:mWatchHistory (Results 1 – 1 of 1) sorted by relevance
37 private final Deque<WatchedProgram> mWatchHistory; field in ChannelRecord47 mWatchHistory = new ArrayDeque<>(); in ChannelRecord()69 WatchedProgram p = mWatchHistory.peekLast(); in getLastWatchEndTimeMs()88 return mWatchHistory.toArray(new WatchedProgram[mWatchHistory.size()]); in getWatchHistory()92 mWatchHistory.offer(p); in logWatchHistory()94 if (mWatchHistory.size() > MAX_HISTORY_SIZE) { in logWatchHistory()95 WatchedProgram program = mWatchHistory.poll(); in logWatchHistory()