• Home
  • Raw
  • Download

Lines Matching refs:CallEvent

151                                    const CallEvent &, CheckerContext &)>;
164 SVal getStreamArg(const FnDescription *Desc, const CallEvent &Call) { in getStreamArg()
211 void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
212 bool evalCall(const CallEvent &Call, CheckerContext &C) const;
216 const CallEvent *Call,
266 void evalFopen(const FnDescription *Desc, const CallEvent &Call,
269 void preFreopen(const FnDescription *Desc, const CallEvent &Call,
271 void evalFreopen(const FnDescription *Desc, const CallEvent &Call,
274 void evalFclose(const FnDescription *Desc, const CallEvent &Call,
277 void preFread(const FnDescription *Desc, const CallEvent &Call,
280 void preFwrite(const FnDescription *Desc, const CallEvent &Call,
283 void evalFreadFwrite(const FnDescription *Desc, const CallEvent &Call,
286 void preFseek(const FnDescription *Desc, const CallEvent &Call,
288 void evalFseek(const FnDescription *Desc, const CallEvent &Call,
291 void preDefault(const FnDescription *Desc, const CallEvent &Call,
294 void evalClearerr(const FnDescription *Desc, const CallEvent &Call,
297 void evalFeofFerror(const FnDescription *Desc, const CallEvent &Call,
301 void evalSetFeofFerror(const FnDescription *Desc, const CallEvent &Call,
349 const FnDescription *lookupFn(const CallEvent &Call) const { in lookupFn()
421 void StreamChecker::checkPreCall(const CallEvent &Call, in checkPreCall()
430 bool StreamChecker::evalCall(const CallEvent &Call, CheckerContext &C) const { in evalCall()
442 void StreamChecker::evalFopen(const FnDescription *Desc, const CallEvent &Call, in evalFopen()
471 void StreamChecker::preFreopen(const FnDescription *Desc, const CallEvent &Call, in preFreopen()
483 const CallEvent &Call, in evalFreopen()
527 void StreamChecker::evalFclose(const FnDescription *Desc, const CallEvent &Call, in evalFclose()
548 void StreamChecker::preFread(const FnDescription *Desc, const CallEvent &Call, in preFread()
572 void StreamChecker::preFwrite(const FnDescription *Desc, const CallEvent &Call, in preFwrite()
590 const CallEvent &Call, CheckerContext &C, in evalFreadFwrite()
670 void StreamChecker::preFseek(const FnDescription *Desc, const CallEvent &Call, in preFseek()
687 void StreamChecker::evalFseek(const FnDescription *Desc, const CallEvent &Call, in evalFseek()
729 const CallEvent &Call, in evalClearerr()
750 const CallEvent &Call, CheckerContext &C, in evalFeofFerror()
789 void StreamChecker::preDefault(const FnDescription *Desc, const CallEvent &Call, in preDefault()
804 const CallEvent &Call, CheckerContext &C, in evalSetFeofFerror()
1031 const CallEvent *Call, PointerEscapeKind Kind) const { in checkPointerEscape()