Lines Matching refs:annotations
862 StructuredData::ArraySP annotations = ExtractCrashInfoAnnotations(process); in FetchExtendedCrashInformation() local
864 if (!annotations || !annotations->GetSize()) { in FetchExtendedCrashInformation()
872 extended_crash_info->AddItem("crash-info annotations", annotations); in FetchExtendedCrashInformation()
916 CrashInfoAnnotations annotations; in ExtractCrashInfoAnnotations() local
918 size_t bytes_read = process.ReadMemoryFromInferior(load_addr, &annotations, in ExtractCrashInfoAnnotations()
928 if (annotations.version < 5) { in ExtractCrashInfoAnnotations()
932 module_name, annotations.version); in ExtractCrashInfoAnnotations()
936 if (!annotations.message) { in ExtractCrashInfoAnnotations()
943 process.ReadCStringFromMemory(annotations.message, message, error); in ExtractCrashInfoAnnotations()
955 if (!annotations.message2) in ExtractCrashInfoAnnotations()
960 process.ReadCStringFromMemory(annotations.message2, message2, error); in ExtractCrashInfoAnnotations()
973 entry_sp->AddIntegerItem("abort-cause", annotations.abort_cause); in ExtractCrashInfoAnnotations()