Home
last modified time | relevance | path

Searched refs:exc_type (Results 1 – 16 of 16) sorted by relevance

/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
DMachException.cpp58 mach_port_t exc_port, exception_type_t exc_type, in catch_mach_exception_raise_state() argument
66 __FUNCTION__, exc_port, exc_type, in catch_mach_exception_raise_state()
67 MachException::Name(exc_type), (uint64_t)exc_data, in catch_mach_exception_raise_state()
75 exception_type_t exc_type, mach_exception_data_t exc_data, in catch_mach_exception_raise_state_identity() argument
83 __FUNCTION__, exc_port, thread_port, task_port, exc_type, in catch_mach_exception_raise_state_identity()
84 MachException::Name(exc_type), exc_data_count, in catch_mach_exception_raise_state_identity()
94 mach_port_t task_port, exception_type_t exc_type, in catch_mach_exception_raise() argument
101 __FUNCTION__, exc_port, thread_port, task_port, exc_type, in catch_mach_exception_raise()
102 MachException::Name(exc_type), exc_data_count, in catch_mach_exception_raise()
106 g_message->exc_type = 0; in catch_mach_exception_raise()
[all …]
DMachException.h45 exception_type_t exc_type; member
48 : task_port(TASK_NULL), thread_port(THREAD_NULL), exc_type(0), in Data()
54 exc_type = 0; in Clear()
59 exc_type != 0; in IsValid()
64 if (exc_type == EXC_SOFTWARE && exc_data.size() == 2 && in SoftSignal()
70 return (exc_type == EXC_BREAKPOINT || in IsBreakpoint()
71 ((exc_type == EXC_SOFTWARE) && exc_data[0] == 1)); in IsBreakpoint()
129 static const char *Name(exception_type_t exc_type);
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/
DStopInfoMachException.h32 StopInfoMachException(Thread &thread, uint32_t exc_type, in StopInfoMachException() argument
35 : StopInfo(thread, exc_type), m_exc_data_count(exc_data_count), in StopInfoMachException()
48 static const char *Name(exception_type_t exc_type);
57 Thread &thread, uint32_t exc_type, uint32_t exc_data_count,
DStopInfoMachException.cpp528 StopInfoMachException::MachException::Name(exception_type_t exc_type) { in Name() argument
529 switch (exc_type) { in Name()
599 Thread &thread, uint32_t exc_type, uint32_t exc_data_count, in CreateStopReasonWithMachException() argument
602 if (exc_type == 0) in CreateStopReasonWithMachException()
612 switch (exc_type) { in CreateStopReasonWithMachException()
800 return StopInfoSP(new StopInfoMachException(thread, exc_type, exc_data_count, in CreateStopReasonWithMachException()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
DThreadKDP.cpp149 const uint32_t exc_type = exc_reply_packet.GetU32(&offset); in SetStopInfoFrom_KDP_EXCEPTION() local
164 *this, exc_type, 2, exc_code, exc_subcode, 0, pc_already_adjusted, in SetStopInfoFrom_KDP_EXCEPTION()
/openbsd/src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
Dcase.py138 def __exit__(self, exc_type, exc_value, tb): argument
139 if exc_type is None:
146 if not issubclass(exc_type, self.expected):
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1609 const std::string &description, uint32_t exc_type, in SetThreadStopInfo() argument
1699 if (exc_type != 0) { in SetThreadStopInfo()
1704 *thread_sp, exc_type, exc_data_size, in SetThreadStopInfo()
1919 uint32_t exc_type = 0; in SetThreadStopInfo() local
1934 &signo, &reason, &description, &exc_type, &exc_data, in SetThreadStopInfo()
1945 exc_type = object->GetIntegerValue(0); in SetThreadStopInfo()
2042 reason, description, exc_type, exc_data, in SetThreadStopInfo()
2077 uint32_t exc_type = 0; in SetThreadStopInfo() local
2091 value.getAsInteger(16, exc_type); in SetThreadStopInfo()
2258 exc_type, exc_data, thread_dispatch_qaddr, queue_vars_valid, in SetThreadStopInfo()
DProcessGDBRemote.h365 const std::string &description, uint32_t exc_type,
/openbsd/src/gnu/llvm/lldb/examples/python/
Dpytracer.py32 self.etype = frame.exc_type
Dcrashlog.py715 exc_type, exc_signal = exception_type_match.groups()
716 self.crashlog.exception['type'] = exc_type
/openbsd/src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
Dlldbtest.py590 exc_type, exc_value, exc_tb = sys.exc_info()
591 traceback.print_exception(exc_type, exc_value, exc_tb)
/openbsd/src/gnu/llvm/compiler-rt/lib/asan/scripts/
Dasan_symbolize.py607 def __exit__(self, exc_type, exc_val, exc_tb): argument
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/arm/
DDNBArchImpl.cpp636 switch (exc.exc_type) { in NotifyException()
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/arm64/
DDNBArchImplARM64.cpp520 switch (exc.exc_type) { in NotifyException()
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/i386/
DDNBArchImplI386.cpp661 switch (exc.exc_type) { in NotifyException()
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/x86_64/
DDNBArchImplX86_64.cpp617 switch (exc.exc_type) { in NotifyException()