Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/display/
DSmallAreaDetectionController.java74 final Map<String, Float> allowPkgMap = new ArrayMap<>(); in updateAllowlist() local
87 allowPkgMap.putAll(mAllowPkgMap); in updateAllowlist()
89 updateSmallAreaDetection(allowPkgMap); in updateAllowlist()
107 private void updateSmallAreaDetection(Map<String, Float> allowPkgMap) { in updateSmallAreaDetection() argument
108 final SparseArray<Float> appIdThresholdList = new SparseArray(allowPkgMap.size()); in updateSmallAreaDetection()
109 for (String pkg : allowPkgMap.keySet()) { in updateSmallAreaDetection()
110 final float threshold = allowPkgMap.get(pkg); in updateSmallAreaDetection()