Lines Matching refs:State
42 // EventListener callbacks, in order to avoid ending in some undefined state.
45 // state of the socket (see below).
102 enum class State {
145 // stops listening. The socket goes back to kNotInitialized state, so it can
175 bool is_connected() const { return state_ == State::kConnected; }
176 bool is_listening() const { return state_ == State::kListening; }
181 // and the socket goes into the kDisconnected state, it retains the uid of
190 UnixSocket(EventListener*, base::TaskRunner*, base::ScopedFile, State);
203 State state_ = State::kDisconnected;