Home
last modified time | relevance | path

Searched refs:mSmallAreaDetectionController (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/display/
DSmallAreaDetectionControllerTest.java61 private SmallAreaDetectionController mSmallAreaDetectionController; field in SmallAreaDetectionControllerTest
81 mSmallAreaDetectionController = spy(new SmallAreaDetectionController( in setup()
84 doNothing().when(mSmallAreaDetectionController).updateSmallAreaDetection(any(), any()); in setup()
90 mSmallAreaDetectionController.updateAllowlist(property); in testUpdateAllowlist_validProperty()
94 verify(mSmallAreaDetectionController).updateSmallAreaDetection(eq(resultAppIdArray), in testUpdateAllowlist_validProperty()
101 mSmallAreaDetectionController.updateAllowlist(property); in testUpdateAllowlist_includeInvalidRow()
105 verify(mSmallAreaDetectionController).updateSmallAreaDetection(eq(resultAppIdArray), in testUpdateAllowlist_includeInvalidRow()
113 mSmallAreaDetectionController.updateAllowlist(property); in testUpdateAllowlist_includeNotInstalledPkg()
117 verify(mSmallAreaDetectionController).updateSmallAreaDetection(eq(resultAppIdArray), in testUpdateAllowlist_includeNotInstalledPkg()
124 mSmallAreaDetectionController.updateAllowlist(property); in testUpdateAllowlist_invalidProperty()
[all …]
/frameworks/base/services/core/java/com/android/server/display/
DDisplayManagerService.java499 private SmallAreaDetectionController mSmallAreaDetectionController; field in DisplayManagerService
820 mSmallAreaDetectionController = (mFlags.isSmallAreaDetectionEnabled()) in systemReady()
3372 if (mSmallAreaDetectionController != null) { in dumpInternal()
3373 mSmallAreaDetectionController.dump(pw); in dumpInternal()