Home | History | Annotate | Download | only in coregrind

Lines Matching defs:supp

79 static Supp* suppressions = NULL;
98 static Supp* is_suppressible_error ( const Error* err );
136 Supp* supp;
248 SuppKind VG_(get_supp_kind) ( const Supp* su )
253 HChar* VG_(get_supp_string) ( const Supp* su )
258 void* VG_(get_supp_extra) ( const Supp* su )
264 void VG_(set_supp_kind) ( Supp* su, SuppKind skind )
269 void VG_(set_supp_string) ( Supp* su, HChar* string )
274 void VG_(set_supp_extra) ( Supp* su, void* extra )
661 err->supp = NULL;
769 if (p->supp != NULL) {
771 p->supp->count++;
843 p->supp = is_suppressible_error(&err);
845 if (p->supp == NULL) {
855 p->supp->count++;
871 Supp *su;
924 Supp *su;
1012 if (p->supp != NULL) continue;
1076 if (err->supp != NULL)
1297 Supp* supp;
1298 supp = VG_(malloc)("errormgr.losf.1", sizeof(Supp));
1299 supp->count = 0;
1308 supp->string = supp->extra = NULL;
1312 VG_(free)(supp);
1322 supp->sname = VG_(strdup)("errormgr.losf.2", buf);
1323 supp->clo_suppressions_i = clo_suppressions_i;
1324 supp->sname_lineno = lineno;
1330 /* Check it has the "tool1,tool2,...:supp" form (look for ':') */
1334 if (buf[i] == '\0') BOMB("malformed 'tool1,tool2,...:supp' line");
1347 // supp->skind = ThreadSupp;
1355 if (VG_TDICT_CALL(tool_recognised_suppression, supp_name, supp)) {
1356 /* Do nothing, function fills in supp->skind */
1369 VG_(free)(supp->sname);
1370 VG_(free)(supp);
1379 fd, &buf, &nBuf, &lineno, supp))
1437 // Copy tmp_callers[] into supp->callers[]
1438 supp->n_callers = i;
1439 supp->callers = VG_(malloc)("errormgr.losf.4", i * sizeof(SuppLoc));
1440 for (i = 0; i < supp->n_callers; i++) {
1441 supp->callers[i] = tmp_callers[i];
1444 supp->next = suppressions;
1445 suppressions = supp;
1499 return False; /* there's no '?' equivalent in the supp syntax */
1598 static void clearIPtoFunOrObjCompleter ( const Supp *su,
1858 const Supp* su)
1891 Bool supp_matches_error(const Supp* su, const Error* err)
1913 error? If so, return a pointer to the Supp record, otherwise NULL.
1916 static Supp* is_suppressible_error ( const Error* err )
1918 Supp* su;
1919 Supp* su_prev;