Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DFuchsiaHandleChecker.cpp114 class HandleState { class
118 HandleState(Kind K, SymbolRef ErrorSym) : K(K), ErrorSym(ErrorSym) {} in HandleState() function in __anonec9de0470111::HandleState
121 bool operator==(const HandleState &Other) const { in operator ==()
130 static HandleState getMaybeAllocated(SymbolRef ErrorSym) { in getMaybeAllocated()
131 return HandleState(Kind::MaybeAllocated, ErrorSym); in getMaybeAllocated()
133 static HandleState getAllocated(ProgramStateRef State, HandleState S) { in getAllocated()
138 return HandleState(Kind::Allocated, nullptr); in getAllocated()
140 static HandleState getReleased() { in getReleased()
141 return HandleState(Kind::Released, nullptr); in getReleased()
143 static HandleState getEscaped() { in getEscaped()
[all …]