Home
last modified time | relevance | path

Searched refs:weak (Results 1 – 14 of 14) sorted by relevance

/art/test/074-gc-thrash/src/
DMain.java201 private static WeakReference weak[] = new WeakReference[MAX_DEPTH]; field in Deep
231 if (weak[i].get() != null) { in run()
253 if (strong[i] != weak[i].get()) { in checkStringReferences()
255 ", weak=" + weak[i].get()); in checkStringReferences()
304 weak[depth] = new WeakReference(funStr); in dive()
/art/benchmark/jobject-benchmark/
Dinfo.txt7 Decoding local, weak, global, handle scope jobjects.
/art/test/1974-resize-array/
Dexpected-stdout.txt13 val is: [weak, ref] resize +3
14 val is: [weak, ref, null, null, null, null, null]
63 Test weak jni-ref
/art/test/common/
Dgtest_main.cc38 extern "C" __attribute__((visibility("default"))) __attribute__((weak)) void ArtTestGlobalInit();
/art/test/903-hello-tagging/src/art/
DTest903.java31 WeakReference<Object> weak = test(); in doTest() local
36 if (weak.get() != null) { in doTest()
/art/runtime/
Dintern_table.cc240 ObjPtr<mirror::String> weak = weak_interns_.Find(s, hash); in Insert() local
241 if (weak != nullptr) { in Insert()
244 RemoveWeak(weak, hash); in Insert()
245 return InsertStrong(weak, hash); in Insert()
247 return weak; in Insert()
Dmutator_gc_coord.md198 One common use of WaitHoldingLocks is to wait for weak reference processing.
200 weak reference processing is disabled; the GC may not issue further nonempty
201 checkpoints or suspend requests until weak reference processing has been
210 the world to disable weak reference access. During the stop-the-world phase, W1
211 cannot yet be waiting for weak-reference access. Thus there is no danger of
222 operation that involves a weak reference access, while nonempty checkpoints do.
Dthread.cc128 extern "C" __attribute__((weak)) void* __hwasan_tag_pointer(const volatile void* p,
/art/tools/ahat/
DREADME.txt16 --retained [strong | soft | finalizer | weak | phantom | unreachable]
72 Distinguish between soft/weak/phantom/etc references.
96 Don't include weak references in sample paths.
/art/tools/ahat/src/test/com/android/ahat/
DInstanceTest.java512 AhatInstance weak = dump.getDumpedAhatInstance("aWeakReference");
514 assertTrue(obj.getReverseReferences().contains(weak));
516 assertFalse(obj.getHardReverseReferences().contains(weak));
518 assertTrue(obj.getSoftReverseReferences().contains(weak));
/art/runtime/arch/riscv64/
Dcontext_riscv64.cc26 extern "C" __attribute__((weak)) void __hwasan_handle_longjmp(const void* sp_dst);
/art/runtime/arch/arm64/
Dcontext_arm64.cc31 extern "C" __attribute__((weak)) void __hwasan_handle_longjmp(const void* sp_dst);
/art/sigchainlib/
Dsigchain.cc426 __attribute__((weak)) extern "C" bool android_handle_signal(int signal_number,
/art/tools/
Dlibcore_failures.txt151 description: "Non-deterministic test because of a dependency on weak ref collection.",