Searched refs:null_thread (Results 1 – 1 of 1) sorted by relevance
/bionic/tests/ |
D | pthread_test.cpp | 505 pthread_t null_thread = 0; in TEST_F() local 506 EXPECT_EQ(ENOENT, pthread_setname_np(null_thread, "short 3")); in TEST_F() 519 pthread_t null_thread = 0; in TEST_F() local 522 EXPECT_EQ(ENOENT, pthread_getname_np(null_thread, name, sizeof(name))); in TEST_F() 576 pthread_t null_thread = 0; in TEST_F() local 577 EXPECT_EQ(ESRCH, pthread_detach(null_thread)); in TEST_F() 604 pthread_t null_thread = 0; in TEST_F() local 606 EXPECT_EQ(ESRCH, pthread_getcpuclockid(null_thread, &c)); in TEST_F() 620 pthread_t null_thread = 0; in TEST_F() local 623 EXPECT_EQ(ESRCH, pthread_getschedparam(null_thread, &policy, ¶m)); in TEST_F() [all …]
|