Home
last modified time | relevance | path

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

/external/openscreen/discovery/public/
Ddns_sd_service_watcher.h78 OSP_DCHECK(!is_running_); in StartDiscovery()
79 is_running_ = true; in StartDiscovery()
86 OSP_DCHECK(is_running_); in StopDiscovery()
87 is_running_ = false; in StopDiscovery()
93 bool is_running() const { return is_running_; } in is_running()
101 if (!is_running_) { in ForceRefresh()
116 if (!is_running_) { in DiscoverNow()
218 bool is_running_ = false; variable
/external/libchrome/base/timer/
Dtimer.cc72 is_running_(false) { in Timer()
98 is_running_(false) { in Timer()
110 return is_running_; in IsRunning()
126 DCHECK(!is_running_); in SetTaskRunner()
147 is_running_ = false; in Stop()
177 is_running_ = true; in Reset()
198 is_running_ = true; in PostNewScheduledTask()
237 if (!is_running_) in RunScheduledTask()
Dtimer.h164 void set_is_running(bool running) { is_running_ = running; } in set_is_running()
232 bool is_running_; variable
/external/openscreen/platform/impl/
Dtask_runner.cc37 is_running_(false), in TaskRunnerImpl()
77 OSP_DCHECK(!is_running_); in RunUntilStopped()
79 is_running_ = true; in RunUntilStopped()
85 while (is_running_) { in RunUntilStopped()
91 is_running_ = false; in RunUntilStopped()
128 PostTask([this]() { is_running_ = false; }); in RequestStopSoon()
163 if (!is_running_) { in GrabMoreRunnableTasks()
Dsocket_handle_waiter_posix.cc80 const bool was_running = is_running_.exchange(true); in RunUntilStopped()
84 while (is_running_) { in RunUntilStopped()
90 is_running_.store(false); in RequestStopSoon()
Dsocket_handle_waiter_posix.h41 std::atomic_bool is_running_;
Dtask_runner.h121 bool is_running_; variable
/external/openscreen/discovery/mdns/
Dmdns_probe.cc84 if (is_running_) { in Stop()
87 is_running_ = false; in Stop()
Dmdns_probe.h123 bool is_running_ = true; variable
/external/libchrome/base/debug/
Dactivity_tracker_unittest.cc260 is_running_(false) {} in SimpleLockThread()
269 is_running_.store(true, std::memory_order_relaxed); in Run()
273 is_running_.store(false, std::memory_order_relaxed); in Run()
276 bool IsRunning() { return is_running_.load(std::memory_order_relaxed); } in IsRunning()
283 std::atomic<bool> is_running_; member in base::debug::__anon91480e470211::SimpleLockThread