Home
last modified time | relevance | path

Searched refs:running_ (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/bluetooth/async/
Dasync_fd_watcher.cc71 if (std::atomic_exchange(&running_, true)) return 0; in tryStartThread()
87 if (!std::atomic_exchange(&running_, false)) return 0; in stopThread()
119 while (running_) { in ThreadRoutine()
Dasync_fd_watcher.h48 std::atomic_bool running_{false};
/hardware/interfaces/bluetooth/1.0/default/
Dasync_fd_watcher.cc75 if (std::atomic_exchange(&running_, true)) return 0; in tryStartThread()
91 if (!std::atomic_exchange(&running_, false)) return 0; in stopThread()
131 while (running_) { in ThreadRoutine()
Dasync_fd_watcher.h51 std::atomic_bool running_{false};
/hardware/google/camera/common/apex_update_listener/
Dapex_update_listener.cc40 running_ = false; in ~ApexUpdateListener()
156 if (length < 0 || !running_) { in ThreadFunction()
157 if (running_) { in ThreadFunction()
189 } while (running_); in ThreadFunction()
Dapex_update_listener.h83 std::atomic<bool> running_ = true; variable