Home
last modified time | relevance | path

Searched refs:handlerThread_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/av_transport/av_trans_engine/plugin/plugins/av_trans_output/output_control/src/
H A Doutput_controller.cpp62 if (!handlerThread_) { in StartControl()
64 handlerThread_ = std::make_unique<std::thread>(&OutputController::LooperHandle, this); in StartControl()
112 if (handlerThread_) { in ReleaseControl()
113 handlerThread_->join(); in ReleaseControl()
114 handlerThread_ = nullptr; in ReleaseControl()
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/av_transport/av_trans_engine/plugin/plugins/av_trans_output/output_control/include/
H A Doutput_controller.h148 std::unique_ptr<std::thread> handlerThread_ = nullptr; variable