Lines Matching refs:CE
55 bool evalCall(const CallExpr *CE, CheckerContext &C) const;
56 void checkPreStmt(const CallExpr *CE, CheckerContext &C) const;
59 void Chroot(CheckerContext &C, const CallExpr *CE) const;
60 void Chdir(CheckerContext &C, const CallExpr *CE) const;
65 bool ChrootChecker::evalCall(const CallExpr *CE, CheckerContext &C) const { in evalCall() argument
66 const FunctionDecl *FD = C.getCalleeDecl(CE); in evalCall()
77 Chroot(C, CE); in evalCall()
81 Chdir(C, CE); in evalCall()
88 void ChrootChecker::Chroot(CheckerContext &C, const CallExpr *CE) const { in Chroot()
98 void ChrootChecker::Chdir(CheckerContext &C, const CallExpr *CE) const { in Chdir()
108 const Expr *ArgExpr = CE->getArg(0); in Chdir()
125 void ChrootChecker::checkPreStmt(const CallExpr *CE, CheckerContext &C) const { in checkPreStmt() argument
126 const FunctionDecl *FD = C.getCalleeDecl(CE); in checkPreStmt()