reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/ObjectYAML/MinidumpYAML.cpp
  381   mapRequiredHex(IO, "Exception Code", Exception.ExceptionCode);
  382   mapOptionalHex(IO, "Exception Flags", Exception.ExceptionFlags, 0);
  383   mapOptionalHex(IO, "Exception Record", Exception.ExceptionRecord, 0);
  384   mapOptionalHex(IO, "Exception Address", Exception.ExceptionAddress, 0);
  385   mapOptional(IO, "Number of Parameters", Exception.NumberParameters, 0);
  387   for (size_t Index = 0; Index < Exception.MaxParameters; ++Index) {
  390     support::ulittle64_t &Field = Exception.ExceptionInformation[Index];
  392     if (Index < Exception.NumberParameters)