HomeSort by relevance Sort by last modified time
    Searched refs:ScopedThread (Results 1 - 12 of 12) 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&);
cuttlefish_thread_test.cpp 24 using cvd::ScopedThread;
55 ScopedThread thread_a(
57 ScopedThread thread_b(
113 ScopedThread thread_s(
115 ScopedThread thread_w1(
117 ScopedThread thread_w2(
166 ScopedThread thread_s(
168 ScopedThread thread_w1(
170 ScopedThread thread_w2(
213 ScopedThread thread_s
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_string.cc 44 ScopedThread t1, t2;
53 ScopedThread t1, t2;
62 ScopedThread t1, t2;
70 ScopedThread t1, t2;
77 ScopedThread t1, t2;
tsan_mop.cc 20 ScopedThread t;
26 ScopedThread t1, t2;
33 ScopedThread t1, t2;
40 ScopedThread t1, t2;
47 ScopedThread t1, t2;
54 ScopedThread t1, t2;
62 ScopedThread t1, t2;
74 ScopedThread t1, t2;
93 ScopedThread t1, t2;
108 ScopedThread t1, t2
    [all...]
tsan_thread.cc 21 ScopedThread t1;
28 ScopedThread t1(true);
34 ScopedThread t1;
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) {
tsan_test_util_posix.cc 280 struct ScopedThread::Impl {
291 void ScopedThread::Impl::HandleEvent(Event *ev) {
376 void *ScopedThread::Impl::ScopedThreadCallback(void *arg) {
396 void ScopedThread::Impl::send(Event *e) {
407 ScopedThread::ScopedThread(bool detached, bool main) {
419 ScopedThread::Impl::ScopedThreadCallback, impl_);
423 ScopedThread::~ScopedThread() {
433 void ScopedThread::Detach()
    [all...]
tsan_bench.cc 94 ScopedThread().Create(m);
96 ScopedThread t;
104 ScopedThread().Destroy(m);
tsan_mutex.cc 23 ScopedThread t;
41 ScopedThread t;
59 ScopedThread t;
100 ScopedThread t1, t2;
116 ScopedThread t1, t2;
132 ScopedThread t1, t2, t3;
157 ScopedThread t1, t2;
183 ScopedThread t1;
206 ScopedThread t1;
tsan_test.cc 21 ScopedThread t1, t2;
  /device/google/cuttlefish_common/guest/commands/usbforward/
usb_server.h 85 std::unique_ptr<cvd::ScopedThread> libusb_thread_;
usb_server.cpp 318 libusb_thread_.reset(new cvd::ScopedThread(&ProcessLibUSBRequests, this));

Completed in 273 milliseconds