Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/display/
DSmallAreaDetectionController.java108 final SparseArray<Float> appIdThresholdList = new SparseArray(allowPkgMap.size()); in updateSmallAreaDetection() local
113 appIdThresholdList.put(stage.getAppId(), threshold); in updateSmallAreaDetection()
117 final int[] appIds = new int[appIdThresholdList.size()]; in updateSmallAreaDetection()
118 final float[] thresholds = new float[appIdThresholdList.size()]; in updateSmallAreaDetection()
119 for (int i = 0; i < appIdThresholdList.size(); i++) { in updateSmallAreaDetection()
120 appIds[i] = appIdThresholdList.keyAt(i); in updateSmallAreaDetection()
121 thresholds[i] = appIdThresholdList.valueAt(i); in updateSmallAreaDetection()