Lines Matching refs:entry_counter
77 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
80 int entry_counter; member
86 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
89 int entry_counter; member
97 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
100 int entry_counter; member
107 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
110 int entry_counter; member
118 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
121 int entry_counter; member
281 fsm.template get_state<player_::Stopped&>().entry_counter=0; in on_entry()
283 fsm.template get_state<player_::Open&>().entry_counter=0; in on_entry()
285 fsm.template get_state<player_::Empty&>().entry_counter=0; in on_entry()
287 fsm.template get_state<player_::Playing&>().entry_counter=0; in on_entry()
289 fsm.template get_state<player_::Paused&>().entry_counter=0; in on_entry()
305 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 1,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
310 …BOOST_CHECK_MESSAGE(p.get_state<player_::Open&>().entry_counter == 1,"Open entry not called correc… in BOOST_AUTO_TEST_CASE()
315 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 2,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
322 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 2,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
328 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 1,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()
330 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().entry_counter == 1,"Playing entry not called … in BOOST_AUTO_TEST_CASE()
337 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().entry_counter == 1,"Paused entry not called co… in BOOST_AUTO_TEST_CASE()
343 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().entry_counter == 2,"Playing entry not called … in BOOST_AUTO_TEST_CASE()
348 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().entry_counter == 2,"Paused entry not called co… in BOOST_AUTO_TEST_CASE()
353 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 2,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()
358 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 3,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()