Home
last modified time | relevance | path

Searched refs:pthread_create_result (Results 1 – 3 of 3) sorted by relevance

/art/runtime/base/
Dmutex_test.cc123 int pthread_create_result = pthread_create(&pthread, nullptr, RecursiveLockWait::Callback, in RecursiveLockWaitTest() local
125 ASSERT_EQ(0, pthread_create_result); in RecursiveLockWaitTest()
/art/test/004-JniTest/
Djni_test.cc56 int pthread_create_result = pthread_create(&pthread, nullptr, AttachHelper, in PthreadHelper() local
58 assert(pthread_create_result == 0); in PthreadHelper()
/art/runtime/
Dthread.cc424 int pthread_create_result = 0; in CreateNativeThread() local
433 pthread_create_result = pthread_create(&new_pthread, in CreateNativeThread()
439 if (pthread_create_result == 0) { in CreateNativeThread()
465 PrettySize(stack_size).c_str(), strerror(pthread_create_result))); in CreateNativeThread()