Home
last modified time | relevance | path

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

/art/runtime/gc/
Dreference_queue.cc47 mirror::Reference* head = list_->GetPendingNext(); in EnqueueReference() local
48 DCHECK(head != nullptr); in EnqueueReference()
49 ref->SetPendingNext(head); in EnqueueReference()
180 mirror::Reference* const head = list_; in ForwardSoftReferences() local
181 mirror::Reference* ref = head; in ForwardSoftReferences()
188 } while (LIKELY(ref != head)); in ForwardSoftReferences()
/art/test/134-nodex2oat-nofallback/
Dcheck18 HEAD=$(head -n 1 "$2")
/art/test/370-dex-v37/
Dbuild24 if test -f classes.dex && head -c 7 classes.dex | grep -q 035; then
/art/runtime/gc/allocator/
Drosalloc.h269 Slot* head = reinterpret_cast<Slot*>(head_); in Verify() local
272 CHECK(head == nullptr); in Verify()
277 CHECK(head != nullptr); in Verify()
282 for (Slot* slot = head; slot != nullptr; slot = slot->Next()) { in Verify()
/art/runtime/
Dthread.cc325 static FrameIdToShadowFrame* FindFrameIdToShadowFrame(FrameIdToShadowFrame* head, in FindFrameIdToShadowFrame() argument
328 for (FrameIdToShadowFrame* record = head; record != nullptr; record = record->GetNext()) { in FindFrameIdToShadowFrame()
384 FrameIdToShadowFrame* head = tlsPtr_.frame_id_to_shadow_frame; in RemoveDebuggerShadowFrameMapping() local
385 if (head->GetFrameId() == frame_id) { in RemoveDebuggerShadowFrameMapping()
386 tlsPtr_.frame_id_to_shadow_frame = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
387 FrameIdToShadowFrame::Delete(head); in RemoveDebuggerShadowFrameMapping()
390 FrameIdToShadowFrame* prev = head; in RemoveDebuggerShadowFrameMapping()
391 for (FrameIdToShadowFrame* record = head->GetNext(); in RemoveDebuggerShadowFrameMapping()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1534 # v0: free list head
1577 # Load the free list head (v0).
1582 # Load the next pointer of the head and update the list head with the next pointer.