Lines Matching defs:State
126 enum class State : uint8_t {
134 static std::string StateToString(State state)
137 case State::STOP:
139 case State::PAUSE:
141 case State::START:
143 case State::FORCE_SAVE:
145 case State::FORCE_SAVE_PAUSE:
152 State GetState();
153 void SetState(State state);
375 std::atomic<State> state_ {State::STOP};