Home
last modified time | relevance | path

Searched refs:removeBubblesForUser (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/storage/
H A DBubbleVolatileRepositoryTest.kt166 val ret = repository.removeBubblesForUser(user0.identifier, -1)
182 val ret = repository.removeBubblesForUser(user10_managed.identifier, user0.identifier)
198 val ret = repository.removeBubblesForUser(user11.identifier, -1)
275 repository.removeBubblesForUser(-1, 0)
276 repository.removeBubblesForUser(-1, -1)
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbleDataRepository.kt90 fun removeBubblesForUser(@UserIdInt userId: Int, @UserIdInt parentId: Int) { regex
91 if (volatileRepository.removeBubblesForUser(userId, parentId)) persistToDisk()
H A DBubbleController.java642 mBubbleData.removeBubblesForUser(removedUserId); in onUserRemoved()
646 mDataRepository.removeBubblesForUser(removedUserId, parentUserId); in onUserRemoved()
H A DBubbleData.java574 public void removeBubblesForUser(int userId) { in removeBubblesForUser() method in BubbleData
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/storage/
H A DBubbleVolatileRepository.kt108 fun removeBubblesForUser(@UserIdInt userId: Int, @UserIdInt parentUserId: Int): Boolean { regex
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
H A DBubbleDataTest.java1088 mBubbleData.removeBubblesForUser(1); in test_removeBubblesForUser()