Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/heap/
Dsafepoint.h36 for (LocalHeap* current = local_heaps_head_; current; in IterateLocalHeaps()
114 if (local_heaps_head_) local_heaps_head_->prev_ = local_heap; in AddLocalHeap()
116 local_heap->next_ = local_heaps_head_; in AddLocalHeap()
117 local_heaps_head_ = local_heap; in AddLocalHeap()
132 local_heaps_head_ = local_heap->next_; in RemoveLocalHeap()
144 LocalHeap* local_heaps_head_; variable
Dsafepoint.cc30 : heap_(heap), local_heaps_head_(nullptr), active_safepoint_scopes_(0) {} in IsolateSafepoint()
134 DCHECK_NOT_NULL(local_heaps_head_); in SetSafepointRequestedFlags()
136 for (LocalHeap* local_heap = local_heaps_head_; local_heap; in SetSafepointRequestedFlags()
184 for (LocalHeap* local_heap = local_heaps_head_; local_heap; in ClearSafepointRequestedFlags()
265 for (LocalHeap* current = local_heaps_head_; current; in Iterate()
272 DCHECK_EQ(local_heaps_head_, heap_->main_thread_local_heap()); in AssertMainThreadIsOnlyThread()