Searched refs:history_thread (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/lldb/test/API/functionalities/asan/ |
D | TestMemoryHistory.py | 84 history_thread = threads.GetThreadAtIndex(0) 85 self.assertTrue(history_thread.num_frames >= 2) 86 self.assertEqual(history_thread.frames[1].GetLineEntry( 89 history_thread.frames[1].GetLineEntry().GetLine(), 92 history_thread = threads.GetThreadAtIndex(1) 93 self.assertTrue(history_thread.num_frames >= 2) 94 self.assertEqual(history_thread.frames[1].GetLineEntry( 97 history_thread.frames[1].GetLineEntry().GetLine(), 103 self.assertTrue(history_thread.num_frames >= 2) 104 self.assertEqual(history_thread.frames[1].GetLineEntry( [all …]
|
/external/llvm-project/lldb/test/API/lang/objc/exceptions/ |
D | TestObjCExceptions.py | 156 history_thread = thread.GetCurrentExceptionBacktrace() 157 self.assertGreaterEqual(history_thread.num_frames, 4) 159 self.assertEqual(len([f for f in history_thread.frames if f.GetFunctionName() == n]), 1) 179 history_thread = thread.GetCurrentExceptionBacktrace() 180 self.assertGreaterEqual(history_thread.num_frames, 4) 182 self.assertEqual(len([f for f in history_thread.frames if f.GetFunctionName() == n]), 1)
|
/external/llvm-project/lldb/source/Plugins/MemoryHistory/asan/ |
D | MemoryHistoryASan.cpp | 145 HistoryThread *history_thread = in CreateHistoryThreadFromValueObject() local 147 ThreadSP new_thread_sp(history_thread); in CreateHistoryThreadFromValueObject() 150 history_thread->SetThreadName(thread_name_with_number.str().c_str()); in CreateHistoryThreadFromValueObject()
|
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
D | InstrumentationRuntimeMainThreadChecker.cpp | 274 HistoryThread *history_thread = new HistoryThread(*process_sp, tid, PCs); in GetBacktracesFromExtendedStopInfo() local 275 ThreadSP new_thread_sp(history_thread); in GetBacktracesFromExtendedStopInfo()
|
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
D | InstrumentationRuntimeUBSan.cpp | 327 HistoryThread *history_thread = new HistoryThread(*process_sp, tid, PCs); in GetBacktracesFromExtendedStopInfo() local 328 ThreadSP new_thread_sp(history_thread); in GetBacktracesFromExtendedStopInfo()
|
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
D | InstrumentationRuntimeTSan.cpp | 1035 HistoryThread *history_thread = in AddThreadsForPath() local 1037 ThreadSP new_thread_sp(history_thread); in AddThreadsForPath()
|