Home
last modified time | relevance | path

Searched refs:EmitBasicReport (Results 1 – 13 of 13) sorted by relevance

/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporter.h335 void EmitBasicReport(llvm::StringRef BugName, llvm::StringRef BugStr,
339 void EmitBasicReport(llvm::StringRef BugName, llvm::StringRef BugCategory,
344 void EmitBasicReport(llvm::StringRef BugName, llvm::StringRef BugStr, in EmitBasicReport() function
346 EmitBasicReport(BugName, BugStr, Loc, 0, 0); in EmitBasicReport()
349 void EmitBasicReport(llvm::StringRef BugName, llvm::StringRef BugCategory, in EmitBasicReport() function
351 EmitBasicReport(BugName, BugCategory, BugStr, Loc, 0, 0); in EmitBasicReport()
354 void EmitBasicReport(llvm::StringRef BugName, llvm::StringRef BugStr, in EmitBasicReport() function
356 EmitBasicReport(BugName, BugStr, Loc, &R, 1); in EmitBasicReport()
359 void EmitBasicReport(llvm::StringRef BugName, llvm::StringRef Category, in EmitBasicReport() function
362 EmitBasicReport(BugName, Category, BugStr, Loc, &R, 1); in EmitBasicReport()
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckSecuritySyntaxOnly.cpp262 BR.EmitBasicReport(bugType, "Security", os.str(), in checkLoopConditionForFloat()
293 BR.EmitBasicReport("Potential buffer overflow in call to 'gets'", in checkCall_gets()
329 BR.EmitBasicReport("Potential buffer overflow in call to 'getpw'", in checkCall_getpw()
362 BR.EmitBasicReport("Potential insecure temporary file in call 'mktemp'", in checkCall_mktemp()
381 BR.EmitBasicReport("Potential insecure memory buffer bounds restriction in " in checkCall_strcpy()
403 BR.EmitBasicReport("Potential insecure memory buffer bounds restriction in " in checkCall_strcat()
482 BR.EmitBasicReport(os1.str(), "Security", os2.str(),CE->getLocStart(), &R, 1); in checkCall_rand()
505 BR.EmitBasicReport("'random' is not a secure random number generator", in checkCall_random()
569 BR.EmitBasicReport(os1.str(), "Security", os2.str(),CE->getLocStart(), &R, 1); in checkUncheckedReturnValue()
DAnalyzerStatsChecker.cpp96 B.EmitBasicReport("Analyzer Statistics", "Internal Statistics", output.str(), in checkEndAnalysis()
108 B.EmitBasicReport("Bailout Point", "Internal Statistics", "The analyzer " in checkEndAnalysis()
DCheckObjCDealloc.cpp179 BR.EmitBasicReport(name, os.str(), D->getLocStart()); in checkObjCDealloc()
196 BR.EmitBasicReport(name, os.str(), D->getLocStart()); in checkObjCDealloc()
260 BR.EmitBasicReport(name, category, os.str(), (*I)->getLocation()); in checkObjCDealloc()
DNSAutoreleasePoolChecker.cpp70 C.getBugReporter().EmitBasicReport("Use -drain instead of -release", in checkPreObjCMessage()
DCheckSizeofPointer.cpp62 BR.EmitBasicReport("Potential unintended use of sizeof() on pointer type", in VisitUnaryExprOrTypeTraitExpr()
DNSErrorChecker.cpp75 BR.EmitBasicReport("Bad return type when passing NSError**", in checkASTDecl()
121 BR.EmitBasicReport("Bad return type when passing CFErrorRef*", in checkASTDecl()
DLLVMConventionsChecker.cpp179 BR.EmitBasicReport(desc, "LLVM Conventions", desc, in VisitVarDecl()
282 BR.EmitBasicReport("AST node allocates heap memory", "LLVM Conventions", in ReportError()
DCheckObjCInstMethSignature.cpp69 BR.EmitBasicReport("Incompatible instance method return type", in CompareReturnTypes()
DUnreachableCodeChecker.cpp140 B.EmitBasicReport("Unreachable code", "Dead code", "This statement is never" in checkEndAnalysis()
DObjCUnusedIVarsChecker.cpp162 BR.EmitBasicReport("Unused instance variable", "Optimization", in checkObjCUnusedIvar()
DDeadStoresChecker.cpp134 BR.EmitBasicReport(BugType, "Dead store", msg, L, R); in Report()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporter.cpp1875 void BugReporter::EmitBasicReport(llvm::StringRef name, llvm::StringRef str, in EmitBasicReport() function in BugReporter
1878 EmitBasicReport(name, "", str, Loc, RBeg, NumRanges); in EmitBasicReport()
1881 void BugReporter::EmitBasicReport(llvm::StringRef name, in EmitBasicReport() function in BugReporter