Lines Matching defs:Exception
71 case StreamType::Exception:
72 return StreamKind::Exception;
101 case StreamKind::Exception:
404 IO.mapRequired("Exception Record", Stream.MDExceptionStream.ExceptionRecord);
408 void yaml::MappingTraits<minidump::Exception>::mapping(
409 yaml::IO &IO, minidump::Exception &Exception) {
410 mapRequiredHex(IO, "Exception Code", Exception.ExceptionCode);
411 mapOptionalHex(IO, "Exception Flags", Exception.ExceptionFlags, 0);
412 mapOptionalHex(IO, "Exception Record", Exception.ExceptionRecord, 0);
413 mapOptionalHex(IO, "Exception Address", Exception.ExceptionAddress, 0);
414 mapOptional(IO, "Number of Parameters", Exception.NumberParameters, 0);
416 for (size_t Index = 0; Index < Exception.MaxParameters; ++Index) {
419 support::ulittle64_t &Field = Exception.ExceptionInformation[Index];
421 if (Index < Exception.NumberParameters)
438 case MinidumpYAML::Stream::StreamKind::Exception:
475 case MinidumpYAML::Stream::StreamKind::Exception:
499 case StreamKind::Exception: {