Lines Matching refs:Report
242 auto Report = std::make_unique<PathSensitiveBugReport>(*BT, os.str(), N); in generateDeallocatorMismatchReport() local
243 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(AP.first)); in generateDeallocatorMismatchReport()
244 Report->addRange(ArgExpr->getSourceRange()); in generateDeallocatorMismatchReport()
245 markInteresting(Report.get(), AP); in generateDeallocatorMismatchReport()
246 C.emitReport(std::move(Report)); in generateDeallocatorMismatchReport()
286 auto Report = in checkPreStmt() local
288 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(V)); in checkPreStmt()
289 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
290 Report->markInteresting(AS->Region); in checkPreStmt()
291 C.emitReport(std::move(Report)); in checkPreStmt()
341 auto Report = std::make_unique<PathSensitiveBugReport>( in checkPreStmt() local
343 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
345 Report->markInteresting(AS->Region); in checkPreStmt()
346 C.emitReport(std::move(Report)); in checkPreStmt()
494 auto Report = std::make_unique<PathSensitiveBugReport>( in generateAllocatedDataNotReleasedReport() local
498 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(AP.first)); in generateAllocatedDataNotReleasedReport()
499 markInteresting(Report.get(), AP); in generateAllocatedDataNotReleasedReport()
500 return Report; in generateAllocatedDataNotReleasedReport()