Home | History | Annotate | Download | only in MacOSX

Lines Matching refs:exception

32     exception_type_t exception,
41 exception_type_t exception,
58 exception_type_t exception,
211 // Save the EXC_XXXX exception type
212 stop_info->details.exception.type = exc_type;
223 stop_info->details.exception.data_count = exc_data.size();
236 // No special disassembly for exception data, just
240 desc += snprintf(desc, end_desc - desc, " data[%llu] = {", (uint64_t)stop_info->details.exception.data_count);
242 for (idx = 0; desc < end_desc && idx < stop_info->details.exception.data_count; ++idx)
243 desc += snprintf(desc, end_desc - desc, "0x%llx%c", (uint64_t)exc_data[idx], ((idx + 1 == stop_info->details.exception.data_count) ? '}' : ','));
247 // Copy the exception data
249 for (i=0; i<stop_info->details.exception.data_count; i++)
250 stop_info->details.exception.data[i] = exc_data[i];
299 port, // exception port to watch for exception on
334 // exception in a thread. Such messages are delivered to the exception port
336 // exception occurs in a thread, the thread sends an exception message to
337 // its exception port, blocking in the kernel waiting for the receipt of a
341 // which should handle the exception. If the called routine returns
343 // continue from the point of the exception; otherwise, no reply message
344 // is sent and the called routine must have dealt with the exception
363 // Reply to the exception...
454 // Dump any special exception data contents