Lines Matching refs:next_
114 std::atomic<const JITCodeEntry*> next_; // Atomic to guarantee consistency after crash. member
263 writable->next_ = next; in InsertNewEntry()
274 NativeInfo::Writable(prev)->next_.store(entry, std::memory_order_release); in InsertNewEntry()
321 descriptor.free_entries_ = descriptor.free_entries_->next_.load(kNonRacingRelaxed); in CreateJITCodeEntryInternal()
352 const JITCodeEntry* next = entry->next_.load(kNonRacingRelaxed); in DeleteJITCodeEntryInternal()
360 NativeInfo::Writable(prev)->next_.store(next, std::memory_order_relaxed); in DeleteJITCodeEntryInternal()
385 writable_entry->next_.store(descriptor.free_entries_, kNonRacingRelaxed); in DeleteJITCodeEntryInternal()
404 const JITCodeEntry* next = entry->next_; // Save next pointer before we free the memory. in RemoveNativeDebugInfoForDex()
485 for (const JITCodeEntry* it = descriptor.head_; it != nullptr; it = it->next_) { in RepackEntries()
584 const JITCodeEntry* next = it->next_; in RemoveNativeDebugInfoForJit()
595 for (const JITCodeEntry* it = __jit_debug_descriptor.head_; it != nullptr; it = it->next_) { in GetJitMiniDebugInfoMemUsage()