Home
last modified time | relevance | path

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

/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/hdf_driver/src/driver_adapter/src/
H A Dcamera_dev.cpp385streamThread_ = new (std::nothrow) std::thread([this, cameraId, type] {this->LoopBuffers(cameraId,… in StartStream()
386 if (streamThread_ == nullptr) { in StartStream()
409 if (streamThread_ == nullptr) { in StopStream()
418 streamThread_->join(); in StopStream()
435 delete streamThread_; in StopStream()
436 streamThread_ = nullptr; in StopStream()
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/src/
H A Dv4l2_dev.cpp375 streamThread_ = new (std::nothrow) std::thread([this] {this->loopBuffers();}); in StartStream()
376 if (streamThread_ == nullptr) { in StartStream()
389 if (myStreams_ == nullptr || streamThread_ == nullptr) { in StopStream()
414 streamThread_->join(); in StopStream()
429 delete streamThread_; in StopStream()
430 streamThread_ = nullptr; in StopStream()
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/hdf_driver/src/driver_adapter/include/
H A Dcamera_dev.h86 std::thread *streamThread_ = nullptr; variable
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/include/
H A Dv4l2_dev.h111 std::thread* streamThread_ = nullptr; variable