Searched refs:DerefKind (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DereferenceChecker.cpp | 34 enum DerefKind { NullPointer, UndefinedPointerValue, AddressOfLabel }; enum in __anon0e87d1db0111::DereferenceChecker 42 void reportBug(DerefKind K, ProgramStateRef State, const Stmt *S, 156 void DereferenceChecker::reportBug(DerefKind K, ProgramStateRef State, in reportBug() 162 case DerefKind::NullPointer: in reportBug() 167 case DerefKind::UndefinedPointerValue: in reportBug() 172 case DerefKind::AddressOfLabel: in reportBug() 251 reportBug(DerefKind::UndefinedPointerValue, C.getState(), DerefExpr, C); in checkLocation() 272 reportBug(DerefKind::NullPointer, nullState, expr, C); in checkLocation() 299 reportBug(DerefKind::AddressOfLabel, C.getState(), S, C); in checkBind() 320 reportBug(DerefKind::NullPointer, StNull, expr, C); in checkBind()
|