OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CloseGuard
(Results
1 - 3
of
3
) sorted by null
/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();
55
* allocated after object construction,
CloseGuard
protection can
59
* private final
CloseGuard
guard =
CloseGuard
.get();
105
public final class
CloseGuard
{
108
* Instance used when
CloseGuard
is disabled to avoid allocation.
110
private static final
CloseGuard
NOOP = new
CloseGuard
();
[
all
...]
/frameworks/base/core/java/android/os/
StrictMode.java
37
import dalvik.system.
CloseGuard
;
798
// Sets up
CloseGuard
in Dalvik/libcore
800
if (!(
CloseGuard
.getReporter() instanceof AndroidCloseGuardReporter)) {
801
CloseGuard
.setReporter(new AndroidCloseGuardReporter());
803
CloseGuard
.setEnabled(enabled);
[
all
...]
/libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java
24
import dalvik.system.
CloseGuard
;
[
all
...]
Completed in 80 milliseconds