Home | History | Annotate | Download | only in coregrind

Lines Matching refs:supp

77 static Supp* suppressions = NULL;
96 static Supp* is_suppressible_error ( Error* err );
134 Supp* supp;
241 SuppKind VG_(get_supp_kind) ( Supp* su )
246 Char* VG_(get_supp_string) ( Supp* su )
251 void* VG_(get_supp_extra) ( Supp* su )
257 void VG_(set_supp_kind) ( Supp* su, SuppKind skind )
262 void VG_(set_supp_string) ( Supp* su, Char* string )
267 void VG_(set_supp_extra) ( Supp* su, void* extra )
631 err->supp = NULL;
738 if (p->supp != NULL) {
740 p->supp->count++;
804 p->supp = is_suppressible_error(&err);
806 if (p->supp == NULL) {
816 p->supp->count++;
832 Supp *su;
885 Supp *su;
952 if (p->supp != NULL) continue;
1016 if (err->supp != NULL)
1209 Supp* supp;
1210 supp = VG_(arena_malloc)(VG_AR_CORE, "errormgr.losf.1",
1211 sizeof(Supp));
1212 supp->count = 0;
1221 supp->string = supp->extra = NULL;
1225 VG_(arena_free)(VG_AR_CORE, supp);
1235 supp->sname = VG_(arena_strdup)(VG_AR_CORE, "errormgr.losf.2", buf);
1241 /* Check it has the "tool1,tool2,...:supp" form (look for ':') */
1245 if (buf[i] == '\0') BOMB("malformed 'tool1,tool2,...:supp' line");
1258 // supp->skind = ThreadSupp;
1266 if (VG_TDICT_CALL(tool_recognised_suppression, supp_name, supp)) {
1267 /* Do nothing, function fills in supp->skind */
1280 VG_(arena_free)(VG_AR_CORE, supp->sname);
1281 VG_(arena_free)(VG_AR_CORE, supp);
1287 fd, &buf, &nBuf, supp))
1338 // Copy tmp_callers[] into supp->callers[]
1339 supp->n_callers = i;
1340 supp->callers = VG_(arena_malloc)(VG_AR_CORE, "errormgr.losf.4",
1342 for (i = 0; i < supp->n_callers; i++) {
1343 supp->callers[i] = tmp_callers[i];
1346 supp->next = suppressions;
1347 suppressions = supp;
1401 return False; /* there's no '?' equivalent in the supp syntax */
1547 static Bool supp_matches_callers(IPtoFunOrObjCompleter* ip2fo, Supp
1571 Bool supp_matches_error(Supp* su, Error* err)
1593 error? If so, return a pointer to the Supp record, otherwise NULL.
1596 static Supp* is_suppressible_error ( Error* err )
1598 Supp* su;
1599 Supp* su_prev;