HomeSort by relevance Sort by last modified time
    Searched defs:CloseGuard (Results 1 - 6 of 6) sorted by null

  /external/conscrypt/src/openjdk/java/dalvik/system/
CloseGuard.java 24 public class CloseGuard {
25 private CloseGuard() {
28 public static CloseGuard get() {
29 return new CloseGuard();
  /external/conscrypt/src/stub/java/dalvik/system/
CloseGuard.java 21 public class CloseGuard {
22 private CloseGuard() {}
24 public static CloseGuard get() {
  /libcore/dalvik/src/test/java/dalvik/system/
CloseGuardMonitor.java 18 import dalvik.system.CloseGuard.Reporter;
27 * Provides support for detecting issues found by {@link CloseGuard} from within tests.
29 * <p>This is a best effort as it relies on both {@link CloseGuard} being enabled and being able to
40 * The {@link Reporter} instance used to receive warnings from {@link CloseGuard}.
45 * The list of allocation sites that {@link CloseGuard} has reported as not being released.
56 System.logI("Creating CloseGuard monitor");
59 closeGuardReporter = CloseGuard.getReporter();
62 CloseGuard.setReporter(new Reporter() {
72 * Check to see whether any resources monitored by {@link CloseGuard} were not released before
103 CloseGuard.setReporter(closeGuardReporter)
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
CloseGuard.java 20 * CloseGuard is a mechanism for flagging implicit finalizer cleanup of
27 * private final CloseGuard guard = CloseGuard.get();
56 * allocated after object construction, CloseGuard protection can
60 * private final CloseGuard guard = CloseGuard.get();
101 public final class CloseGuard {
104 * Instance used when CloseGuard is disabled to avoid allocation.
106 private static final CloseGuard NOOP = new CloseGuard();
    [all...]
  /frameworks/base/core/java/android/os/
StrictMode.java 40 import dalvik.system.CloseGuard;
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 162 milliseconds