Lines Matching refs:thread_t
405 pthread_t thread_t; in FIXTURE_SETUP() local
436 rc = pthread_create(&thread_t, NULL, virtual_dev_open_v2, in FIXTURE_SETUP()
439 rc = pthread_create(&thread_t, NULL, virtual_dev_open, in FIXTURE_SETUP()
447 pthread_join(thread_t, (void **)&status); in FIXTURE_SETUP()
499 pthread_t thread_t; in FIXTURE_TEARDOWN() local
505 rc = pthread_create(&thread_t, NULL, in FIXTURE_TEARDOWN()
509 rc = pthread_create(&thread_t, NULL, virtual_deinit, in FIXTURE_TEARDOWN()
517 pthread_join(thread_t, (void **)&status); in FIXTURE_TEARDOWN()
587 pthread_t thread_t; in start_polling() local
591 rc = pthread_create(&thread_t, NULL, virtual_poll_start, in start_polling()
601 pthread_join(thread_t, (void **)&status); in start_polling()
607 pthread_t thread_t; in stop_polling() local
611 rc = pthread_create(&thread_t, NULL, virtual_poll_stop, in stop_polling()
621 pthread_join(thread_t, (void **)&status); in stop_polling()
817 pthread_t thread_t; in disconnect_tag() local
831 status = pthread_create(&thread_t, NULL, virtual_deactivate_proc, in disconnect_tag()
835 pthread_join(thread_t, (void **)&status); in disconnect_tag()
862 pthread_t thread_t; in TEST_F() local
872 rc = pthread_create(&thread_t, NULL, virtual_deinit_v2, in TEST_F()
875 rc = pthread_create(&thread_t, NULL, virtual_deinit, in TEST_F()
883 pthread_join(thread_t, (void **)&status); in TEST_F()