/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_stoptheworld_test.cc | 75 int pthread_create_result; local 77 pthread_create_result = pthread_create(&thread_id, NULL, IncrementerThread, 79 ASSERT_EQ(0, pthread_create_result); 117 int pthread_create_result; local 119 pthread_create_result = 124 if (pthread_create_result != 0) { 169 int pthread_create_result; local 170 pthread_create_result = pthread_create(&argument.thread_ids[0], NULL, 173 ASSERT_EQ(0, pthread_create_result);
|
/art/test/JniTest/ |
jni_test.cc | 60 int pthread_create_result = pthread_create(&pthread, local 64 assert(pthread_create_result == 0);
|
/art/runtime/base/ |
mutex_test.cc | 122 int pthread_create_result = pthread_create(&pthread, NULL, RecursiveLockWait::Callback, &state); variable 123 ASSERT_EQ(0, pthread_create_result);
|
/art/runtime/ |
thread.cc | 265 int pthread_create_result = pthread_create(&new_pthread, &attr, Thread::CreateCallback, child_thread); local 268 if (pthread_create_result != 0) { 283 PrettySize(stack_size).c_str(), strerror(pthread_create_result))); [all...] |