Home | History | Annotate | Download | only in coregrind

Lines Matching refs:supp

78 static Supp* suppressions = NULL;
97 static Supp* is_suppressible_error ( const Error* err );
135 Supp* supp;
247 SuppKind VG_(get_supp_kind) ( const Supp* su )
252 HChar* VG_(get_supp_string) ( const Supp* su )
257 void* VG_(get_supp_extra) ( const Supp* su )
263 void VG_(set_supp_kind) ( Supp* su, SuppKind skind )
268 void VG_(set_supp_string) ( Supp* su, HChar* string )
273 void VG_(set_supp_extra) ( Supp* su, void* extra )
650 err->supp = NULL;
758 if (p->supp != NULL) {
760 p->supp->count++;
832 p->supp = is_suppressible_error(&err);
834 if (p->supp == NULL) {
844 p->supp->count++;
860 Supp *su;
913 Supp *su;
1001 if (p->supp != NULL) continue;
1065 if (err->supp != NULL)
1286 Supp* supp;
1287 supp = VG_(malloc)("errormgr.losf.1", sizeof(Supp));
1288 supp->count = 0;
1297 supp->string = supp->extra = NULL;
1301 VG_(free)(supp);
1311 supp->sname = VG_(strdup)("errormgr.losf.2", buf);
1312 supp->clo_suppressions_i = clo_suppressions_i;
1313 supp->sname_lineno = lineno;
1319 /* Check it has the "tool1,tool2,...:supp" form (look for ':') */
1323 if (buf[i] == '\0') BOMB("malformed 'tool1,tool2,...:supp' line");
1336 // supp->skind = ThreadSupp;
1344 if (VG_TDICT_CALL(tool_recognised_suppression, supp_name, supp)) {
1345 /* Do nothing, function fills in supp->skind */
1358 VG_(free)(supp->sname);
1359 VG_(free)(supp);
1368 fd, &buf, &nBuf, &lineno, supp))
1426 // Copy tmp_callers[] into supp->callers[]
1427 supp->n_callers = i;
1428 supp->callers = VG_(malloc)("errormgr.losf.4", i * sizeof(SuppLoc));
1429 for (i = 0; i < supp->n_callers; i++) {
1430 supp->callers[i] = tmp_callers[i];
1433 supp->next = suppressions;
1434 suppressions = supp;
1488 return False; /* there's no '?' equivalent in the supp syntax */
1587 static void clearIPtoFunOrObjCompleter ( const Supp *su,
1847 const Supp* su)
1880 Bool supp_matches_error(const Supp* su, const Error* err)
1902 error? If so, return a pointer to the Supp record, otherwise NULL.
1905 static Supp* is_suppressible_error ( const Error* err )
1907 Supp* su;
1908 Supp* su_prev;