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

  /device/google/cuttlefish_common/common/libs/threads/
cuttlefish_thread.h 26 // ScopedThread creates a Thread and joins it when the class is destroyed
150 class ScopedThread {
152 ScopedThread(void* (*start)(void*), void* arg) {
156 ~ScopedThread() {
165 ScopedThread(const ScopedThread&);
166 ScopedThread& operator= (const ScopedThread&);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util.h 68 class ScopedThread {
70 explicit ScopedThread(bool detached = false, bool main = false);
71 ~ScopedThread();
119 ScopedThread(const ScopedThread&); // Not implemented.
120 void operator = (const ScopedThread&); // Not implemented.
123 class MainThread : public ScopedThread {
126 : ScopedThread(false, true) {

Completed in 3795 milliseconds