Lines Matching refs:Report
262 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N); in generateDeallocatorMismatchReport() local
263 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first)); in generateDeallocatorMismatchReport()
264 Report->addRange(ArgExpr->getSourceRange()); in generateDeallocatorMismatchReport()
265 markInteresting(Report.get(), AP); in generateDeallocatorMismatchReport()
266 C.emitReport(std::move(Report)); in generateDeallocatorMismatchReport()
307 auto Report = llvm::make_unique<BugReport>(*BT, os.str(), N); in checkPreStmt() local
308 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(V)); in checkPreStmt()
309 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
310 Report->markInteresting(AS->Region); in checkPreStmt()
311 C.emitReport(std::move(Report)); in checkPreStmt()
363 auto Report = llvm::make_unique<BugReport>( in checkPreStmt() local
365 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
367 Report->markInteresting(AS->Region); in checkPreStmt()
368 C.emitReport(std::move(Report)); in checkPreStmt()
429 auto Report = llvm::make_unique<BugReport>( in checkPreStmt() local
431 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(ArgSM)); in checkPreStmt()
432 Report->addRange(ArgExpr->getSourceRange()); in checkPreStmt()
433 Report->markInteresting(AS->Region); in checkPreStmt()
434 C.emitReport(std::move(Report)); in checkPreStmt()
539 auto Report = in generateAllocatedDataNotReleasedReport() local
543 Report->addVisitor(llvm::make_unique<SecKeychainBugVisitor>(AP.first)); in generateAllocatedDataNotReleasedReport()
544 markInteresting(Report.get(), AP); in generateAllocatedDataNotReleasedReport()
545 return Report; in generateAllocatedDataNotReleasedReport()