Home
last modified time | relevance | path

Searched refs:active_ (Results 1 – 10 of 10) sorted by relevance

/third_party/node/deps/v8/src/heap/
Dmarking-worklist.cc113 active_ = std::move(shared); in Local()
124 active_ = std::move(*active_owner_); in Local()
130 DCHECK(active_.IsLocalEmpty()); in ~Local()
141 active_.Publish(); in Publish()
157 if (!active_.IsLocalEmpty() || !on_hold_.IsLocalEmpty() || in IsEmpty()
158 !active_.IsGlobalEmpty() || !on_hold_.IsGlobalEmpty()) { in IsEmpty()
183 if (!active_.IsLocalEmpty() && active_.IsGlobalEmpty()) { in ShareWork()
184 active_.Publish(); in ShareWork()
197 ? &active_ in MergeOnHold()
208 return active_.Pop(object); in PopContext()
Dmarking-worklist-inl.h32 void MarkingWorklists::Local::Push(HeapObject object) { active_.Push(object); } in Push()
35 if (active_.Pop(object)) return true; in Pop()
88 *active_owner_ = std::move(active_); in SwitchToContext()
91 active_ = std::move(*worklist); in SwitchToContext()
Dmarking-worklist.h200 MarkingWorklist::Local active_; variable
/third_party/cef/libcef/browser/osr/
Dhost_display_client_osr.cc50 bool active_ = false; member in CefLayeredWindowUpdaterOSR
63 active_ = active; in SetActive()
91 if (active_) { in Draw()
111 active_ = active; in SetActive()
113 layered_window_updater_->SetActive(active_); in SetActive()
136 layered_window_updater_->SetActive(active_); in CreateLayeredWindowUpdater()
Dhost_display_client_osr.h46 bool active_ = false; variable
/third_party/node/src/
Dsignal_wrap.cc98 if (active_) { in Close()
100 active_ = false; in Close()
134 CHECK(!wrap->active_); in Start()
135 wrap->active_ = true; in Start()
147 if (wrap->active_) { in Stop()
148 wrap->active_ = false; in Stop()
157 bool active_ = false; member in node::__anonba80cb1a0111::SignalWrap
Dutil.h560 bool active_; member
562 explicit OnScopeLeaveImpl(Fn&& fn) : fn_(std::move(fn)), active_(true) {} in OnScopeLeaveImpl()
563 ~OnScopeLeaveImpl() { if (active_) fn_(); } in ~OnScopeLeaveImpl()
568 : fn_(std::move(other.fn_)), active_(other.active_) { in OnScopeLeaveImpl()
569 other.active_ = false; in OnScopeLeaveImpl()
/third_party/node/deps/v8/src/libsampler/
Dsampler.h55 bool IsActive() const { return active_.load(std::memory_order_relaxed); } in IsActive()
84 active_.store(value, std::memory_order_relaxed); in SetActive()
92 std::atomic_bool active_{false};
/third_party/ffmpeg/libavcodec/
Dcbs_h2645.c680 if (priv->ps_var[id] == priv->active_ ## ps_var) \
681 priv->active_ ## ps_var = NULL ; \
/third_party/node/deps/v8/src/init/
Dbootstrapper.cc312 BootstrapperActive active_; member in v8::internal::Genesis
6291 : isolate_(isolate), active_(isolate->bootstrapper()) { in Genesis()
6430 : isolate_(isolate), active_(isolate->bootstrapper()) { in Genesis()