Lines Matching refs:entry_counter
83 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
86 int entry_counter; member
101 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
104 int entry_counter; member
112 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
115 int entry_counter; member
122 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
125 int entry_counter; member
133 void on_entry(Event const&,FSM& ) {++entry_counter;} in on_entry()
136 int entry_counter; member
202 fsm.template get_state<player_::Stopped&>().entry_counter=0; in on_entry()
204 fsm.template get_state<player_::Open&>().entry_counter=0; in on_entry()
206 fsm.template get_state<player_::Empty&>().entry_counter=0; in on_entry()
209 fsm.template get_state<player_::Playing&>().entry_counter=0; in on_entry()
211 fsm.template get_state<player_::Paused&>().entry_counter=0; in on_entry()
227 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 1,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
232 …BOOST_CHECK_MESSAGE(p.get_state<player_::Open&>().entry_counter == 1,"Open entry not called correc… in BOOST_AUTO_TEST_CASE()
259 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 2,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
266 …BOOST_CHECK_MESSAGE(p.get_state<player_::Empty&>().entry_counter == 2,"Empty entry not called corr… in BOOST_AUTO_TEST_CASE()
272 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 1,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()
277 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().entry_counter == 1,"Playing entry not called … in BOOST_AUTO_TEST_CASE()
283 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().entry_counter == 1,"Paused entry not called co… in BOOST_AUTO_TEST_CASE()
289 …BOOST_CHECK_MESSAGE(p.get_state<player_::Playing&>().entry_counter == 2,"Playing entry not called … in BOOST_AUTO_TEST_CASE()
294 …BOOST_CHECK_MESSAGE(p.get_state<player_::Paused&>().entry_counter == 2,"Paused entry not called co… in BOOST_AUTO_TEST_CASE()
299 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 2,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()
304 …BOOST_CHECK_MESSAGE(p.get_state<player_::Stopped&>().entry_counter == 3,"Stopped entry not called … in BOOST_AUTO_TEST_CASE()