Lines Matching refs:thrd
58 boost::thread thrd(&simple_thread); in do_test_creation() local
59 thrd.join(); in do_test_creation()
71 boost::thread thrd(boost::bind(&comparison_thread, self)); in do_test_id_comparison() local
72 thrd.join(); in do_test_id_comparison()
92 boost::thread thrd(boost::bind(&interruption_point_thread,&m,&failed)); in do_test_thread_interrupts_at_interruption_point() local
93 thrd.interrupt(); in do_test_thread_interrupts_at_interruption_point()
95 thrd.join(); in do_test_thread_interrupts_at_interruption_point()
117 boost::thread thrd(boost::bind(&disabled_interruption_point_thread,&m,&failed)); in do_test_thread_no_interrupt_if_interrupts_disabled_at_interruption_point() local
118 thrd.interrupt(); in do_test_thread_no_interrupt_if_interrupts_disabled_at_interruption_point()
120 thrd.join(); in do_test_thread_no_interrupt_if_interrupts_disabled_at_interruption_point()
148 boost::thread thrd(boost::ref(f)); in do_test_creation_through_reference_wrapper() local
149 thrd.join(); in do_test_creation_through_reference_wrapper()
181 boost::thread thrd(boost::ref(f)); in do_test_timed_join() local
182 BOOST_CHECK(thrd.joinable()); in do_test_timed_join()
184 bool const joined=thrd.timed_join(xt); in do_test_timed_join()
187 BOOST_CHECK(thrd.joinable()); in do_test_timed_join()
195 bool const joined2=thrd.timed_join(xt); in do_test_timed_join()
199 BOOST_CHECK(!thrd.joinable()); in do_test_timed_join()