Lines Matching refs:CallExpr
75 bool evalCall(const CallExpr *CE, CheckerContext &C) const;
79 void Fopen(CheckerContext &C, const CallExpr *CE) const;
80 void Tmpfile(CheckerContext &C, const CallExpr *CE) const;
81 void Fclose(CheckerContext &C, const CallExpr *CE) const;
82 void Fread(CheckerContext &C, const CallExpr *CE) const;
83 void Fwrite(CheckerContext &C, const CallExpr *CE) const;
84 void Fseek(CheckerContext &C, const CallExpr *CE) const;
85 void Ftell(CheckerContext &C, const CallExpr *CE) const;
86 void Rewind(CheckerContext &C, const CallExpr *CE) const;
87 void Fgetpos(CheckerContext &C, const CallExpr *CE) const;
88 void Fsetpos(CheckerContext &C, const CallExpr *CE) const;
89 void Clearerr(CheckerContext &C, const CallExpr *CE) const;
90 void Feof(CheckerContext &C, const CallExpr *CE) const;
91 void Ferror(CheckerContext &C, const CallExpr *CE) const;
92 void Fileno(CheckerContext &C, const CallExpr *CE) const;
94 void OpenFileAux(CheckerContext &C, const CallExpr *CE) const;
98 ProgramStateRef CheckDoubleClose(const CallExpr *CE, ProgramStateRef state,
107 bool StreamChecker::evalCall(const CallExpr *CE, CheckerContext &C) const { in REGISTER_MAP_WITH_PROGRAMSTATE()
202 void StreamChecker::Fopen(CheckerContext &C, const CallExpr *CE) const { in Fopen()
206 void StreamChecker::Tmpfile(CheckerContext &C, const CallExpr *CE) const { in Tmpfile()
210 void StreamChecker::OpenFileAux(CheckerContext &C, const CallExpr *CE) const { in OpenFileAux()
237 void StreamChecker::Fclose(CheckerContext &C, const CallExpr *CE) const { in Fclose()
243 void StreamChecker::Fread(CheckerContext &C, const CallExpr *CE) const { in Fread()
249 void StreamChecker::Fwrite(CheckerContext &C, const CallExpr *CE) const { in Fwrite()
255 void StreamChecker::Fseek(CheckerContext &C, const CallExpr *CE) const { in Fseek()
281 void StreamChecker::Ftell(CheckerContext &C, const CallExpr *CE) const { in Ftell()
287 void StreamChecker::Rewind(CheckerContext &C, const CallExpr *CE) const { in Rewind()
293 void StreamChecker::Fgetpos(CheckerContext &C, const CallExpr *CE) const { in Fgetpos()
299 void StreamChecker::Fsetpos(CheckerContext &C, const CallExpr *CE) const { in Fsetpos()
305 void StreamChecker::Clearerr(CheckerContext &C, const CallExpr *CE) const { in Clearerr()
311 void StreamChecker::Feof(CheckerContext &C, const CallExpr *CE) const { in Feof()
317 void StreamChecker::Ferror(CheckerContext &C, const CallExpr *CE) const { in Ferror()
323 void StreamChecker::Fileno(CheckerContext &C, const CallExpr *CE) const { in Fileno()
352 ProgramStateRef StreamChecker::CheckDoubleClose(const CallExpr *CE, in CheckDoubleClose()