HomeSort by relevance Sort by last modified time
    Searched defs:is_active_ (Results 1 - 4 of 4) sorted by null

  /external/libchrome/base/metrics/
histogram_snapshot_manager.h 83 std::atomic<bool> is_active_; member in class:base::final
histogram_snapshot_manager.cc 23 MakeActive(std::atomic<bool>* is_active) : is_active_(is_active) {
24 bool was_active = is_active_->exchange(true, std::memory_order_relaxed);
27 ~MakeActive() { is_active_->store(false, std::memory_order_relaxed); }
30 std::atomic<bool>* is_active_; member in class:base::__anon27443::MakeActive
41 is_active_.store(false, std::memory_order_relaxed);
76 MakeActive make_active(&is_active_);
  /art/runtime/gc/collector/
concurrent_copying.h 143 return is_active_;
365 bool is_active_; // True while the collection is ongoing. member in class:art::gc::collector::ConcurrentCopying
  /external/v8/src/debug/
debug.h 334 inline bool is_active() const { return is_active_; }
353 return reinterpret_cast<Address>(&is_active_);
394 return is_suppressed_ || !is_active_ ||
459 bool is_active_; member in class:v8::internal::Debug

Completed in 95 milliseconds