Lines Matching refs:Exception
72 case StreamType::Exception: in getKind()
73 return StreamKind::Exception; in getKind()
100 case StreamKind::Exception: in create()
380 void yaml::MappingTraits<minidump::Exception>::mapping( in mapping()
381 yaml::IO &IO, minidump::Exception &Exception) { in mapping() argument
382 mapRequiredHex(IO, "Exception Code", Exception.ExceptionCode); in mapping()
383 mapOptionalHex(IO, "Exception Flags", Exception.ExceptionFlags, 0); in mapping()
384 mapOptionalHex(IO, "Exception Record", Exception.ExceptionRecord, 0); in mapping()
385 mapOptionalHex(IO, "Exception Address", Exception.ExceptionAddress, 0); in mapping()
386 mapOptional(IO, "Number of Parameters", Exception.NumberParameters, 0); in mapping()
388 for (size_t Index = 0; Index < Exception.MaxParameters; ++Index) { in mapping()
391 support::ulittle64_t &Field = Exception.ExceptionInformation[Index]; in mapping()
393 if (Index < Exception.NumberParameters) in mapping()
410 case MinidumpYAML::Stream::StreamKind::Exception: in mapping()
442 case MinidumpYAML::Stream::StreamKind::Exception: in validate()
466 case StreamKind::Exception: { in create()