Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/camera2/params/
DDynamicRangeProfiles.java170 private final HashMap<Long, Set<Long>> mProfileMap = new HashMap<>(); field in DynamicRangeProfiles
219 mProfileMap.put(elements[i], profiles); in DynamicRangeProfiles()
226 for(Long profile : mProfileMap.keySet()) { in DynamicRangeProfiles()
227 if (mProfileMap.get(profile).isEmpty() || mProfileMap.get(profile).contains(STANDARD)) { in DynamicRangeProfiles()
232 mProfileMap.put(STANDARD, standardConstraints); in DynamicRangeProfiles()
258 return Collections.unmodifiableSet(mProfileMap.keySet()); in getSupportedProfiles()
287 Set<Long> ret = mProfileMap.get(profile); in getProfileCaptureRequestConstraints()