Home
last modified time | relevance | path

Searched refs:GetCurrentExceptionBacktrace (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/lang/objc/exceptions/
H A DTestObjCExceptions.py57 self.assertFalse(thread.GetCurrentExceptionBacktrace().IsValid())
152 self.assertTrue(thread.GetCurrentExceptionBacktrace().IsValid())
154 history_thread = thread.GetCurrentExceptionBacktrace()
177 history_thread = thread.GetCurrentExceptionBacktrace()
202 self.assertFalse(thread.GetCurrentExceptionBacktrace().IsValid())
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBThread.i395 even when the program is no longer at the throw site.") GetCurrentExceptionBacktrace;
397 GetCurrentExceptionBacktrace();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBThread.h207 SBThread GetCurrentExceptionBacktrace();
/llvm-project-15.0.7/lldb/source/API/
H A DSBThread.cpp1294 SBThread SBThread::GetCurrentExceptionBacktrace() { in GetCurrentExceptionBacktrace() function in SBThread
1301 return SBThread(thread_sp->GetCurrentExceptionBacktrace()); in GetCurrentExceptionBacktrace()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThread.h1189 lldb::ThreadSP GetCurrentExceptionBacktrace();
/llvm-project-15.0.7/lldb/source/Target/
H A DThread.cpp1996 ThreadSP Thread::GetCurrentExceptionBacktrace() { in GetCurrentExceptionBacktrace() function in Thread
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectThread.cpp1367 ThreadSP exception_thread_sp = thread_sp->GetCurrentExceptionBacktrace(); in HandleOneThread()