Home
last modified time | relevance | path

Searched refs:markInteresting (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSKeychainAPIChecker.cpp121 void markInteresting(BugReport *R, const AllocationPair &AP) const { in markInteresting() function in __anon3797eaeb0111::MacOSKeychainAPIChecker
122 R->markInteresting(AP.first); in markInteresting()
123 R->markInteresting(AP.second->Region); in markInteresting()
243 markInteresting(Report.get(), AP); in generateDeallocatorMismatchReport()
287 Report->markInteresting(AS->Region); in checkPreStmt()
342 Report->markInteresting(AS->Region); in checkPreStmt()
496 markInteresting(Report.get(), AP); in generateAllocatedDataNotReleasedReport()
H A DSimpleStreamChecker.cpp213 R->markInteresting(FileDescSym); in reportDoubleClose()
225 R->markInteresting(LeakedStream); in reportLeaks()
H A DPointerArithChecker.cpp180 R->markInteresting(ArrayRegion); in reportPointerArithMisuse()
203 R->markInteresting(Region); in reportPointerArithMisuse()
H A DDeleteWithNonVirtualDtorChecker.cpp99 R->markInteresting(BaseClassRegion); in checkPreStmt()
H A DMallocChecker.cpp1817 R->markInteresting(MR); in ReportBadFree()
1897 R->markInteresting(Sym); in ReportMismatchedDealloc()
1956 R->markInteresting(MR->getBaseRegion()); in ReportOffsetFree()
1987 R->markInteresting(Sym); in ReportUseAfterFree()
2021 R->markInteresting(Sym); in ReportDoubleFree()
2023 R->markInteresting(PrevSym); in ReportDoubleFree()
2047 R->markInteresting(Sym); in ReportDoubleDelete()
2077 R->markInteresting(Sym); in ReportUseZeroAllocated()
2113 R->markInteresting(MR); in ReportFunctionPointerFree()
2340 R->markInteresting(Sym); in reportLeak()
[all …]
H A DValistChecker.cpp258 R->markInteresting(VAList); in reportUninitializedAccess()
301 R->markInteresting(Reg); in reportLeakedVALists()
H A DBlockInCriticalSectionChecker.cpp179 R->markInteresting(BlockDescSym); in reportBlockInCritSection()
H A DDynamicTypeChecker.cpp86 R->markInteresting(Reg); in reportTypeError()
H A DIteratorChecker.cpp1588 R->markInteresting(Val); in reportOutOfRangeBug()
1597 R->markInteresting(Val1); in reportMismatchedBug()
1598 R->markInteresting(Val2); in reportMismatchedBug()
1607 R->markInteresting(Val); in reportMismatchedBug()
1608 R->markInteresting(Reg); in reportMismatchedBug()
1616 R->markInteresting(Val); in reportInvalidatedBug()
H A DDynamicTypePropagation.cpp925 R->markInteresting(Sym); in reportGenericsBug()
H A DNullabilityChecker.cpp169 R->markInteresting(Region); in reportBug()
H A DLocalizationChecker.cpp773 R->markInteresting(S); in reportLocalizationError()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIBugReporter.cpp45 Report->markInteresting(RequestRegion); in reportDoubleNonblocking()
65 Report->markInteresting(RequestRegion); in reportMissingWait()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h224 void markInteresting(SymbolRef sym);
225 void markInteresting(const MemRegion *R);
226 void markInteresting(SVal V);
227 void markInteresting(const LocationContext *LC);
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp601 BR.markInteresting(Sym); in getEndPath()
611 BR.markInteresting(Sym); in getEndPath()
619 BR.markInteresting(AllocI.InterestingMethodContext); in getEndPath()
742 markInteresting(AllocI.InterestingMethodContext); in deriveAllocLocation()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp852 R.markInteresting(ChildV); in reversePropagateIntererstingSymbols()
859 R.markInteresting(V); in reversePropagateIntererstingSymbols()
2089 void BugReport::markInteresting(SymbolRef sym) { in markInteresting() function in BugReport
2099 void BugReport::markInteresting(const MemRegion *R) { in markInteresting() function in BugReport
2110 void BugReport::markInteresting(SVal V) { in markInteresting() function in BugReport
2111 markInteresting(V.getAsRegion()); in markInteresting()
2112 markInteresting(V.getAsSymbol()); in markInteresting()
2115 void BugReport::markInteresting(const LocationContext *LC) { in markInteresting() function in BugReport
H A DBugReporterVisitors.cpp842 BR.markInteresting(CalleeContext); in addVisitorIfNecessary()
1650 report.markInteresting(V); in trackExpressionValue()
1710 report.markInteresting(RegionRVal); in trackExpressionValue()
2363 BR.markInteresting(CEnter->getCalleeContext()); in VisitNode()