Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/display/
H A DSmallAreaDetectionController.java123 final SparseArray<Float> uidThresholdList = new SparseArray<>(); in updateSmallAreaDetection() local
126 updateUidListForAllUsers(uidThresholdList, pkg, threshold); in updateSmallAreaDetection()
129 final int[] uids = new int[uidThresholdList.size()]; in updateSmallAreaDetection()
130 final float[] thresholds = new float[uidThresholdList.size()]; in updateSmallAreaDetection()
131 for (int i = 0; i < uidThresholdList.size(); i++) { in updateSmallAreaDetection()
132 uids[i] = uidThresholdList.keyAt(i); in updateSmallAreaDetection()
133 thresholds[i] = uidThresholdList.valueAt(i); in updateSmallAreaDetection()