Searched defs:classInstanceLimit (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/os/
H A DStrictMode.java538 final HashMap<Class, Integer> classInstanceLimit; field in class:StrictMode.VmPolicy
540 private VmPolicy(int mask, HashMap<Class, Integer> classInstanceLimit) { argument
541 if (classInstanceLimit == null) {
542 throw new NullPointerException("classInstanceLimit == null");
545 this.classInstanceLimit = classInstanceLimit;
588 mClassInstanceLimit = base.classInstanceLimit;
1416 if (policy.classInstanceLimit.size() == 0) {
1420 // Note: classInstanceLimit is immutable, so this is lock-free
1421 for (Map.Entry<Class, Integer> entry : policy.classInstanceLimit
[all...]

Completed in 228 milliseconds