Home
last modified time | relevance | path

Searched refs:ChrootChecker (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DChrootChecker.cpp41 class ChrootChecker : public Checker<eval::Call, check::PreCall> { class
48 ChrootChecker() {} in ChrootChecker() function in __anon6b37d9060111::ChrootChecker
65 bool ChrootChecker::evalCall(const CallEvent &Call, CheckerContext &C) const { in evalCall()
78 void ChrootChecker::evalChroot(const CallEvent &Call, CheckerContext &C) const { in evalChroot()
84 state = Mgr.addGDM(state, ChrootChecker::getTag(), (void*) ROOT_CHANGED); in evalChroot()
88 void ChrootChecker::evalChdir(const CallEvent &Call, CheckerContext &C) const { in evalChdir()
93 const void *k = state->FindGDM(ChrootChecker::getTag()); in evalChdir()
106 state = Mgr.addGDM(state, ChrootChecker::getTag(), in evalChdir()
115 void ChrootChecker::checkPreCall(const CallEvent &Call, in checkPreCall()
122 void *const* k = C.getState()->FindGDM(ChrootChecker::getTag()); in checkPreCall()
[all …]
/freebsd-13.1/lib/clang/libclang/
H A DMakefile554 SRCS_FUL+= StaticAnalyzer/Checkers/ChrootChecker.cpp
/freebsd-13.1/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td517 def ChrootChecker : Checker<"Chroot">,