Home
last modified time | relevance | path

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

/art/test/169-threadgroup-jni/
Djni_daemon_thread.cc57 int pthread_create_result = pthread_create(&pthread, nullptr, Runner, global_thread_group); in Java_Main_testNativeThread() local
58 CHECK_EQ(pthread_create_result, 0); in Java_Main_testNativeThread()
/art/runtime/base/
Dmutex_test.cc123 int pthread_create_result = pthread_create(&pthread, nullptr, RecursiveLockWaitCallback, &state); in RecursiveLockWaitTest() local
124 ASSERT_EQ(0, pthread_create_result); in RecursiveLockWaitTest()
/art/adbconnection/
Dadbconnection.cc257 int pthread_create_result = pthread_create(&pthread, in StartDebuggerThreads() local
261 if (pthread_create_result != 0) { in StartDebuggerThreads()
/art/test/004-JniTest/
Djni_test.cc76 int pthread_create_result = pthread_create(&pthread, nullptr, AttachHelper, in PthreadHelper() local
78 CHECK_EQ(pthread_create_result, 0); in PthreadHelper()
/art/openjdkjvmti/
Dti_thread.cc799 int pthread_create_result = pthread_create(&pthread, in RunAgentThread() local
803 if (pthread_create_result != 0) { in RunAgentThread()
/art/runtime/
Dthread.cc678 int pthread_create_result = 0; in CreateNativeThread() local
687 pthread_create_result = pthread_create(&new_pthread, in CreateNativeThread()
693 if (pthread_create_result == 0) { in CreateNativeThread()
719 PrettySize(stack_size).c_str(), strerror(pthread_create_result))); in CreateNativeThread()