Home
last modified time | relevance | path

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

/external/v8/src/execution/
Disolate.cc2660 while (managed_ptr_destructors_head_) { in ThrowInternal()
2661 ManagedPtrDestructor* l = managed_ptr_destructors_head_; in ThrowInternal()
2663 managed_ptr_destructors_head_ = nullptr; in ThrowInternal()
2685 if (managed_ptr_destructors_head_) { in ThrowInternal()
2686 managed_ptr_destructors_head_->prev_ = destructor; in ThrowInternal()
2688 destructor->next_ = managed_ptr_destructors_head_; in ThrowInternal()
2689 managed_ptr_destructors_head_ = destructor; in ThrowInternal()
2697 DCHECK_EQ(destructor, managed_ptr_destructors_head_); in ThrowInternal()
2698 managed_ptr_destructors_head_ = destructor->next_; in ThrowInternal()
Disolate.h1963 ManagedPtrDestructor* managed_ptr_destructors_head_ = nullptr; variable