Searched refs:HandleState (Results 1 – 1 of 1) sorted by relevance
113 class HandleState { class117 HandleState(Kind K, SymbolRef ErrorSym) : K(K), ErrorSym(ErrorSym) {} in HandleState() function in __anon839dddbd0111::HandleState120 bool operator==(const HandleState &Other) const { in operator ==()129 static HandleState getMaybeAllocated(SymbolRef ErrorSym) { in getMaybeAllocated()130 return HandleState(Kind::MaybeAllocated, ErrorSym); in getMaybeAllocated()132 static HandleState getAllocated(ProgramStateRef State, HandleState S) { in getAllocated()137 return HandleState(Kind::Allocated, nullptr); in getAllocated()139 static HandleState getReleased() { in getReleased()140 return HandleState(Kind::Released, nullptr); in getReleased()142 static HandleState getEscaped() { in getEscaped()[all …]