Lines Matching refs:action
281 MockFunction<void(FiniteStateMachine & machine, uint32_t event)> action; variable
282 EXPECT_CALL(action, Call(_, STATE_INIT)).Times(Exactly(3));
288 [&action](FiniteStateMachine &machine, [[maybe_unused]] uint32_t event) { in __anon5e84d7ab0b02()
289 action.Call(machine, STATE_INIT); in __anon5e84d7ab0b02()
304 MockFunction<void(FiniteStateMachine & machine, uint32_t event)> action; variable
305 EXPECT_CALL(action, Call(_, STATE_INIT)).Times(Exactly(5));
310 [&action](FiniteStateMachine &machine, [[maybe_unused]] uint32_t event) { in __anon5e84d7ab0c02()
312 action.Call(machine, STATE_INIT); in __anon5e84d7ab0c02()
333 MockFunction<void(FiniteStateMachine & machine, uint32_t event)> action; variable
334 EXPECT_CALL(action, Call(_, STATE_INIT)).Times(Exactly(0));
339 [&action](FiniteStateMachine &machine, [[maybe_unused]] uint32_t event) { in __anon5e84d7ab0d02()
340 action.Call(machine, STATE_INIT); in __anon5e84d7ab0d02()
356 MockFunction<void(FiniteStateMachine & machine, uint32_t event)> &action, in GetTestMachine() argument
365 [&action](FiniteStateMachine &machine, uint32_t event) { in GetTestMachine()
366 action.Call(machine, event); in GetTestMachine()
371 [&action](FiniteStateMachine &machine, uint32_t event) { action.Call(machine, event); }) in GetTestMachine()
373 [&action](FiniteStateMachine &machine, uint32_t event) { action.Call(machine, event); }) in GetTestMachine()
375 [&action](FiniteStateMachine &machine, uint32_t event) { action.Call(machine, event); }); in GetTestMachine()
406 MockFunction<void(FiniteStateMachine & machine, uint32_t event)> action; variable
411 EXPECT_CALL(action, Call(_, EVENT_START_AUTH));
415 EXPECT_CALL(action, Call(_, EVENT_VERIFY_STARTED));
419 EXPECT_CALL(action, Call(_, EVENT_COLLECT_STARTED));
423 EXPECT_CALL(action, Call(_, EVENT_USER_CANCEL));
428 GetTestMachine(machine, action, enter, leave);