Home | History | Annotate | Download | only in include

Lines Matching refs:State

51     // Enumeration of state change events
54 enum class State {
64 using Listener = std::function<void(State)>;
90 Status onStateChanged(int state, int token) override {
93 if ((state >= static_cast<int>(State::kFirst)) &&
94 (state <= static_cast<int>(State::kLast))) {
95 parent->mListener(static_cast<State>(state));
97 ALOGE("onStateChanged unknown state received = %d", state);