Searched refs:thread_ (Results 1 – 5 of 5) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/ |
D | once_unittest.cc | 79 thread_ = CreateThread(NULL, 0, &Start, this, 0, NULL); in TestThread() 81 pthread_create(&thread_, NULL, &Start, this); in TestThread() 95 WaitForSingleObject(thread_, INFINITE); in Join() 96 CloseHandle(thread_); in Join() 98 pthread_join(thread_, NULL); in Join() 104 HANDLE thread_; member in google::protobuf::__anon2aad2dec0111::OnceInitTest::TestThread 106 pthread_t thread_;
|
/frameworks/opt/gamesdk/src/tuningfork/ |
D | uploadthread.cpp | 79 if (thread_) { in Start() 85 thread_ = std::make_unique<std::thread>([&] { return Run(); }); in Start() 89 if (!thread_->joinable()) { in Stop() 95 thread_->join(); in Stop()
|
D | uploadthread.h | 29 std::unique_ptr<std::thread> thread_;
|
/frameworks/native/libs/vr/libvrflinger/ |
D | epoll_event_dispatcher.h | 39 std::thread thread_; variable
|
D | epoll_event_dispatcher.cpp | 35 thread_ = std::thread(&EpollEventDispatcher::EventThread, this); in EpollEventDispatcher()
|