Lines Matching refs:Call
43 void handleInteresting(const CallEvent &Call, CheckerContext &C) const;
44 void handleNotInteresting(const CallEvent &Call, CheckerContext &C) const;
45 void handleCheck(const CallEvent &Call, CheckerContext &C) const;
46 void handleBug(const CallEvent &Call, CheckerContext &C) const;
52 void checkPreCall(const CallEvent &Call, CheckerContext &C) const { in checkPreCall() argument
53 const HandlerFn *Handler = Handlers.lookup(Call); in checkPreCall()
57 (*Handler)(this, Call, C); in checkPreCall()
63 void InterestingnessTestChecker::handleInteresting(const CallEvent &Call, in handleInteresting() argument
65 SymbolRef Sym = Call.getArgSVal(0).getAsSymbol(); in handleInteresting()
73 void InterestingnessTestChecker::handleNotInteresting(const CallEvent &Call, in handleNotInteresting() argument
75 SymbolRef Sym = Call.getArgSVal(0).getAsSymbol(); in handleNotInteresting()
83 void InterestingnessTestChecker::handleCheck(const CallEvent &Call, in handleCheck() argument
85 SymbolRef Sym = Call.getArgSVal(0).getAsSymbol(); in handleCheck()
95 void InterestingnessTestChecker::handleBug(const CallEvent &Call, in handleBug() argument