Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/storage/
DBubbleVolatileRepositoryTest.kt164 val ret = repository.removeBubblesForUser(user0.identifier, -1) in testRemoveBubblesForUser()
179 val ret = repository.removeBubblesForUser(user10_managed.identifier, user0.identifier) in testRemoveBubblesForUser_parentUserRemoved()
194 val ret = repository.removeBubblesForUser(user11.identifier, -1) in testRemoveBubblesForUser_withoutBubbles()
267 repository.removeBubblesForUser(-1, 0) in testRemoveBubbleForUser_invalidInputDoesntCrash()
268 repository.removeBubblesForUser(-1, -1) in testRemoveBubbleForUser_invalidInputDoesntCrash()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleDataRepository.kt90 fun removeBubblesForUser(@UserIdInt userId: Int, @UserIdInt parentId: Int) { in <lambda>() method
91 if (volatileRepository.removeBubblesForUser(userId, parentId)) persistToDisk() in <lambda>()
DBubbleController.java691 mBubbleData.removeBubblesForUser(removedUserId); in onUserRemoved()
695 mDataRepository.removeBubblesForUser(removedUserId, parentUserId); in onUserRemoved()
DBubbleData.java601 public void removeBubblesForUser(int userId) { in removeBubblesForUser() method in BubbleData
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/storage/
DBubbleVolatileRepository.kt108 fun removeBubblesForUser(@UserIdInt userId: Int, @UserIdInt parentUserId: Int): Boolean { in <lambda>() method
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubbleDataTest.java1167 mBubbleData.removeBubblesForUser(1); in test_removeBubblesForUser()