Home | History | Annotate | Download | only in include

Lines Matching refs:Error

37 /* Error records contain enough info to generate an error report.  The idea
39 of errors, and we don't want to spew out a fresh error message for each
47 /* The tool-relevant parts of an Error are:
48 kind: what kind of error; must be in the range (0..)
55 Error;
59 ExeContext* VG_(get_error_where) ( const Error* err );
60 ErrorKind VG_(get_error_kind) ( const Error* err );
61 Addr VG_(get_error_address) ( const Error* err );
62 const HChar* VG_(get_error_string) ( const Error* err );
63 void* VG_(get_error_extra) ( const Error* err );
65 /* Call this when an error occurs. It will be recorded if it hasn't been
66 seen before. If it has, the existing error record will have its count
85 error -- useful for errors that can only happen once. The errors can be
87 'print_error' dictates whether to print the error, which is a bit of a
88 hack that's useful sometimes if you just want to know if the error would
90 whether to add the error in the error total count (another mild hack). */