Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/MemoryHistory/asan/
H A DMemoryHistoryASan.cpp135 ThreadSP new_thread_sp(history_thread); in CreateHistoryThreadFromValueObject() local
141 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in CreateHistoryThreadFromValueObject()
142 result.push_back(new_thread_sp); in CreateHistoryThreadFromValueObject()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp329 ThreadSP new_thread_sp = std::make_shared<HistoryThread>( in GetBacktracesFromExtendedStopInfo() local
332 new_thread_sp->SetName(stop_reason_description.c_str()); in GetBacktracesFromExtendedStopInfo()
336 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
337 threads->AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp269 ThreadSP new_thread_sp = std::make_shared<HistoryThread>( in GetBacktracesFromExtendedStopInfo() local
274 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
275 threads->AddThread(new_thread_sp); in GetBacktracesFromExtendedStopInfo()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp595 ThreadSP new_thread_sp(new HistoryThread(*m_process, 0, pcs)); in GetBacktraceThreadFromException() local
596 m_process->GetExtendedThreadList().AddThread(new_thread_sp); in GetBacktraceThreadFromException()
597 return new_thread_sp; in GetBacktraceThreadFromException()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp1038 ThreadSP new_thread_sp = in AddThreadsForPath() local
1040 new_thread_sp->SetName(GenerateThreadName(path, o, info).c_str()); in AddThreadsForPath()
1044 process_sp->GetExtendedThreadList().AddThread(new_thread_sp); in AddThreadsForPath()
1045 threads->AddThread(new_thread_sp); in AddThreadsForPath()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp1279 ThreadSP new_thread_sp( in GetExtendedBacktraceThread() local
1281 if (new_thread_sp) { in GetExtendedBacktraceThread()
1284 process->GetExtendedThreadList().AddThread(new_thread_sp); in GetExtendedBacktraceThread()
1285 sb_origin_thread.SetThread(new_thread_sp); in GetExtendedBacktraceThread()