Home
last modified time | relevance | path

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

/ohos5.0/drivers/peripheral/display/hal/default_standard/src/display_device/drm/
H A Ddrm_vsync_worker.cpp31 mThread = std::make_unique<std::thread>([this]() { WorkThread(); }); in Init()
32 … DISPLAY_CHK_RETURN((mThread == nullptr), DISPLAY_FAILURE, DISPLAY_LOGE("can not create thread")); in Init()
59 if (mThread != nullptr) { in ~DrmVsyncWorker()
60 mThread->join(); in ~DrmVsyncWorker()
H A Ddrm_vsync_worker.h43 std::unique_ptr<std::thread> mThread; variable
/ohos5.0/drivers/peripheral/display/composer/vdi_base/src/
H A Ddrm_vsync_worker.cpp31 mThread = std::make_unique<std::thread>([this]() { WorkThread(); }); in Init()
32 … DISPLAY_CHK_RETURN((mThread == nullptr), DISPLAY_FAILURE, DISPLAY_LOGE("can not create thread")); in Init()
59 if (mThread != nullptr) { in ~DrmVsyncWorker()
60 mThread->join(); in ~DrmVsyncWorker()
H A Dhdi_netlink_monitor.cpp34 mThread = std::make_unique<std::thread>(std::bind(&HdiNetLinkMonitor::MonitorThread, this)); in Init()
35 mThread->detach(); in Init()
/ohos5.0/drivers/peripheral/display/composer/vdi_base/include/
H A Dhdi_netlink_monitor.h34 std::unique_ptr<std::thread> mThread; variable
H A Ddrm_vsync_worker.h42 std::unique_ptr<std::thread> mThread; variable
/ohos5.0/drivers/peripheral/display/hal/default_standard/src/display_device/core/
H A Dhdi_netlink_monitor.h33 std::unique_ptr<std::thread> mThread; variable
H A Dhdi_netlink_monitor.cpp42 mThread = std::make_unique<std::thread>([this]() { in Init()