Home
last modified time | relevance | path

Searched refs:thread_sp (Results 1 – 25 of 96) sorted by relevance

1234

/llvm-project/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp32 MachThreadSP thread_sp(GetThreadByID(tid)); in GetState() local
33 if (thread_sp) in GetState()
34 return thread_sp->GetState(); in GetState()
39 MachThreadSP thread_sp(GetThreadByID(tid)); in GetName() local
40 if (thread_sp) in GetName()
41 return thread_sp->GetName(); in GetName()
48 MachThreadSP thread_sp(GetThreadByID(tid)); in GetRequestedQoS() local
49 if (thread_sp) in GetRequestedQoS()
50 return thread_sp->GetRequestedQoS(tsd, dti_qos_class_index); in GetRequestedQoS()
55 MachThreadSP thread_sp(GetThreadByID(tid)); in GetPThreadT() local
[all …]
/llvm-project/lldb/source/Target/
H A DThreadList.cpp96 ThreadSP thread_sp; in GetThreadAtIndex()
98 thread_sp = m_threads[idx]; in GetThreadAtIndex()
99 return thread_sp; in GetThreadAtIndex()
108 ThreadSP thread_sp; in FindThreadByID()
113 thread_sp = m_threads[idx]; in FindThreadByID()
117 return thread_sp; in FindThreadByID()
126 ThreadSP thread_sp; in FindThreadByProtocolID()
131 thread_sp = m_threads[idx]; in FindThreadByProtocolID()
135 return thread_sp; in FindThreadByProtocolID()
144 ThreadSP thread_sp; in RemoveThreadByID()
97 ThreadSP thread_sp; GetThreadAtIndex() local
109 ThreadSP thread_sp; FindThreadByID() local
127 ThreadSP thread_sp; FindThreadByProtocolID() local
145 ThreadSP thread_sp; RemoveThreadByID() local
165 ThreadSP thread_sp; RemoveThreadByProtocolID() local
179 ThreadSP thread_sp; GetThreadSPForThreadPtr() local
198 ThreadSP thread_sp; GetBackingThread() local
215 ThreadSP thread_sp; FindThreadByIndexID() local
245 for (lldb::ThreadSP thread_sp : m_threads) { ShouldStop() local
302 ThreadSP thread_sp(*pos); ShouldStop() local
311 ThreadSP thread_sp(*pos); ShouldStop() local
368 ThreadSP thread_sp(*pos); ShouldStop() local
393 ThreadSP thread_sp(*pos); ShouldReportStop() local
431 ThreadSP thread_sp(*pos); SetShouldReportStop() local
589 ThreadSP thread_sp(*pos); WillResume() local
616 ThreadSP thread_sp(*pos); WillResume() local
640 ThreadSP thread_sp(*pos); WillResume() local
661 ThreadSP thread_sp(*pos); DidResume() local
678 ThreadSP thread_sp(*pos); DidStop() local
686 ThreadSP thread_sp = FindThreadByID(m_selected_tid); GetSelectedThread() local
791 ExpressionExecutionThreadPusher(lldb::ThreadSP thread_sp) ExpressionExecutionThreadPusher() argument
[all...]
H A DStopInfo.cpp42 ThreadSP thread_sp(m_thread_wp.lock()); in IsValid()
43 if (thread_sp) in IsValid()
44 return thread_sp->GetProcess()->GetStopID() == m_stop_id; in IsValid()
49 ThreadSP thread_sp(m_thread_wp.lock()); in MakeStopInfoValid()
50 if (thread_sp) { in MakeStopInfoValid()
51 m_stop_id = thread_sp->GetProcess()->GetStopID(); in MakeStopInfoValid()
52 m_resume_id = thread_sp->GetProcess()->GetResumeID(); in MakeStopInfoValid()
57 ThreadSP thread_sp(m_thread_wp.lock()); in HasTargetRunSinceMe()
59 if (thread_sp) { in HasTargetRunSinceMe()
60 lldb::StateType ret_type = thread_sp in HasTargetRunSinceMe()
41 ThreadSP thread_sp(m_thread_wp.lock()); IsValid() local
48 ThreadSP thread_sp(m_thread_wp.lock()); MakeStopInfoValid() local
56 ThreadSP thread_sp(m_thread_wp.lock()); HasTargetRunSinceMe() local
108 ThreadSP thread_sp(m_thread_wp.lock()); StoreBPInfo() local
152 ThreadSP thread_sp(m_thread_wp.lock()); ShouldStopSynchronous() local
186 ThreadSP thread_sp(m_thread_wp.lock()); GetDescription() local
264 ThreadSP thread_sp(m_thread_wp.lock()); PerformAction() local
781 ThreadSP thread_sp(m_thread_wp.lock()); ShouldStopSynchronous() local
882 ThreadSP thread_sp(m_thread_wp.lock()); PerformAction() local
1060 ThreadSP thread_sp(m_thread_wp.lock()); ShouldStopSynchronous() local
1067 ThreadSP thread_sp(m_thread_wp.lock()); ShouldStop() local
1075 ThreadSP thread_sp(m_thread_wp.lock()); DoShouldNotify() local
1094 ThreadSP thread_sp(m_thread_wp.lock()); WillResume() local
1104 ThreadSP thread_sp(m_thread_wp.lock()); GetDescription() local
1244 ThreadSP thread_sp(m_thread_wp.lock()); ShouldStop() local
1260 ThreadSP thread_sp(m_thread_wp.lock()); PerformAction() local
1290 ThreadSP thread_sp(m_thread_wp.lock()); PerformAction() local
1324 ThreadSP thread_sp(m_thread_wp.lock()); PerformAction() local
1356 ThreadSP thread_sp(m_thread_wp.lock()); PerformAction() local
1467 ThreadSP thread_sp = stop_info_sp->GetThread(); GetCrashingDereference() local
[all...]
H A DThreadCollection.cpp24 void ThreadCollection::AddThread(const ThreadSP &thread_sp) { in AddThread() argument
26 m_threads.push_back(thread_sp); in AddThread()
29 void ThreadCollection::AddThreadSortedByIndexID(const ThreadSP &thread_sp) { in AddThreadSortedByIndexID() argument
32 const uint32_t thread_index_id = thread_sp->GetIndexID(); in AddThreadSortedByIndexID()
34 m_threads.push_back(thread_sp); in AddThreadSortedByIndexID()
37 llvm::upper_bound(m_threads, thread_sp, in AddThreadSortedByIndexID()
41 thread_sp); in AddThreadSortedByIndexID()
45 void ThreadCollection::InsertThread(const lldb::ThreadSP &thread_sp, in InsertThread() argument
49 m_threads.insert(m_threads.begin() + idx, thread_sp); in InsertThread()
51 m_threads.push_back(thread_sp); in InsertThread()
[all …]
H A DExecutionContext.cpp37 ExecutionContext::ExecutionContext(const lldb::ThreadSP &thread_sp) in ExecutionContext() argument
39 if (thread_sp) in ExecutionContext()
40 SetContext(thread_sp); in ExecutionContext()
66 lldb::ThreadSP thread_sp(thread_wp.lock()); in ExecutionContext() local
67 if (thread_sp) in ExecutionContext()
68 SetContext(thread_sp); in ExecutionContext()
253 void ExecutionContext::SetThreadSP(const lldb::ThreadSP &thread_sp) { in SetThreadSP() argument
254 m_thread_sp = thread_sp; in SetThreadSP()
310 void ExecutionContext::SetContext(const lldb::ThreadSP &thread_sp) { in SetContext() argument
312 m_thread_sp = thread_sp; in SetContext()
[all …]
H A DThreadPlanStack.cpp435 ThreadSP thread_sp = current_threads.FindThreadByID(cur_tid); in DumpPlans()
436 if (!thread_sp) in DumpPlans()
452 ThreadSP thread_sp = m_process.GetThreadList().FindThreadByID(tid); in DumpPlans()
455 if (!thread_sp) in DumpPlans()
458 if (thread_sp) in DumpPlans()
459 index_id = thread_sp->GetIndexID(); in DumpPlans()
487 ThreadSP thread_sp = m_process.GetThreadList().FindThreadByID(tid); in DumpPlansForTID()
490 if (!thread_sp) { in DumpPlansForTID()
496 if (thread_sp) in DumpPlansForTID()
497 index_id = thread_sp in DumpPlansForTID()
425 ThreadSP thread_sp = current_threads.FindThreadByID(cur_tid); Update() local
442 ThreadSP thread_sp = m_process.GetThreadList().FindThreadByID(tid); DumpPlans() local
477 ThreadSP thread_sp = m_process.GetThreadList().FindThreadByID(tid); DumpPlansForTID() local
516 ThreadSP thread_sp = m_process.GetThreadList().FindThreadByID(tid); PrunePlansForTID() local
[all...]
H A DOperatingSystem.cpp47 const lldb::ThreadSP &thread_sp) { in IsOperatingSystemPluginThread() argument
48 if (thread_sp) in IsOperatingSystemPluginThread()
49 return thread_sp->IsOperatingSystemPluginThread(); in IsOperatingSystemPluginThread()
H A DStackFrame.cpp54 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame()
59 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame()
80 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame()
85 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame()
106 StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx, in StackFrame()
111 : m_thread_wp(thread_sp), m_frame_index(frame_idx), in StackFrame()
114 m_id(pc_addr.GetLoadAddress(thread_sp->CalculateTarget().get()), cfa, in StackFrame()
177 ThreadSP thread_sp = GetThread(); in GetFrameIndex()
178 if (thread_sp) in GetFrameIndex()
179 return thread_sp in GetFrameIndex()
53 StackFrame(const ThreadSP & thread_sp,user_id_t frame_idx,user_id_t unwind_frame_index,addr_t cfa,bool cfa_is_valid,addr_t pc,StackFrame::Kind kind,bool behaves_like_zeroth_frame,const SymbolContext * sc_ptr) StackFrame() argument
79 StackFrame(const ThreadSP & thread_sp,user_id_t frame_idx,user_id_t unwind_frame_index,const RegisterContextSP & reg_context_sp,addr_t cfa,addr_t pc,bool behaves_like_zeroth_frame,const SymbolContext * sc_ptr) StackFrame() argument
105 StackFrame(const ThreadSP & thread_sp,user_id_t frame_idx,user_id_t unwind_frame_index,const RegisterContextSP & reg_context_sp,addr_t cfa,const Address & pc_addr,bool behaves_like_zeroth_frame,const SymbolContext * sc_ptr) StackFrame() argument
176 ThreadSP thread_sp = GetThread(); GetFrameIndex() local
198 ThreadSP thread_sp(GetThread()); GetFrameCodeAddress() local
255 ThreadSP thread_sp(GetThread()); ChangePC() local
1134 ThreadSP thread_sp(GetThread()); GetRegisterContext() local
1748 ThreadSP thread_sp(GetThread()); CalculateTarget() local
1759 ThreadSP thread_sp(GetThread()); CalculateProcess() local
[all...]
H A DQueue.cpp44 for (ThreadSP thread_sp : process_sp->Threads()) { in GetThreads() local
45 if (thread_sp->GetQueueID() == m_queue_id) { in GetThreads()
46 result.push_back(thread_sp); in GetThreads()
H A DAssertFrameRecognizer.cpp124 ThreadSP thread_sp = frame_sp->GetThread(); in RegisterAssertFrameRecognizer()
125 ProcessSP process_sp = thread_sp->GetProcess(); in RegisterAssertFrameRecognizer()
139 prev_frame_sp = thread_sp->GetStackFrameAtIndex(frame_index); in RecognizeFrame()
163 StackFrameSP most_relevant_frame_sp = thread_sp->GetStackFrameAtIndex( in RecognizeFrame()
133 ThreadSP thread_sp = frame_sp->GetThread(); RecognizeFrame() local
/llvm-project/lldb/unittests/Thread/
H A DThreadTest.cpp125 ThreadSP thread_sp = in CreateWindowsThread() local
127 return std::static_pointer_cast<TargetThreadWindows>(thread_sp); in CreateWindowsThread()
149 auto thread_sp = CreateWindowsThread(process_sp, t); in TEST_F() local
150 DWORD tid = thread_sp->GetHostThread().GetNativeThread().GetThreadId(); in TEST_F()
156 ASSERT_STREQ(thread_sp->GetName(), "thread name"); in TEST_F()
180 ThreadSP thread_sp = std::make_shared<DummyThread>(*process_sp.get(), 0); in TEST_F() local
181 ASSERT_TRUE(thread_sp); in TEST_F()
184 StopInfo::CreateStopReasonWithBreakpointSiteID(*thread_sp.get(), 0); in TEST_F()
193 thread_sp->SetStopInfo(stopinfo_sp); in TEST_F()
215 ThreadSP thread_sp = std::make_shared<DummyThread>(*process_sp.get(), 0); in TEST_F() local
[all …]
/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp201 ThreadSP thread_sp(CreateThreadFromThreadInfo( in UpdateThreadList() local
204 if (thread_sp) in UpdateThreadList()
205 new_thread_list.AddThread(thread_sp); in UpdateThreadList()
229 ThreadSP thread_sp; in CreateThreadFromThreadInfo() local
246 thread_sp = old_thread_list.FindThreadByID(tid, false); in CreateThreadFromThreadInfo()
247 if (thread_sp) { in CreateThreadFromThreadInfo()
251 if (!IsOperatingSystemPluginThread(thread_sp)) { in CreateThreadFromThreadInfo()
255 thread_sp.reset(); in CreateThreadFromThreadInfo()
259 if (!thread_sp) { in CreateThreadFromThreadInfo()
262 thread_sp in CreateThreadFromThreadInfo()
378 ThreadSP thread_sp( CreateThread() local
[all...]
/llvm-project/lldb/unittests/Process/
H A DProcessEventDataTest.cpp123 ThreadSP thread_sp = std::make_shared<DummyThread>(*process_sp.get(), 0); in CreateThread() local
124 if (thread_sp == nullptr) { in CreateThread()
130 std::make_shared<DummyStopInfo>(*thread_sp.get(), 0); in CreateThread()
137 thread_sp->SetStopInfo(stopinfo_sp); in CreateThread()
140 process_sp->GetThreadList().AddThread(thread_sp); in CreateThread()
142 return thread_sp; in CreateThread()
209 ThreadSP thread_sp = CreateThread(process_sp, true, true); in TEST_F()
226 thread_sp->SetResumeState(eStateSuspended); in TEST_F()
243 thread_sp = CreateThread(process_sp, false, true); in TEST_F()
246 thread_sp in TEST_F()
201 ThreadSP thread_sp = CreateThread(process_sp, true, true); TEST_F() local
[all...]
/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp83 ThreadSP thread_sp = exe_ctx_ref.GetThreadSP(); in RetrieveReportData() local
85 thread_sp->GetSelectedFrame(DoNoSelectMostRelevantFrame); in RetrieveReportData()
124 for (unsigned I = 0; I < thread_sp->GetStackFrameCount(); ++I) { in RetrieveReportData()
125 StackFrameSP frame = thread_sp->GetStackFrameAtIndex(I); in RetrieveReportData()
146 d->AddIntegerItem("tid", thread_sp->GetIndexID()); in RetrieveReportData()
162 ThreadSP thread_sp = context->exe_ctx_ref.GetThreadSP(); in NotifyBreakpointHit() local
163 if (!process_sp || !thread_sp || in NotifyBreakpointHit()
178 thread_sp->SetStopInfo( in NotifyBreakpointHit()
180 *thread_sp, description, report)); in NotifyBreakpointHit()
/llvm-project/lldb/source/API/
H A DSBQueueItem.cpp100 ThreadSP thread_sp; in GetExtendedBacktraceThread() local
102 thread_sp = m_queue_item_sp->GetExtendedBacktraceThread(type_const); in GetExtendedBacktraceThread()
103 if (thread_sp) { in GetExtendedBacktraceThread()
106 process_sp->GetExtendedThreadList().AddThread(thread_sp); in GetExtendedBacktraceThread()
107 result.SetThread(thread_sp); in GetExtendedBacktraceThread()
H A DSBQueue.cpp96 ThreadSP thread_sp = thread_list[idx]; in FetchThreads() local
97 if (thread_sp && thread_sp->IsValid()) { in FetchThreads()
98 m_threads.push_back(thread_sp); in FetchThreads()
145 ThreadSP thread_sp = m_threads[idx].lock(); in GetThreadAtIndex() local
146 if (thread_sp) { in GetThreadAtIndex()
147 sb_thread.SetThread(thread_sp); in GetThreadAtIndex()
H A DSBThread.cpp385 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); in GetIndexID()
386 if (thread_sp) in GetIndexID()
387 return thread_sp->GetID(); in GetIndexID()
394 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); in GetName()
395 if (thread_sp) in GetName()
396 return thread_sp->GetIndexID(); in GetName()
1312 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); in GetCurrentException()
1313 if (thread_sp) in GetCurrentException()
1314 return thread_sp->GetExtendedBacktraceOriginatingIndexID();
1321 ThreadSP thread_sp(m_opaque_s in GetCurrentExceptionBacktrace()
379 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); GetThreadID() local
388 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); GetIndexID() local
1299 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); GetExtendedBacktraceOriginatingIndexID() local
1308 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); GetCurrentException() local
1318 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); GetCurrentExceptionBacktrace() local
1328 ThreadSP thread_sp(m_opaque_sp->GetThreadSP()); SafeToCallFunctions() local
1345 ThreadSP thread_sp = m_opaque_sp->GetThreadSP(); GetSiginfo() local
[all...]
/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp110 ThreadSP thread_sp = exe_ctx_ref.GetThreadSP(); in RetrieveReportData() local
112 thread_sp->GetSelectedFrame(DoNoSelectMostRelevantFrame); in RetrieveReportData()
150 for (unsigned I = 0; I < thread_sp->GetStackFrameCount(); ++I) { in RetrieveReportData()
151 const Address FCA = thread_sp->GetStackFrameAtIndex(I) in RetrieveReportData()
177 d->AddIntegerItem("tid", thread_sp->GetID()); in RetrieveReportData()
211 ThreadSP thread_sp = context->exe_ctx_ref.GetThreadSP(); in NotifyBreakpointHit() local
212 if (!process_sp || !thread_sp || in NotifyBreakpointHit()
223 thread_sp->SetStopInfo( in NotifyBreakpointHit()
225 *thread_sp, GetStopReasonDescription(report), report)); in NotifyBreakpointHit()
/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextThreadMemory.cpp28 ThreadSP thread_sp(m_thread_wp.lock()); in UpdateRegisterContext() local
29 if (thread_sp) { in UpdateRegisterContext()
30 ProcessSP process_sp(thread_sp->GetProcess()); in UpdateRegisterContext()
39 ThreadSP backing_thread_sp(thread_sp->GetBackingThread()); in UpdateRegisterContext()
44 if (os->IsOperatingSystemPluginThread(thread_sp)) in UpdateRegisterContext()
46 thread_sp.get(), m_register_data_addr); in UpdateRegisterContext()
/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp63 ThreadSP thread_sp = in RetrieveReportData() local
66 if (!thread_sp) in RetrieveReportData()
70 thread_sp->GetSelectedFrame(DoNoSelectMostRelevantFrame); in RetrieveReportData()
208 if (ThreadSP thread_sp = context->exe_ctx_ref.GetThreadSP()) in NotifyBreakpointHit() local
209 thread_sp->SetStopInfo( in NotifyBreakpointHit()
211 *thread_sp, description, report)); in NotifyBreakpointHit()
/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1520 ThreadSP thread_sp( in DoUpdateThreadList()
1522 if (!thread_sp) { in DoUpdateThreadList()
1523 thread_sp = std::make_shared<ThreadGDBRemote>(*this, tid); in DoUpdateThreadList()
1525 thread_sp.get(), thread_sp->GetID()); in DoUpdateThreadList()
1528 thread_sp.get(), thread_sp->GetID()); in DoUpdateThreadList()
1531 SetThreadPc(thread_sp, i); in DoUpdateThreadList()
1532 new_thread_list.AddThreadSortedByIndexID(thread_sp); in DoUpdateThreadList()
1550 void ProcessGDBRemote::SetThreadPc(const ThreadSP &thread_sp, uint64_ in SetThreadPc()
1517 ThreadSP thread_sp( DoUpdateThreadList() local
1547 SetThreadPc(const ThreadSP & thread_sp,uint64_t index) SetThreadPc() argument
1635 ParseExpeditedRegisters(ExpeditedRegisterMap & expedited_register_map,ThreadSP thread_sp) ParseExpeditedRegisters() argument
1663 ThreadSP thread_sp; SetThreadStopInfo() local
2342 ThreadSP thread_sp = SetThreadStopInfo( SetThreadStopInfo() local
[all...]
/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp488 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()
776 ThreadSP thread_sp(GetKernelThrea in AsyncThread() local
[all...]
/llvm-project/lldb/include/lldb/Target/
H A DThreadCollection.h35 void AddThread(const lldb::ThreadSP &thread_sp);
37 void AddThreadSortedByIndexID(const lldb::ThreadSP &thread_sp);
39 void InsertThread(const lldb::ThreadSP &thread_sp, uint32_t idx);
/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/
H A DSystemRuntimeMacOSX.cpp227 bool SystemRuntimeMacOSX::SafeToCallFunctionsOnThisThread(ThreadSP thread_sp) { in SafeToCallFunctionsOnThisThread()
228 if (thread_sp && thread_sp->GetFrameWithConcreteFrameIndex(0)) { in SafeToCallFunctionsOnThisThread()
230 thread_sp->GetFrameWithConcreteFrameIndex(0)->GetSymbolContext( in SafeToCallFunctionsOnThisThread()
762 for (ThreadSP thread_sp : m_process->Threads()) { in PopulateQueueList()
763 if (thread_sp->GetAssociatedWithLibdispatchQueue() != eLazyBoolNo) { in PopulateQueueList()
764 if (thread_sp->GetQueueID() != LLDB_INVALID_QUEUE_ID) { in PopulateQueueList()
765 if (queue_list.FindQueueByID(thread_sp->GetQueueID()).get() == in PopulateQueueList()
768 thread_sp->GetQueueID(), in PopulateQueueList()
769 thread_sp in PopulateQueueList()
223 SafeToCallFunctionsOnThisThread(ThreadSP thread_sp) SafeToCallFunctionsOnThisThread() argument
758 for (ThreadSP thread_sp : m_process->Threads()) { PopulateQueueList() local
[all...]
/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp220 ThreadSP thread_sp = in HandleOneThread()
222 if (!thread_sp) { in HandleOneThread()
229 Thread *thread = thread_sp.get(); in HandleOneThread()
1336 ThreadSP thread_sp = in HandleOneThread()
1338 if (!thread_sp) { in HandleOneThread()
1344 Thread *thread = thread_sp.get(); in HandleOneThread()
1384 ThreadSP thread_sp = in HandleOneThread()
1386 if (!thread_sp) { in HandleOneThread()
1393 ValueObjectSP exception_object_sp = thread_sp->GetCurrentException(); in HandleOneThread()
1401 ThreadSP exception_thread_sp = thread_sp in HandleOneThread()
211 ThreadSP thread_sp = HandleOneThread() local
1330 ThreadSP thread_sp = HandleOneThread() local
1378 ThreadSP thread_sp = HandleOneThread() local
1429 ThreadSP thread_sp = HandleOneThread() local
1593 ThreadSP thread_sp = m_exe_ctx.GetThreadSP(); DoExecute() local
2098 ThreadSP thread_sp = GetSingleThreadFromArgs() local
2176 ThreadSP thread_sp = GetSingleThreadFromArgs(m_exe_ctx, args, result); DoExecute() local
2358 ThreadSP thread_sp = GetSingleThreadFromArgs(m_exe_ctx, args, result); DoExecute() local
2477 ThreadSP thread_sp = HandleOneThread() local
[all...]

1234