Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/MemoryHistory/asan/
DMemoryHistoryASan.cpp142 ThreadSP new_thread_sp(history_thread); in CreateHistoryThreadFromValueObject() local
148 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in CreateHistoryThreadFromValueObject()
149 result.push_back(new_thread_sp); in CreateHistoryThreadFromValueObject()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
DInstrumentationRuntimeUBSan.cpp330 ThreadSP new_thread_sp = std::make_shared<HistoryThread>( in GetBacktracesFromExtendedStopInfo() local
333 new_thread_sp->SetName(stop_reason_description.c_str()); in GetBacktracesFromExtendedStopInfo()
337 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
338 threads->AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
DInstrumentationRuntimeMainThreadChecker.cpp272 ThreadSP new_thread_sp = std::make_shared<HistoryThread>( in GetBacktracesFromExtendedStopInfo() local
277 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
278 threads->AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntime.cpp597 ThreadSP new_thread_sp(new HistoryThread(*m_process, 0, pcs)); in GetBacktraceThreadFromException() local
598 m_process->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktraceThreadFromException()
599 return new_thread_sp; in GetBacktraceThreadFromException()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
DInstrumentationRuntimeTSan.cpp1037 ThreadSP new_thread_sp(history_thread); in AddThreadsForPath() local
1038 new_thread_sp->SetName(GenerateThreadName(path, o, info).c_str()); in AddThreadsForPath()
1042 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in AddThreadsForPath()
1043 threads->AddThread(new_thread_sp); in AddThreadsForPath()
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBThread.cpp1301 ThreadSP new_thread_sp( in GetExtendedBacktraceThread() local
1303 if (new_thread_sp) { in GetExtendedBacktraceThread()
1306 process->GetExtendedThreadList().AddThread(new_thread_sp); in GetExtendedBacktraceThread()
1307 sb_origin_thread.SetThread(new_thread_sp); in GetExtendedBacktraceThread()