HomeSort by relevance Sort by last modified time
    Searched refs:is_running_ (Results 1 - 5 of 5) sorted by null

  /art/runtime/gc/
task_processor.cc 28 is_running_(false),
53 if (!is_running_) {
64 if (!is_running_ || target_time <= current_time) {
103 return is_running_;
113 is_running_ = false;
120 is_running_ = true;
task_processor.h 79 bool is_running_ GUARDED_BY(lock_);
  /external/libchrome/base/timer/
timer.cc 72 is_running_(false) {
98 is_running_(false) {
110 return is_running_;
126 DCHECK(!is_running_);
147 is_running_ = false;
177 is_running_ = true;
198 is_running_ = true;
237 if (!is_running_)
timer.h 164 void set_is_running(bool running) { is_running_ = running; }
232 bool is_running_; member in class:base::Timer
  /external/libchrome/base/debug/
activity_tracker_unittest.cc 260 is_running_(false) {}
269 is_running_.store(true, std::memory_order_relaxed);
273 is_running_.store(false, std::memory_order_relaxed);
276 bool IsRunning() { return is_running_.load(std::memory_order_relaxed); }
283 std::atomic<bool> is_running_; member in class:base::debug::__anon27343::SimpleLockThread

Completed in 211 milliseconds