Home
last modified time | relevance | path

Searched refs:thd_ (Results 1 – 8 of 8) sorted by relevance

/third_party/grpc/test/core/iomgr/
Dmpmcqueue_test.cc45 thd_ = grpc_core::Thread( in ProducerThread()
57 void Start() { thd_.Start(); } in Start()
58 void Join() { thd_.Join(); } in Join()
73 grpc_core::Thread thd_; member in ProducerThread
81 thd_ = grpc_core::Thread( in ConsumerThread()
87 void Start() { thd_.Start(); } in Start()
88 void Join() { thd_.Join(); } in Join()
105 grpc_core::Thread thd_; member in ConsumerThread
Dthreadpool_test.cc89 thd_ = grpc_core::Thread( in WorkThread()
95 void Start() { thd_.Start(); } in Start()
96 void Join() { thd_.Join(); } in Join()
108 grpc_core::Thread thd_; member in WorkThread
/third_party/grpc/src/core/lib/iomgr/executor/
Dthreadpool.h68 thd_ = Thread( in ThreadPoolWorker()
75 void Start() { thd_.Start(); } in Start()
76 void Join() { thd_.Join(); } in Join()
88 Thread thd_; // Thread wrapped in variable
/third_party/grpc/src/cpp/server/
Ddynamic_thread_pool.cc30 thd_( in DynamicThread()
36 thd_.Start();
38 DynamicThreadPool::DynamicThread::~DynamicThread() { thd_.Join(); } in ~DynamicThread()
Ddynamic_thread_pool.h49 grpc_core::Thread thd_; variable
/third_party/grpc/src/cpp/thread_manager/
Dthread_manager.h126 void Start() { thd_.Start(); } in Start()
134 grpc_core::Thread thd_; variable
Dthread_manager.cc33 thd_ = grpc_core::Thread( in WorkerThread()
49 thd_.Join(); in ~WorkerThread()
/third_party/grpc/test/core/tsi/alts/handshaker/
Dalts_concurrent_connectivity_test.cc215 thd_ = std::unique_ptr<std::thread>(new std::thread(ConnectLoop, this)); in ConnectLoopRunner()
218 ~ConnectLoopRunner() { thd_->join(); } in ~ConnectLoopRunner()
280 std::unique_ptr<std::thread> thd_; member in __anon047530350111::ConnectLoopRunner