Home
last modified time | relevance | path

Searched refs:new_thread_sp (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp137 ThreadSP new_thread_sp(history_thread); in CreateHistoryThreadFromValueObject() local
143 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in CreateHistoryThreadFromValueObject()
144 result.push_back(new_thread_sp); in CreateHistoryThreadFromValueObject()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp328 ThreadSP new_thread_sp = std::make_shared<HistoryThread>( in GetBacktracesFromExtendedStopInfo() local
331 new_thread_sp->SetName(stop_reason_description.c_str()); in GetBacktracesFromExtendedStopInfo()
335 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
336 threads->AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp267 ThreadSP new_thread_sp = std::make_shared<HistoryThread>( in GetBacktracesFromExtendedStopInfo() local
272 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
273 threads->AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp598 ThreadSP new_thread_sp(new HistoryThread(*m_process, 0, pcs)); in GetBacktraceThreadFromException() local
599 m_process->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktraceThreadFromException()
600 return new_thread_sp; in GetBacktraceThreadFromException()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp1035 ThreadSP new_thread_sp(history_thread); in AddThreadsForPath() local
1036 new_thread_sp->SetName(GenerateThreadName(path, o, info).c_str()); in AddThreadsForPath()
1040 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in AddThreadsForPath()
1041 threads->AddThread(new_thread_sp); in AddThreadsForPath()
/llvm-project-15.0.7/lldb/source/API/
H A DSBThread.cpp1258 ThreadSP new_thread_sp( in GetExtendedBacktraceThread() local
1260 if (new_thread_sp) { in GetExtendedBacktraceThread()
1263 process->GetExtendedThreadList().AddThread(new_thread_sp); in GetExtendedBacktraceThread()
1264 sb_origin_thread.SetThread(new_thread_sp); in GetExtendedBacktraceThread()