Home | History | Annotate | Download | only in MacOSX-Kernel

Lines Matching refs:thread_sp

525     ThreadSP thread_sp (m_kernel_thread_wp.lock());
526 if (!thread_sp)
528 thread_sp.reset(new ThreadKDP (*this, g_kernel_tid));
529 m_kernel_thread_wp = thread_sp;
531 return thread_sp;
547 ThreadSP thread_sp (old_thread_list.FindThreadByProtocolID(g_kernel_tid, false));
548 if (!thread_sp)
549 thread_sp = GetKernelThread ();
550 new_thread_list.AddThread(thread_sp);
886 ThreadSP thread_sp (process->GetKernelThread());
887 if (thread_sp)
889 lldb::RegisterContextSP reg_ctx_sp (thread_sp->GetRegisterContext());
892 static_cast<ThreadKDP *>(thread_sp.get())->SetStopInfoFrom_KDP_EXCEPTION (exc_reply_packet);