Lines Matching refs:Report
237 auto Report = std::make_unique<PathSensitiveBugReport>(BT, os.str(), N); in generateDeallocatorMismatchReport() local
238 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(AP.first)); in generateDeallocatorMismatchReport()
239 Report->addRange(ArgExpr->getSourceRange()); in generateDeallocatorMismatchReport()
240 markInteresting(Report.get(), AP); in generateDeallocatorMismatchReport()
241 C.emitReport(std::move(Report)); in generateDeallocatorMismatchReport()
280 auto Report = std::make_unique<PathSensitiveBugReport>(BT, os.str(), N); in checkPreStmt() local
281 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(V)); in checkPreStmt()
282 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
283 Report->markInteresting(AS->Region); in checkPreStmt()
284 C.emitReport(std::move(Report)); in checkPreStmt()
333 auto Report = std::make_unique<PathSensitiveBugReport>( in checkPreStmt() local
335 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
337 Report->markInteresting(AS->Region); in checkPreStmt()
338 C.emitReport(std::move(Report)); in checkPreStmt()
485 auto Report = std::make_unique<PathSensitiveBugReport>( in generateAllocatedDataNotReleasedReport() local
489 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(AP.first)); in generateAllocatedDataNotReleasedReport()
490 markInteresting(Report.get(), AP); in generateAllocatedDataNotReleasedReport()
491 return Report; in generateAllocatedDataNotReleasedReport()