Home | History | Annotate | Download | only in Checkers

Lines Matching defs:AP

98   void generateDeallocatorMismatchReport(const AllocationPair &AP,
106 BugReport *generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
124 void markInteresting(BugReport *R, const AllocationPair &AP) const {
125 R->markInteresting(AP.first);
126 R->markInteresting(AP.second->Region);
255 generateDeallocatorMismatchReport(const AllocationPair &AP,
259 State = State->remove<AllocatedData>(AP.first);
268 FunctionsToTrack[AP.second->AllocatorIdx].DeallocatorIdx;
273 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
275 markInteresting(Report, AP);
382 const AllocationPair AP = std::make_pair(ArgSM, AS);
383 generateDeallocatorMismatchReport(AP, ArgExpr, C);
392 const AllocationPair AP = std::make_pair(ArgSM, AS);
393 generateDeallocatorMismatchReport(AP, ArgExpr, C);
418 const AllocationPair AP = std::make_pair(ArgSM, AS);
419 generateDeallocatorMismatchReport(AP, ArgExpr, C);
513 generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
516 const ADFunctionInfo &FI = FunctionsToTrack[AP.second->AllocatorIdx];
527 const ExplodedNode *AllocNode = getAllocationNode(N, AP.first, C);
543 Report->addVisitor(new SecKeychainBugVisitor(AP.first));
544 markInteresting(Report, AP);