Home | History | Annotate | Download | only in Checkers

Lines Matching refs:CheckerContext

18 #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
74 bool evalCall(const CallExpr *CE, CheckerContext &C) const;
75 void checkDeadSymbols(SymbolReaper &SymReaper, CheckerContext &C) const;
78 void Fopen(CheckerContext &C, const CallExpr *CE) const;
79 void Tmpfile(CheckerContext &C, const CallExpr *CE) const;
80 void Fclose(CheckerContext &C, const CallExpr *CE) const;
81 void Fread(CheckerContext &C, const CallExpr *CE) const;
82 void Fwrite(CheckerContext &C, const CallExpr *CE) const;
83 void Fseek(CheckerContext &C, const CallExpr *CE) const;
84 void Ftell(CheckerContext &C, const CallExpr *CE) const;
85 void Rewind(CheckerContext &C, const CallExpr *CE) const;
86 void Fgetpos(CheckerContext &C, const CallExpr *CE) const;
87 void Fsetpos(CheckerContext &C, const CallExpr *CE) const;
88 void Clearerr(CheckerContext &C, const CallExpr *CE) const;
89 void Feof(CheckerContext &C, const CallExpr *CE) const;
90 void Ferror(CheckerContext &C, const CallExpr *CE) const;
91 void Fileno(CheckerContext &C, const CallExpr *CE) const;
93 void OpenFileAux(CheckerContext &C, const CallExpr *CE) const;
96 CheckerContext &C) const;
98 CheckerContext &C) const;
106 bool StreamChecker::evalCall(const CallExpr *CE, CheckerContext &C) const {
201 void StreamChecker::Fopen(CheckerContext &C, const CallExpr *CE) const {
205 void StreamChecker::Tmpfile(CheckerContext &C, const CallExpr *CE) const {
209 void StreamChecker::OpenFileAux(CheckerContext &C, const CallExpr *CE) const {
235 void StreamChecker::Fclose(CheckerContext &C, const CallExpr *CE) const {
241 void StreamChecker::Fread(CheckerContext &C, const CallExpr *CE) const {
248 void StreamChecker::Fwrite(CheckerContext &C, const CallExpr *CE) const {
255 void StreamChecker::Fseek(CheckerContext &C, const CallExpr *CE) const {
282 void StreamChecker::Ftell(CheckerContext &C, const CallExpr *CE) const {
289 void StreamChecker::Rewind(CheckerContext &C, const CallExpr *CE) const {
296 void StreamChecker::Fgetpos(CheckerContext &C, const CallExpr *CE) const {
303 void StreamChecker::Fsetpos(CheckerContext &C, const CallExpr *CE) const {
310 void StreamChecker::Clearerr(CheckerContext &C, const CallExpr *CE) const {
317 void StreamChecker::Feof(CheckerContext &C, const CallExpr *CE) const {
324 void StreamChecker::Ferror(CheckerContext &C, const CallExpr *CE) const {
331 void StreamChecker::Fileno(CheckerContext &C, const CallExpr *CE) const {
339 CheckerContext &C) const {
363 CheckerContext &C) const {
396 CheckerContext &C) const {