/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
BugReporter.h | 62 class BugReport : public BugReporterVisitor { 88 BugReport(BugType& bt, llvm::StringRef desc, const ExplodedNode *errornode) 91 BugReport(BugType& bt, llvm::StringRef shortDesc, llvm::StringRef desc, 96 virtual ~BugReport(); 151 // List of *owned* BugReport objects. 152 std::list<BugReport*> Reports; 155 void AddReport(BugReport* R) { Reports.push_back(R); } 157 BugReportEquivClass(BugReport* R) { Reports.push_back(R); } 166 std::list<BugReport*>::iterator impl; 168 iterator(std::list<BugReport*>::iterator i) : impl(i) { [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
StreamChecker.cpp | 287 BugReport *R = new BugReport(*BT_illegalwhence, 356 BugReport *R =new BugReport(*BT_nullfp, BT_nullfp->getDescription(), N); 386 BugReport *R = new BugReport(*BT_doubleclose, 413 BugReport *R = new BugReport(*BT_ResourceLeak, 435 BugReport *R = new BugReport(*BT_ResourceLeak, [all...] |
ChrootChecker.cpp | 145 // If jail state is ROOT_CHANGED, generate BugReport. 154 BugReport *R = new BugReport(*BT_BreakJail,
|
MallocChecker.cpp | 354 BugReport *R = new BugReport(*BT_DoubleFree, 589 BugReport *R = new BugReport(*BT_Leak, BT_Leak->getDescription(), N); 614 BugReport *R = new BugReport(*BT_Leak, BT_Leak->getDescription(), N); 670 BugReport *R = new BugReport(*BT_UseFree, BT_UseFree->getDescription(),
|
CStringChecker.cpp | 546 BugReport *report = new BugReport(*BT_AdditionOverflow, warning, N); [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
BugReporter.cpp | 142 class NodeMapClosure : public BugReport::NodeResolver { 155 BugReport *R; 161 BugReport *r, NodeBackMap *Backmap, [all...] |
ExprEngine.cpp | [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CheckerContext.h | 157 void EmitReport(BugReport *R) {
|
/external/clang/tools/scan-view/ |
Reporter.py | 5 __all__ = ['ReportFailure', 'BugReport', 'getReporters'] 16 class BugReport:
|
ScanView.py | 324 bug = Reporter.BugReport(title, description, files)
|
/development/testrunner/ |
adb_interface.py | 93 def BugReport(self, path): 94 """Dumps adb bugreport to the file specified by the path. 97 path: Path of the file where adb bugreport is dumped to. 99 bug_output = self.SendShellCommand("bugreport", timeout_time=60)
|