Lines Matching refs:CheckerContext
48 void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
49 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
50 void checkEndFunction(const ReturnStmt *RS, CheckerContext &Ctx) const;
54 CheckerContext &C) const;
56 CheckerContext &C) const;
57 void EmitStackError(CheckerContext &C, const MemRegion *R,
63 getCapturedStackRegions(const BlockDataRegion &B, CheckerContext &C);
64 static bool isArcManagedBlock(const MemRegion *R, CheckerContext &C);
65 static bool isNotInCurrentFrame(const MemRegion *R, CheckerContext &C);
114 CheckerContext &C) { in isArcManagedBlock()
121 CheckerContext &C) { in isNotInCurrentFrame()
139 CheckerContext &C) { in getCapturedStackRegions()
152 void StackAddrEscapeChecker::EmitStackError(CheckerContext &C, in EmitStackError()
176 const BlockDataRegion &B, CheckerContext &C) const { in checkAsyncExecutedBlockCaptures()
215 const BlockDataRegion &B, CheckerContext &C) const { in checkReturnedBlockCaptures()
239 CheckerContext &C) const { in checkPreCall()
253 CheckerContext &C) const { in checkPreStmt()
295 CheckerContext &Ctx) const { in checkEndFunction()
305 CheckerContext &Ctx; in checkEndFunction()
311 CallBack(CheckerContext &CC) : Ctx(CC), CurSFC(CC.getStackFrame()) {} in checkEndFunction()