Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/heap/
Dheap.cc5085 for (StrongRootsEntry* current = strong_roots_head_; current; in IterateRoots()
6195 for (StrongRootsEntry* current = strong_roots_head_; current; in TearDown()
6200 strong_roots_head_ = nullptr; in TearDown()
6793 entry->next = strong_roots_head_; in RegisterStrongRoots()
6795 if (strong_roots_head_) { in RegisterStrongRoots()
6796 DCHECK_NULL(strong_roots_head_->prev); in RegisterStrongRoots()
6797 strong_roots_head_->prev = entry; in RegisterStrongRoots()
6799 strong_roots_head_ = entry; in RegisterStrongRoots()
6819 if (strong_roots_head_ == entry) { in UnregisterStrongRoots()
6821 strong_roots_head_ = next; in UnregisterStrongRoots()
Dheap.h2326 StrongRootsEntry* strong_roots_head_ = nullptr; variable