Home
last modified time | relevance | path

Searched refs:read_thread_ (Results 1 – 4 of 4) sorted by relevance

/system/extras/simpleperf/
DRecordReadThread.cpp236 if (read_thread_) { in ~RecordReadThread()
258 read_thread_.reset(new std::thread([&]() { RunReadThread(); })); in RegisterDataCallback()
277 read_thread_->join(); in StopReadThread()
278 read_thread_ = nullptr; in StopReadThread()
DRecordReadThread.h207 std::unique_ptr<std::thread> read_thread_; variable
/system/core/adb/
Dtransport.cpp324 read_thread_ = std::thread([this]() { in StartReadThread()
355 if (read_thread_.joinable()) { in DoTlsHandshake()
356 read_thread_.join(); in DoTlsHandshake()
411 read_thread = std::move(read_thread_); in Stop()
Dtransport.h186 std::thread read_thread_ GUARDED_BY(mutex_);