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

/frameworks/base/core/java/android/os/
H A DStrictMode.java545 final HashMap<Class, Integer> classInstanceLimit; field in class:StrictMode.VmPolicy
547 private VmPolicy(int mask, HashMap<Class, Integer> classInstanceLimit) { argument
548 if (classInstanceLimit == null) {
549 throw new NullPointerException("classInstanceLimit == null");
552 this.classInstanceLimit = classInstanceLimit;
595 mClassInstanceLimit = base.classInstanceLimit;
1449 if (policy.classInstanceLimit.size() == 0) {
1453 // Note: classInstanceLimit is immutable, so this is lock-free
1454 for (Map.Entry<Class, Integer> entry : policy.classInstanceLimit
[all...]

Completed in 100 milliseconds