Lines Matching refs:leave
358 MockFunction<void(FiniteStateMachine &machine, uint32_t event)> &leave)
379 [&leave](FiniteStateMachine &machine, uint32_t event) { leave.Call(machine, event); });
384 [&leave](FiniteStateMachine &machine, uint32_t event) { leave.Call(machine, event); });
389 [&leave](FiniteStateMachine &machine, uint32_t event) { leave.Call(machine, event); });
394 [&leave](FiniteStateMachine &machine, uint32_t event) { leave.Call(machine, event); });
407 MockFunction<void(FiniteStateMachine & machine, uint32_t event)> leave;
411 EXPECT_CALL(leave, Call(_, STATE_INIT));
415 EXPECT_CALL(leave, Call(_, STATE_VERIFY_STARING));
419 EXPECT_CALL(leave, Call(_, STATE_COLLECT_STARING));
423 EXPECT_CALL(leave, Call(_, STATE_AUTH_PROCESSING));
427 GetTestMachine(machine, action, enter, leave);