Home | History | Annotate | Download | only in tests

Lines Matching defs:thread_data

37   thread_data_t* thread_data = reinterpret_cast<thread_data_t*>(data);
38 Thread* thread = thread_data->first;
39 volatile bool* finish = thread_data->second;
50 thread_data_t thread_data = std::make_pair(&thread, &finish);
55 ASSERT_TRUE(pthread_create(&thread_id, nullptr, ThreadWaitForReady, &thread_data) == 0);
67 thread_data_t* thread_data = reinterpret_cast<thread_data_t*>(data);
68 Thread* thread = thread_data->first;
69 volatile bool* finish = thread_data->second;
80 thread_data_t thread_data = std::make_pair(&thread, &finish);
83 ASSERT_TRUE(pthread_create(&thread_id, nullptr, ThreadWaitForPending, &thread_data) == 0);