Lines Matching refs:thread_sp
488 ThreadSP thread_sp(m_kernel_thread_wp.lock()); in GetKernelThread() local
489 if (!thread_sp) { in GetKernelThread()
490 thread_sp = std::make_shared<ThreadKDP>(*this, g_kernel_tid); in GetKernelThread()
491 m_kernel_thread_wp = thread_sp; in GetKernelThread()
493 return thread_sp; in GetKernelThread()
504 ThreadSP thread_sp( in DoUpdateThreadList() local
506 if (!thread_sp) in DoUpdateThreadList()
507 thread_sp = GetKernelThread(); in DoUpdateThreadList()
508 new_thread_list.AddThread(thread_sp); in DoUpdateThreadList()
791 ThreadSP thread_sp(GetKernelThread()); in AsyncThread() local
792 if (thread_sp) { in AsyncThread()
794 thread_sp->GetRegisterContext()); in AsyncThread()
797 static_cast<ThreadKDP *>(thread_sp.get()) in AsyncThread()