Home
last modified time | relevance | path

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

/art/runtime/jit/
Ddebugger_interface.cc153 std::atomic<const JITCodeEntry*> head_{nullptr}; // Head of link list of all entries. member
302 descriptor.head_.store(entry, std::memory_order_release); in InsertNewEntry()
340 const JITCodeEntry* next = descriptor.head_.load(kNonRacingRelaxed); // Insert at the head. in CreateJITCodeEntryInternal()
388 descriptor.head_.store(next, std::memory_order_relaxed); in DeleteJITCodeEntryInternal()
436 for (const JITCodeEntry* entry = __dex_debug_descriptor.head_; entry != nullptr; ) { in RemoveNativeDebugInfoForDex()
481 InsertNewEntry<JitNativeInfo>(zygote_head, descriptor.head_); in NativeDebugInfoPreFork()
486 InsertNewEntry<JitNativeInfo>(&descriptor.application_tail_entry_, descriptor.head_); in NativeDebugInfoPreFork()
511 for (const JITCodeEntry* it = descriptor.head_; it != nullptr; it = it->next_) { in RepackEntries()
637 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr;) { in RepackNativeDebugInfoForJitLocked()
657 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr; it = it->next_) { in GetJitMiniDebugInfoMemUsage()
[all …]
/art/runtime/gc/allocator/
Drosalloc.h142 SlotFreeList() : head_(0U), tail_(0), size_(0), padding_(0) {} in SlotFreeList()
144 return reinterpret_cast<Slot*>(head_); in Head()
159 Slot** headp = reinterpret_cast<Slot**>(&head_); in Remove()
194 Slot** headp = reinterpret_cast<Slot**>(&head_); in Add()
233 Slot** headp = reinterpret_cast<Slot**>(&head_); in Merge()
259 head_ = 0; in Reset()
267 Slot* head = reinterpret_cast<Slot*>(head_); in Verify()
296 uint64_t head_;
840 return OFFSETOF_MEMBER(SlotFreeList<false>, head_); in RunFreeListHeadOffset()