Home
last modified time | relevance | path

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

/art/tools/ahat/src/main/com/android/ahat/heapdump/
DAhatArrayInstance.java229 List<Reference> refs = Collections.emptyList(); in getReferences() local
233 refs = new AbstractList<Reference>() { in getReferences()
255 return new SkipNullsIterator(refs); in getReferences()
332 List<AhatInstance> refs = getReverseReferences(); in getAssociatedBitmapInstance() local
333 if (refs.size() == 1) { in getAssociatedBitmapInstance()
334 AhatInstance ref = refs.get(0); in getAssociatedBitmapInstance()
343 List<AhatInstance> refs = getHardReverseReferences(); in getAssociatedClassForOverhead() local
344 if (refs.size() == 1) { in getAssociatedClassForOverhead()
345 AhatClassObj ref = refs.get(0).asClassObj(); in getAssociatedClassForOverhead()
DAhatPlaceHolderInstance.java73 List<Reference> refs = Collections.emptyList(); in getReferences() local
74 return refs; in getReferences()
DAhatInstance.java427 List<AhatInstance> refs = new ArrayList<AhatInstance>(); in getHardReverseReferences() local
430 refs.add(ref); in getHardReverseReferences()
433 return refs; in getHardReverseReferences()
445 List<AhatInstance> refs = new ArrayList<AhatInstance>(); in getSoftReverseReferences() local
448 refs.add(ref); in getSoftReverseReferences()
451 return refs; in getSoftReverseReferences()
DAhatClassObj.java123 List<Reference> refs = new AbstractList<Reference>() { in getReferences() local
142 return new SkipNullsIterator(refs); in getReferences()
/art/test/2009-structural-local-ref/
Dinfo.txt1 Tests structural redefinition with local-refs
3 Tests that using the structural redefinition updates JNI local-refs.
/art/test/1963-add-to-dex-classloader-in-memory/
Dexpected-stdout.txt7 -- call TestClass again, now with NewClass refs
16 -- call TestClass again, now with NewClass refs
/art/test/072-precise-gc/
Dexpected-stdout.txt1 Valid refs: 0
/art/test/1964-add-to-dex-classloader-file/
Dexpected-stdout.txt7 -- call TestClass again, now with NewClass refs
20 -- call TestClass again, now with NewClass refs
/art/runtime/gc/
Dreference_queue_test.cc54 std::set<mirror::Reference*> refs = {ref1.Get(), ref2.Get()}; in TEST_F() local
62 ASSERT_EQ(refs, dequeued); in TEST_F()
/art/tools/luci/config/
Dluci-scheduler.cfg24 refs: "refs/heads/master"
59 refs: "refs/heads/master"
94 refs: "refs/heads/master-art"
Dluci-milo.cfg7 refs: "refs/heads/master"
Dcr-buildbucket.cfg46 cipd_version: "refs/heads/master"
/art/runtime/interpreter/mterp/armng/
Dmain.S408 .macro SETUP_STACK_FRAME code_item, refs, fp, cfi_refs, load_ins
409 FETCH_CODE_ITEM_INFO \code_item, rINST, \refs, r4, \load_ins
413 add ip, \refs, rINST, lsl #1
422 add \refs, lr, \refs, lsl #2
423 add \refs, \refs, #12
424 add \fp, \refs, rINST, lsl #2
430 str ip, [\refs, #-4]
439 mov lr, \refs
1502 .macro LOOP_OVER_SHORTY_STORING_GPRS gpr_32, shorty, arg_offset, regs, refs, finished, if_long, is_…
1516 str \gpr_32, [\refs, \arg_offset]
[all …]
/art/runtime/interpreter/mterp/arm64ng/
Dmain.S380 .macro SETUP_STACK_FRAME code_item, refs, fp, cfi_refs, load_ins
396 add \refs, x14, ip2, lsl #2
397 add \refs, \refs, 28
398 and \refs, \refs, #(-__SIZEOF_POINTER__)
399 add \fp, \refs, ip, lsl #2
405 str x28, [\refs, #-8]
410 mov ip2, \refs
1427 .macro LOOP_OVER_SHORTY_STORING_GPRS gpr_64, gpr_32, shorty, arg_offset, regs, refs, finished
1440 str \gpr_32, [\refs, \arg_offset]
1524 .macro LOOP_OVER_INTs shorty, arg_offset, regs, refs, stack_ptr, finished
[all …]
/art/runtime/interpreter/mterp/x86_64ng/
Dmain.S358 .macro SETUP_STACK_FRAME code_item, refs, refs32, fp, cfi_refs, load_ins
362 leaq (\refs, %rbx, 2), %r11
375 leaq 24 + 4(%r10, \refs, 4), \refs
376 andq LITERAL(-__SIZEOF_POINTER__), \refs
377 leaq (\refs, %rbx, 4), \fp
383 movq %r11, -8(\refs)
389 movq \refs, %r10
711 .macro LOOP_OVER_SHORTY_STORING_GPRS gpr_reg64, gpr_reg32, shorty, arg_index, regs, refs, finished
726 movl REG_VAR(gpr_reg32), (REG_VAR(refs), REG_VAR(arg_index), 4)
783 .macro LOOP_OVER_INTs shorty, arg_index, regs, refs, stack_ptr, finished
[all …]
/art/openjdkjvmti/
Dti_heap.h98 art::HashObjPtr>& refs)
Devents.cc1638 auto& refs = internal_event_thread_refcount_[GetInternalEventIndex(event)]; in GetInternalEventThreadRefcount() local
1640 if (refs.find(target_ut) == refs.end()) { in GetInternalEventThreadRefcount()
1641 refs.insert({target_ut, 0}); in GetInternalEventThreadRefcount()
1643 return refs.at(target_ut); in GetInternalEventThreadRefcount()
/art/perfetto_hprof/
DAndroid.bp21 // https://android.googlesource.com/platform/external/perfetto/+/refs/heads/master/protos/perfetto/…
/art/libnativeloader/
DREADME.md34 [APEX](https://android.googlesource.com/platform/system/apex/+/refs/heads/master/docs/README.md),
/art/test/
DREADME.chroot.md25 …([`master-art`](https://android.googlesource.com/platform/manifest/+/refs/heads/master-art/default…
/art/runtime/interpreter/mterp/x86/
Darithmetic.S612 CLEAR_WIDE_REF %eax # clear refs in advance
/art/compiler/optimizing/
Dloop_optimization.cc542 ScopedArenaSet<ArrayReference> refs(loop_allocator_->Adapter(kArenaAllocLoopOptimization)); in LocalRun() local
550 vector_refs_ = &refs; in LocalRun()
/art/runtime/gc/collector/
Dconcurrent_copying.cc2124 std::vector<mirror::Object*> refs; in ProcessMarkStackOnce() local
2133 refs.push_back(p->AsMirrorPtr()); in ProcessMarkStackOnce()
2137 for (mirror::Object* ref : refs) { in ProcessMarkStackOnce()
/art/build/boot/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt3177 Ljava/lang/reflect/Proxy$KeyX;->refs:[Ljava/lang/ref/WeakReference;