Lines Matching refs:xmlout
573 FILE *xmlout = NULL, *stackout = NULL, *checksumout = NULL; in ReportCrash() local
589 xmlout = fdopen( fdxml , "w" ); in ReportCrash()
598 if ( xmlout && stackout && checksumout ) in ReportCrash()
600 fprintf( xmlout, "<errormail:Stack type=\"%s\">\n", STACKTYPE ); in ReportCrash()
611 fprintf( xmlout, "<errormail:StackInfo pos=\"%d\" ip=\"0x%" SAL_PRIxUINTPTR "\"", in ReportCrash()
676 …fprintf( xmlout, " rel=\"0x%" SAL_PRI_PTRDIFFT "x\"", (char *)stackframes[iFrame] - (char *)dl_inf… in ReportCrash()
678 fprintf( xmlout, " name=\"%s\"", dli_fname ); in ReportCrash()
681 fprintf( xmlout, " path=\"%s\"", dli_fdir ); in ReportCrash()
684 fprintf( xmlout, " dynamicoffset=\"0x%" SAL_PRI_SIZET "x\"", dynamic_offset ); in ReportCrash()
697 fputs( " ordinal=\"", xmlout ); in ReportCrash()
698 fputs_xml( dl_info.dli_sname, xmlout ); in ReportCrash()
699 fprintf( xmlout, "+0x%" SAL_PRI_PTRDIFFT "x\"", in ReportCrash()
710 fprintf( xmlout, "/>\n" ); in ReportCrash()
714 fprintf( xmlout, "</errormail:Stack>\n" ); in ReportCrash()
726 if ( xmlout ) in ReportCrash()
727 fclose( xmlout ); in ReportCrash()