Home
last modified time | relevance | path

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

/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/storage/
H A DBubbleVolatileRepository.kt86 val overflowCount = entities.size + bubblesInRange.size - capacity regex
87 if (overflowCount > 0) {
89 uncache(entities.take(overflowCount))
90 entities = entities.drop(overflowCount).toMutableList()
/aosp12/packages/providers/TvProvider/src/com/android/providers/tv/
H A DEpgDataCleanupService.java129 int overflowCount = totalCount - maxEntryCount; in clearOverflowWatchHistory() local
130 if (overflowCount <= 0) { in clearOverflowWatchHistory()
133 if (!cursor.moveToPosition(overflowCount - 1)) { in clearOverflowWatchHistory()
/aosp12/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp339 size_t preparedCount, underflowCount, overflowCount, startCount, finishedCount; in checkBuffering() local
340 preparedCount = underflowCount = overflowCount = startCount = finishedCount = 0; in checkBuffering()
369 ++overflowCount; in checkBuffering()
377 ++overflowCount; in checkBuffering()
389 *overflow = (overflowCount == numTracks); in checkBuffering()