Home
last modified time | relevance | path

Searched refs:RetSym (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSetgidSetuidOrderChecker.cpp125 SymbolRef RetSym = Call.getReturnValue().getAsSymbol(); in processSetuid() local
127 State = State->set<LastSetuidCallSVal>(RetSym); in processSetuid()
129 RetSym](PathSensitiveBugReport &BR) { in processSetuid()
130 if (!BR.isInteresting(RetSym) || &BR.getBugType() != &this->BT) in processSetuid()
H A DStreamChecker.cpp898 SymbolRef RetSym = RetVal.getAsSymbol(); in evalFopen() local
899 assert(RetSym && "RetVal must be a symbol here."); in evalFopen()
910 StateNotNull->set<StreamMap>(RetSym, StreamState::getOpened(Desc)); in evalFopen()
912 StateNull->set<StreamMap>(RetSym, StreamState::getOpenFailed(Desc)); in evalFopen()
915 constructLeakNoteTag(C, RetSym, "Stream opened here")); in evalFopen()
H A DMallocChecker.cpp2882 for (auto [Sym, RetSym] : FR) { in checkDeadSymbols()
2883 if (SymReaper.isDead(Sym) || SymReaper.isDead(RetSym)) { in checkDeadSymbols()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp336 SymbolRef RetSym = SV.getAsLocSymbol(); in getMessage() local
337 if (RetSym == Sym) { in getMessage()