Home
last modified time | relevance | path

Searched refs:updateSmallAreaDetection (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/display/
H A DSmallAreaDetectionControllerTest.java94 doNothing().when(mSmallAreaDetectionController).updateSmallAreaDetection(any(), any()); in setup()
104 verify(mSmallAreaDetectionController).updateSmallAreaDetection(eq(resultUidArray), in testUpdateAllowlist_validProperty()
115 verify(mSmallAreaDetectionController).updateSmallAreaDetection(eq(resultUidArray), in testUpdateAllowlist_includeInvalidRow()
127 verify(mSmallAreaDetectionController).updateSmallAreaDetection(eq(resultUidArray), in testUpdateAllowlist_includeNotInstalledPkg()
136 verify(mSmallAreaDetectionController, never()).updateSmallAreaDetection(any(), any()); in testUpdateAllowlist_invalidProperty()
/aosp14/frameworks/base/services/core/java/com/android/server/display/
H A DSmallAreaDetectionController.java89 updateSmallAreaDetection(); in updateAllowlist()
118 private void updateSmallAreaDetection() { in updateSmallAreaDetection() method in SmallAreaDetectionController
135 updateSmallAreaDetection(uids, thresholds); in updateSmallAreaDetection()
139 void updateSmallAreaDetection(int[] uids, float[] thresholds) { in updateSmallAreaDetection() method in SmallAreaDetectionController
/aosp14/frameworks/base/services/core/jni/
H A Dcom_android_server_display_SmallAreaDetectionController.cpp48 SurfaceComposerClient::updateSmallAreaDetection(uidVector, thresholdVector); in nativeUpdateSmallAreaDetection()