Home | History | Annotate | Download | only in Checkers

Lines Matching defs:Report

252 // Report deallocator mismatch. Remove the region from tracking - reporting a
272 BugReport *Report = new BugReport(*BT, os.str(), N);
273 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
274 Report->addRange(ArgExpr->getSourceRange());
275 markInteresting(Report, AP);
276 C.emitReport(Report);
313 BugReport *Report = new BugReport(*BT, os.str(), N);
314 Report->addVisitor(new SecKeychainBugVisitor(V));
315 Report->addRange(ArgExpr->getSourceRange());
316 Report->markInteresting(AS->Region);
317 C.emitReport(Report);
339 // report it.
352 // If trying to free data which has not been allocated yet, report as a bug.
365 BugReport *Report = new BugReport(*BT,
367 Report->addRange(ArgExpr->getSourceRange());
369 Report->markInteresting(AS->Region);
370 C.emitReport(Report);
424 // report a bad call to free.
431 BugReport *Report = new BugReport(*BT,
433 Report->addVisitor(new SecKeychainBugVisitor(ArgSM));
434 Report->addRange(ArgExpr->getSourceRange());
435 Report->markInteresting(AS->Region);
436 C.emitReport(Report);
525 // allocated, and only report a single path.
540 BugReport *Report = new BugReport(*BT, os.str(), N, LocUsedForUniqueing,
543 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
544 markInteresting(Report, AP);
545 return Report;
564 // returned an error, do not report.