Searched defs:exc_data (Results 1 - 3 of 3) sorted by relevance

/external/lldb/tools/debugserver/source/MacOSX/
H A DMachException.h54 std::vector<mach_exception_data_type_t> exc_data; member in struct:MachException::Data
59 exc_data()
68 exc_data.clear();
79 if (exc_type == EXC_SOFTWARE && exc_data.size() == 2 && exc_data[0] == EXC_SOFT_SIGNAL)
80 return exc_data[1];
85 return (exc_type == EXC_BREAKPOINT) || ((exc_type == EXC_SOFTWARE) && exc_data[0] == 1);
127 std::vector<mach_exception_data_type_t> exc_data_mask; // Mask to apply to exception data, or empty to ignore exc_data value for exception
128 std::vector<mach_exception_data_type_t> exc_data_value; // Value to compare to exception data after masking, or empty to ignore exc_data value for exception
H A DMachException.cpp87 const mach_exception_data_t exc_data,
98 DNBLogThreaded ("::%s ( exc_port = 0x%4.4x, exc_type = %d ( %s ), exc_data = 0x%llx, exc_data_count = %d)",
102 (uint64_t)exc_data,
116 mach_exception_data_t exc_data,
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 })",
134 (uint64_t)(exc_data_count > 0 ? exc_data[0] : 0xBADDBADD),
135 (uint64_t)(exc_data_count > 1 ? exc_data[1] : 0xBADDBADD));
151 mach_exception_data_t exc_data,
156 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 })",
163 (uint64_t)(exc_data_count > 0 ? exc_data[
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
[all...]
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1452 std::vector<addr_t> exc_data; local
1467 exc_data.push_back(Args::StringToUInt64 (value.c_str(), 0, 16));
1584 const size_t exc_data_size = exc_data.size();
1589 exc_data_size >= 1 ? exc_data[0] : 0,
1590 exc_data_size >= 2 ? exc_data[1] : 0,
1591 exc_data_size >= 3 ? exc_data[2] : 0));

Completed in 1264 milliseconds