Home
last modified time | relevance | path

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

/art/runtime/jit/
Ddebugger_interface.cc150 std::atomic<const JITCodeEntry*> head_{nullptr}; // Head of link list of all entries. member
296 descriptor.head_.store(entry, std::memory_order_release); in InsertNewEntry()
334 const JITCodeEntry* next = descriptor.head_.load(kNonRacingRelaxed); // Insert at the head. in CreateJITCodeEntryInternal()
382 descriptor.head_.store(next, std::memory_order_relaxed); in DeleteJITCodeEntryInternal()
426 for (const JITCodeEntry* entry = __dex_debug_descriptor.head_; entry != nullptr; ) { in RemoveNativeDebugInfoForDex()
471 InsertNewEntry<JitNativeInfo>(zygote_head, descriptor.head_); in NativeDebugInfoPreFork()
476 InsertNewEntry<JitNativeInfo>(&descriptor.application_tail_entry_, descriptor.head_); in NativeDebugInfoPreFork()
501 for (const JITCodeEntry* it = descriptor.head_; it != nullptr; it = it->next_) { in RepackEntries()
624 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr;) { in RepackNativeDebugInfoForJitLocked()
644 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr; it = it->next_) { in GetJitMiniDebugInfoMemUsage()
[all …]
/art/runtime/gc/allocator/
Drosalloc.h144 SlotFreeList() : head_(0U), tail_(0), size_(0), padding_(0) {} in SlotFreeList()
146 return reinterpret_cast<Slot*>(head_); in Head()
161 Slot** headp = reinterpret_cast<Slot**>(&head_); in Remove()
196 Slot** headp = reinterpret_cast<Slot**>(&head_); in Add()
235 Slot** headp = reinterpret_cast<Slot**>(&head_); in Merge()
261 head_ = 0; in Reset()
269 Slot* head = reinterpret_cast<Slot*>(head_); in Verify()
298 uint64_t head_;
838 return OFFSETOF_MEMBER(SlotFreeList<false>, head_); in RunFreeListHeadOffset()