Lines Matching refs:Call
177 EXPECT_CALL(action1, Call(Truly(init), EVENT_START_AUTH)).Times(Exactly(1));
178 EXPECT_CALL(action2, Call(Truly(verify), EVENT_VERIFY_STARTED)).Times(Exactly(1));
183 [&action1](FiniteStateMachine &machine, uint32_t event) { action1.Call(machine, event); })
185 [&action2](FiniteStateMachine &machine, uint32_t event) { action2.Call(machine, event); });
212 EXPECT_CALL(action1, Call(Truly(init), EVENT_START_AUTH)).Times(Exactly(1));
213 EXPECT_CALL(action2, Call(Truly(verify), EVENT_VERIFY_STARTED)).Times(Exactly(1));
219 action1.Call(machine, event);
224 action2.Call(machine, event);
282 EXPECT_CALL(action, Call(_, STATE_INIT)).Times(Exactly(3));
289 action.Call(machine, STATE_INIT);
305 EXPECT_CALL(action, Call(_, STATE_INIT)).Times(Exactly(5));
312 action.Call(machine, STATE_INIT);
334 EXPECT_CALL(action, Call(_, STATE_INIT)).Times(Exactly(0));
340 action.Call(machine, STATE_INIT);
365 action.Call(machine, event);
370 [&action](FiniteStateMachine &machine, uint32_t event) { action.Call(machine, event); });
372 [&action](FiniteStateMachine &machine, uint32_t event) { action.Call(machine, event); });
374 [&action](FiniteStateMachine &machine, uint32_t event) { action.Call(machine, event); });
377 [&enter](FiniteStateMachine &machine, uint32_t event) { enter.Call(machine, event); });
379 [&leave](FiniteStateMachine &machine, uint32_t event) { leave.Call(machine, event); });
382 [&enter](FiniteStateMachine &machine, uint32_t event) { enter.Call(machine, event); });
384 [&leave](FiniteStateMachine &machine, uint32_t event) { leave.Call(machine, event); });
387 [&enter](FiniteStateMachine &machine, uint32_t event) { enter.Call(machine, event); });
389 [&leave](FiniteStateMachine &machine, uint32_t event) { leave.Call(machine, event); });
392 [&enter](FiniteStateMachine &machine, uint32_t event) { enter.Call(machine, event); });
394 [&leave](FiniteStateMachine &machine, uint32_t event) { leave.Call(machine, event); });
397 [&enter](FiniteStateMachine &machine, uint32_t event) { enter.Call(machine, event); });
410 EXPECT_CALL(action, Call(_, EVENT_START_AUTH));
411 EXPECT_CALL(leave, Call(_, STATE_INIT));
412 EXPECT_CALL(enter, Call(_, STATE_VERIFY_STARING));
414 EXPECT_CALL(action, Call(_, EVENT_VERIFY_STARTED));
415 EXPECT_CALL(leave, Call(_, STATE_VERIFY_STARING));
416 EXPECT_CALL(enter, Call(_, STATE_COLLECT_STARING));
418 EXPECT_CALL(action, Call(_, EVENT_COLLECT_STARTED));
419 EXPECT_CALL(leave, Call(_, STATE_COLLECT_STARING));
420 EXPECT_CALL(enter, Call(_, STATE_AUTH_PROCESSING));
422 EXPECT_CALL(action, Call(_, EVENT_USER_CANCEL));
423 EXPECT_CALL(leave, Call(_, STATE_AUTH_PROCESSING));
424 EXPECT_CALL(enter, Call(_, STATE_END));