Searched defs:exc_type (Results 1 - 8 of 8) sorted by relevance

/external/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.h30 uint32_t exc_type,
34 StopInfo (thread, exc_type),
60 uint32_t exc_type,
29 StopInfoMachException(Thread &thread, uint32_t exc_type, uint32_t exc_data_count, uint64_t exc_code, uint64_t exc_subcode) argument
H A DStopInfoMachException.cpp269 uint32_t exc_type,
278 if (exc_type != 0)
285 switch (exc_type)
479 return StopInfoSP(new StopInfoMachException (thread, exc_type, exc_data_count, exc_code, exc_sub_code));
266 CreateStopReasonWithMachException( Thread &thread, uint32_t exc_type, uint32_t exc_data_count, uint64_t exc_code, uint64_t exc_sub_code, uint64_t exc_sub_sub_code, bool pc_already_adjusted, bool adjust_pc_if_needed ) argument
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DThreadKDP.cpp183 const uint32_t exc_type = exc_reply_packet.GetU32 (&offset); local
197 exc_type,
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachException.h53 exception_type_t exc_type; member in struct:MachException::Data
58 exc_type(0),
67 exc_type = 0;
74 exc_type != 0;
79 if (exc_type == EXC_SOFTWARE && exc_data.size() == 2 && exc_data[0] == EXC_SOFT_SIGNAL)
85 return (exc_type == EXC_BREAKPOINT) || ((exc_type == EXC_SOFTWARE) && exc_data[0] == 1);
131 static const char *Name(exception_type_t exc_type);
H A DMachException.cpp86 exception_type_t exc_type,
98 DNBLogThreaded ("::%s ( exc_port = 0x%4.4x, exc_type = %d ( %s ), exc_data = 0x%llx, exc_data_count = %d)",
101 exc_type, MachException::Name(exc_type),
115 exception_type_t exc_type,
127 DNBLogThreaded("::%s ( exc_port = 0x%4.4x, thd_port = 0x%4.4x, tsk_port = 0x%4.4x, exc_type = %d ( %s ), exc_data[%d] = { 0x%llx, 0x%llx })",
132 exc_type, MachException::Name(exc_type),
150 exception_type_t exc_type,
156 DNBLogThreaded ("::%s ( exc_port = 0x%4.4x, thd_port = 0x%4.4x, tsk_port = 0x%4.4x, exc_type
83 catch_mach_exception_raise_state( mach_port_t exc_port, exception_type_t exc_type, const mach_exception_data_t exc_data, mach_msg_type_number_t exc_data_count, int * flavor, const thread_state_t old_state, mach_msg_type_number_t old_stateCnt, thread_state_t new_state, mach_msg_type_number_t * new_stateCnt ) argument
110 catch_mach_exception_raise_state_identity( mach_port_t exc_port, mach_port_t thread_port, mach_port_t task_port, exception_type_t exc_type, mach_exception_data_t exc_data, mach_msg_type_number_t exc_data_count, int * flavor, thread_state_t old_state, mach_msg_type_number_t old_stateCnt, thread_state_t new_state, mach_msg_type_number_t *new_stateCnt ) argument
145 catch_mach_exception_raise( mach_port_t exc_port, mach_port_t thread_port, mach_port_t task_port, exception_type_t exc_type, mach_exception_data_t exc_data, mach_msg_type_number_t exc_data_count) argument
553 Name(exception_type_t exc_type) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DGenerator.c34 PyObject *exc_type; member in struct:__anon11752
149 PyObject *exc_type = self->exc_type; local
153 self->exc_type = NULL;
157 Py_XDECREF(exc_type);
209 __Pyx_ExceptionSwap(&self->exc_type, &self->exc_value,
220 __Pyx_ExceptionSwap(&self->exc_type, &self->exc_value,
441 Py_VISIT(gen->exc_type);
453 Py_CLEAR(gen->exc_type);
645 gen->exc_type
[all...]
H A DObjectHandling.c167 PyObject* exc_type = PyErr_Occurred(); local
168 if (exc_type) {
169 if (unlikely(exc_type != PyExc_StopIteration) &&
170 !PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration))
195 PyObject* exc_type = tstate->curexc_type; local
196 if (unlikely(exc_type)) {
197 if (likely(exc_type == PyExc_StopIteration) || PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)) {
204 Py_DECREF(exc_type);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1451 uint32_t exc_type = 0; local
1462 exc_type = Args::StringToUInt32 (value.c_str(), 0, 16);
1582 if (exc_type != 0)
1587 exc_type,

Completed in 511 milliseconds