Searched refs:mTunableLookup (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerServiceImpl.java64 private final HashMap<String, Set<Tunable>> mTunableLookup = new HashMap<>(); field in class:TunerServiceImpl
162 if (!mTunableLookup.containsKey(key)) {
163 mTunableLookup.put(key, new ArraySet<Tunable>());
165 mTunableLookup.get(key).add(tunable);
182 for (Set<Tunable> list : mTunableLookup.values()) {
202 Set<Tunable> tunables = mTunableLookup.get(key);
213 for (String key : mTunableLookup.keySet()) {
216 for (Tunable tunable : mTunableLookup.get(key)) {
230 for (String key : mTunableLookup.keySet()) {

Completed in 198 milliseconds