Lines Matching defs:DhcpThreadImpl
37 class DhcpThread::DhcpThreadImpl {
39 DhcpThreadImpl(const std::string &threadName)
43 DHCP_LOGI("DhcpThreadImpl already init.");
47 DHCP_LOGI("DhcpThreadImpl: Create a new eventQueue, threadName:%{public}s", threadName.c_str());
49 ~DhcpThreadImpl()
128 class DhcpThread::DhcpThreadImpl {
130 DhcpThreadImpl(const std::string &threadName)
133 mWorkerThread = std::thread(DhcpThreadImpl::Run, std::ref(*this));
136 ~DhcpThreadImpl()
146 DHCP_LOGE("DhcpThreadImpl PostSyncTask Unsupported in lite.");
152 DHCP_LOGE("DhcpThreadImpl PostAsyncTask with delayTime Unsupported in lite.");
165 DHCP_LOGE("DhcpThreadImpl PostAsyncTask with name Unsupported in lite.");
170 DHCP_LOGE("DhcpThreadImpl RemoveAsyncTask Unsupported in lite.");
173 static void Run(DhcpThreadImpl &instance)
200 :ptr_(new DhcpThreadImpl(threadName))