Lines Matching refs:action
57 StateActions* action = new (std::nothrow) StateActions(); in ForState() local
58 if (action == nullptr) { in ForState()
63 states_[s] = action; in ForState()
77 StateActions& action = ForState(i); in FromState() local
78 AddAction(&action); in FromState()
87 StateActions* action = currState_->second; in ToState() local
88 if (action->timerId != INVALID_ID) { in ToState()
89 KillTimer(action->timerId); in ToState()
98 action = nextIt->second; in ToState()
99 if (action->cfg.delayUs != 0) { in ToState()
100 action->timerId = SetTimer(action->cfg.type, action->cfg.delayUs, action->cfg.cookie, this); in ToState()
152 StateActions *action = currState_->second; in ResetTimerDelay() local
153 if (action == nullptr) { in ResetTimerDelay()
157 if ((action->timerId == INVALID_ID) || (action->cfg.delayUs == 0)) { in ResetTimerDelay()
161 …action->timerId = ResetTimer(action->timerId, action->cfg.type, action->cfg.delayUs, action->cfg.c… in ResetTimerDelay()