Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationListControllerTest.java132 assertTrue(entry.mActiveAppOps.contains(AppOpsManager.OP_CAMERA)); in testAppOps_appOpAddedToForegroundNotif()
170 assertEquals(expected.size(), entry.mActiveAppOps.size()); in testAppOps_addNotificationWithExistingAppOps()
172 assertTrue("Entry missing op " + op, entry.mActiveAppOps.contains(op)); in testAppOps_addNotificationWithExistingAppOps()
192 assertEquals(0, entry.mActiveAppOps.size()); in testAdd_addNotificationWithNoExistingAppOps()
214 assertEquals(0, entry.mActiveAppOps.size()); in testAdd_addNonForegroundNotificationWithExistingAppOps()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DNotificationDataTest.java173 mNotificationData.get(mRow.getEntry().key).mActiveAppOps.contains(op)); in testAllRelevantNotisTaggedWithAppOps()
175 mNotificationData.get(row2.getEntry().key).mActiveAppOps.contains(op)); in testAllRelevantNotisTaggedWithAppOps()
177 mNotificationData.get(diffPkg.getEntry().key).mActiveAppOps.contains(op)); in testAllRelevantNotisTaggedWithAppOps()
201 mNotificationData.get(mRow.getEntry().key).mActiveAppOps.contains(OP_CAMERA)); in testAppOpsRemoval()
203 mNotificationData.get(row2.getEntry().key).mActiveAppOps.contains(OP_CAMERA)); in testAppOpsRemoval()
206 .mActiveAppOps.contains(OP_ACCEPT_HANDOVER)); in testAppOpsRemoval()
209 .mActiveAppOps.contains(OP_ACCEPT_HANDOVER)); in testAppOpsRemoval()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationData.java235 entry.mActiveAppOps.add(appOp); in updateAppOp()
237 entry.mActiveAppOps.remove(appOp); in updateAppOp()
DNotificationEntry.java133 public ArraySet<Integer> mActiveAppOps = new ArraySet<>(3); field in NotificationEntry
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManager.java272 if (!row.getEntry().mActiveAppOps.isEmpty()) { in initializeAppOpsInfo()
273 appOpsInfoView.bindGuts(pmUser, onSettingsClick, sbn, row.getEntry().mActiveAppOps); in initializeAppOpsInfo()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java438 row.showAppOpsIcons(entry.mActiveAppOps); in updateRowStatesInternal()