Home
last modified time | relevance | path

Searched refs:is_active_ (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/base/metrics/
Dhistogram_snapshot_manager.cc23 MakeActive(std::atomic<bool>* is_active) : is_active_(is_active) { in MakeActive()
24 bool was_active = is_active_->exchange(true, std::memory_order_relaxed); in MakeActive()
27 ~MakeActive() { is_active_->store(false, std::memory_order_relaxed); } in ~MakeActive()
30 std::atomic<bool>* is_active_; member in base::__anon3da4b4590111::MakeActive
41 is_active_.store(false, std::memory_order_relaxed); in HistogramSnapshotManager()
76 MakeActive make_active(&is_active_); in PrepareSamples()
Dhistogram_snapshot_manager.h83 std::atomic<bool> is_active_; variable
/external/v8/src/debug/
Ddebug.h334 inline bool is_active() const { return is_active_; } in is_active()
353 return reinterpret_cast<Address>(&is_active_); in is_active_address()
394 return is_suppressed_ || !is_active_ || in ignore_events()
459 bool is_active_; variable
Ddebug.cc83 : is_active_(false), in Debug()
1902 if (is_active == is_active_) return; in UpdateState()
1913 is_active_ = is_active; in UpdateState()