Lines Matching refs:CheckerContext
37 void checkPreStmt(const CallExpr *CE, CheckerContext &C) const;
39 void CheckOpen(CheckerContext &C, const CallExpr *CE) const;
40 void CheckPthreadOnce(CheckerContext &C, const CallExpr *CE) const;
41 void CheckCallocZero(CheckerContext &C, const CallExpr *CE) const;
42 void CheckMallocZero(CheckerContext &C, const CallExpr *CE) const;
43 void CheckReallocZero(CheckerContext &C, const CallExpr *CE) const;
44 void CheckReallocfZero(CheckerContext &C, const CallExpr *CE) const;
45 void CheckAllocaZero(CheckerContext &C, const CallExpr *CE) const;
46 void CheckVallocZero(CheckerContext &C, const CallExpr *CE) const;
48 typedef void (UnixAPIChecker::*SubChecker)(CheckerContext &,
51 bool ReportZeroByteAllocation(CheckerContext &C,
55 void BasicAllocationCheck(CheckerContext &C,
65 void ReportOpenBug(CheckerContext &C,
76 void UnixAPIChecker::ReportOpenBug(CheckerContext &C, in ReportOpenBug()
91 void UnixAPIChecker::CheckOpen(CheckerContext &C, const CallExpr *CE) const { in CheckOpen()
168 void UnixAPIChecker::CheckPthreadOnce(CheckerContext &C, in CheckPthreadOnce()
230 bool UnixAPIChecker::ReportZeroByteAllocation(CheckerContext &C, in ReportZeroByteAllocation()
255 void UnixAPIChecker::BasicAllocationCheck(CheckerContext &C, in BasicAllocationCheck()
284 void UnixAPIChecker::CheckCallocZero(CheckerContext &C, in CheckCallocZero()
320 void UnixAPIChecker::CheckMallocZero(CheckerContext &C, in CheckMallocZero()
325 void UnixAPIChecker::CheckReallocZero(CheckerContext &C, in CheckReallocZero()
330 void UnixAPIChecker::CheckReallocfZero(CheckerContext &C, in CheckReallocfZero()
335 void UnixAPIChecker::CheckAllocaZero(CheckerContext &C, in CheckAllocaZero()
340 void UnixAPIChecker::CheckVallocZero(CheckerContext &C, in CheckVallocZero()
351 CheckerContext &C) const { in checkPreStmt()