Home
last modified time | relevance | path

Searched refs:addBubbles (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/storage/
DBubbleVolatileRepositoryTest.kt58 repository.addBubbles(bubbles) in testAddBubbles()
67 repository.addBubbles(listOf(bubble1)) in testAddBubbles()
74 repository.addBubbles(bubbles) in testRemoveBubbles()
88 repository.addBubbles(bubbles) in testAddAndRemoveBubblesWhenExceedingCapacity()
98 repository.addBubbles(listOf(bubble1)) in testAddAndRemoveBubblesWhenExceedingCapacity()
109 repository.addBubbles(listOf(bubble)) in testAddBubbleMatchesByKey()
115 repository.addBubbles(listOf(bubbleModified)) in testAddBubbleMatchesByKey()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleDataRepository.kt54 fun addBubble(@UserIdInt userId: Int, bubble: Bubble) = addBubbles(userId, listOf(bubble)) in <lambda>()
60 fun addBubbles(@UserIdInt userId: Int, bubbles: List<Bubble>) { in <lambda>() method in com.android.systemui.bubbles.BubbleDataRepository
62 val entities = transform(userId, bubbles).also(volatileRepository::addBubbles) in <lambda>()
130 volatileRepository.addBubbles(entities) in <lambda>()
DBubbleController.java1377 mDataRepository.addBubbles(mCurrentUserId, update.bubbles);
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/storage/
DBubbleVolatileRepository.kt58 fun addBubbles(bubbles: List<BubbleEntity>) { in <lambda>() method in com.android.systemui.bubbles.storage.BubbleVolatileRepository