Home | History | Annotate | Download | only in helgrind

Lines Matching defs:Misc

282       XE_Misc            // misc other error (w/ string to describe it)
355 } Misc;
672 xe.XE.Misc.thr = thr;
673 xe.XE.Misc.errstr = string_table_strdup(errstr);
674 xe.XE.Misc.auxstr = auxstr ? string_table_strdup(auxstr) : NULL;
675 xe.XE.Misc.auxctx = auxctx;
724 return xe1->XE.Misc.thr == xe2->XE.Misc.thr
725 && 0==VG_(strcmp)(xe1->XE.Misc.errstr, xe2->XE.Misc.errstr);
895 announce_one_thread( xe->XE.Misc.thr );
944 tl_assert( HG_(is_sane_Thread)( xe->XE.Misc
950 (Int)xe->XE.Misc.thr->errmsg_index,
951 xe->XE.Misc.errstr );
953 (Int)xe->XE.Misc.thr->errmsg_index );
956 if (xe->XE.Misc.auxstr) {
957 emit(" <auxwhat>%s</auxwhat>\n", xe->XE.Misc.auxstr);
958 if (xe->XE.Misc.auxctx)
959 VG_(pp_ExeContext)( xe->XE.Misc.auxctx );
965 (Int)xe->XE.Misc.thr->errmsg_index,
966 xe->XE.Misc.errstr );
968 if (xe->XE.Misc.auxstr) {
969 emit(" %s\n", xe->XE.Misc.auxstr);
970 if (xe->XE.Misc.auxctx)
971 VG_(pp_ExeContext)( xe->XE.Misc.auxctx );
1345 case XE_Misc: return "Misc";
1364 TRY("Misc", XS_Misc);