Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dhcp/services/dhcp_client/src/
H A Ddhcp_thread.cpp133 mWorkerThread = std::thread(DhcpThreadImpl::Run, std::ref(*this)); in DhcpThreadImpl()
134 pthread_setname_np(mWorkerThread.native_handle(), threadName.c_str()); in DhcpThreadImpl()
140 if (mWorkerThread.joinable()) { in ~DhcpThreadImpl()
141 mWorkerThread.join(); in ~DhcpThreadImpl()
190 std::thread mWorkerThread; member in OHOS::DHCP::DhcpThread::DhcpThreadImpl
/ohos5.0/foundation/communication/wifi/wifi/utils/src/
H A Dwifi_event_handler.cpp40 mWorkerThread = std::thread(WifiEventHandlerImpl::Run, std::ref(*this)); in WifiEventHandlerImpl()
41 pthread_setname_np(mWorkerThread.native_handle(), threadName.c_str()); in WifiEventHandlerImpl()
47 if (mWorkerThread.joinable()) { in ~WifiEventHandlerImpl()
48 mWorkerThread.join(); in ~WifiEventHandlerImpl()
97 std::thread mWorkerThread; member in OHOS::Wifi::WifiEventHandler::WifiEventHandlerImpl