Lines Matching refs:Report
241 auto Report = std::make_unique<PathSensitiveBugReport>(*BT, os.str(), N); in generateDeallocatorMismatchReport() local
242 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(AP.first)); in generateDeallocatorMismatchReport()
243 Report->addRange(ArgExpr->getSourceRange()); in generateDeallocatorMismatchReport()
244 markInteresting(Report.get(), AP); in generateDeallocatorMismatchReport()
245 C.emitReport(std::move(Report)); in generateDeallocatorMismatchReport()
285 auto Report = in checkPreStmt() local
287 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(V)); in checkPreStmt()
288 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
289 Report->markInteresting(AS->Region); in checkPreStmt()
290 C.emitReport(std::move(Report)); in checkPreStmt()
340 auto Report = std::make_unique<PathSensitiveBugReport>( in checkPreStmt() local
342 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
344 Report->markInteresting(AS->Region); in checkPreStmt()
345 C.emitReport(std::move(Report)); in checkPreStmt()
493 auto Report = std::make_unique<PathSensitiveBugReport>( in generateAllocatedDataNotReleasedReport() local
497 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(AP.first)); in generateAllocatedDataNotReleasedReport()
498 markInteresting(Report.get(), AP); in generateAllocatedDataNotReleasedReport()
499 return Report; in generateAllocatedDataNotReleasedReport()