Home
last modified time | relevance | path

Searched refs:is_cancelled_ (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/heap/cppgc/
Dtask-handle.h23 : is_cancelled_(std::make_shared<bool>(false)) {} in SingleThreadedHandle()
26 DCHECK(is_cancelled_); in Cancel()
27 *is_cancelled_ = true; in Cancel()
31 DCHECK(is_cancelled_); in IsCanceled()
32 return *is_cancelled_; in IsCanceled()
37 return is_cancelled_.get() && !*is_cancelled_.get();
41 std::shared_ptr<bool> is_cancelled_;
Dcompactor.cc478 is_cancelled_ = false; in InitializeIfShouldCompact()
486 is_cancelled_ = true; in CancelIfShouldNotCompact()
492 if (is_cancelled_ && compaction_worklists_) { in CompactSpacesIfEnabled()
Dcompactor.h51 bool is_cancelled_ = false; variable