Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/lang/objc/exceptions/
H A DTestObjCExceptions.py56 self.assertFalse(thread.GetCurrentException().IsValid())
151 self.assertTrue(thread.GetCurrentException().IsValid())
199 self.assertTrue(thread.GetCurrentException().IsValid())
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBThread.i387 being processes.") GetCurrentException;
389 GetCurrentException();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBThread.h205 SBValue GetCurrentException();
/llvm-project-15.0.7/lldb/source/API/
H A DSBThread.cpp1284 SBValue SBThread::GetCurrentException() { in GetCurrentException() function in SBThread
1291 return SBValue(thread_sp->GetCurrentException()); in GetCurrentException()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThread.h1187 lldb::ValueObjectSP GetCurrentException();
/llvm-project-15.0.7/lldb/source/Target/
H A DThread.cpp1980 ValueObjectSP Thread::GetCurrentException() { in GetCurrentException() function in Thread
1997 ValueObjectSP exception = GetCurrentException(); in GetCurrentExceptionBacktrace()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectThread.cpp1362 ValueObjectSP exception_object_sp = thread_sp->GetCurrentException(); in HandleOneThread()