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

/frameworks/base/core/java/android/os/
H A DStrictMode.java547 final HashMap<Class, Integer> classInstanceLimit; field in class:StrictMode.VmPolicy
549 private VmPolicy(int mask, HashMap<Class, Integer> classInstanceLimit) { argument
550 if (classInstanceLimit == null) {
551 throw new NullPointerException("classInstanceLimit == null");
554 this.classInstanceLimit = classInstanceLimit;
597 mClassInstanceLimit = base.classInstanceLimit;
1451 if (policy.classInstanceLimit.size() == 0) {
1459 // Note: classInstanceLimit is immutable, so this is lock-free
1460 for (Map.Entry<Class, Integer> entry : policy.classInstanceLimit
[all...]

Completed in 10 milliseconds