Lines Matching refs:ptSub
282 pthread_t ptSub;
292 int rt = pthread_create(&ptSub, &attr, ThreadFunc1, (void*)&sem);
297 EXPECT_EQ(pthread_getschedparam(ptSub, &policy, ¶m), 0);
304 pthread_join(ptSub, nullptr);
314 pthread_t ptSub;
338 rt = pthread_create(&ptSub, &attr, ThreadFunc1, (void*)&sem);
346 EXPECT_EQ(pthread_getschedparam(ptSub, &policy, ¶m), 0);
353 pthread_join(ptSub, nullptr);
406 pthread_t ptSub;
416 int rt = pthread_create(&ptSub, &attr, ThrdFuncForSetSchedParamTest, (void*)&sem);
423 EXPECT_EQ(pthread_getschedparam(ptSub, &policy, ¶m), 0);
427 pthread_join(ptSub, nullptr);
458 pthread_t ptSub;
468 int rt = pthread_create(&ptSub, &attr, ThrdFuncForSetSchedPrioTest, (void*)&sem);
475 EXPECT_EQ(pthread_getschedparam(ptSub, &policy, ¶m), 0);
478 pthread_join(ptSub, nullptr);