Lines Matching refs:exc_data_count
59 const mach_exception_data_t exc_data, mach_msg_type_number_t exc_data_count, in catch_mach_exception_raise_state() argument
68 exc_data_count); in catch_mach_exception_raise_state()
76 mach_msg_type_number_t exc_data_count, int *flavor, in catch_mach_exception_raise_state_identity() argument
84 MachException::Name(exc_type), exc_data_count, in catch_mach_exception_raise_state_identity()
85 (uint64_t)(exc_data_count > 0 ? exc_data[0] : 0xBADDBADD), in catch_mach_exception_raise_state_identity()
86 (uint64_t)(exc_data_count > 1 ? exc_data[1] : 0xBADDBADD)); in catch_mach_exception_raise_state_identity()
96 mach_msg_type_number_t exc_data_count) { in catch_mach_exception_raise() argument
102 MachException::Name(exc_type), exc_data_count, in catch_mach_exception_raise()
103 (uint64_t)(exc_data_count > 0 ? exc_data[0] : 0xBADDBADD), in catch_mach_exception_raise()
104 (uint64_t)(exc_data_count > 1 ? exc_data[1] : 0xBADDBADD)); in catch_mach_exception_raise()
113 g_message->AppendExceptionData(exc_data, exc_data_count); in catch_mach_exception_raise()
117 if (exc_type == EXC_SOFTWARE && exc_data_count == 2 && in catch_mach_exception_raise()
125 g_message->AppendExceptionData(exc_data, exc_data_count); in catch_mach_exception_raise()
370 const size_t exc_data_count = exc_data.size(); in Dump() local
381 for (idx = 0; idx < exc_data_count; ++idx) { in Dump()