HomeSort by relevance Sort by last modified time
    Searched refs:pthread_create_result (Results 1 - 8 of 8) sorted by null

  /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/169-threadgroup-jni/
jni_daemon_thread.cc 57 int pthread_create_result = pthread_create(&pthread, nullptr, Runner, global_thread_group); local
58 CHECK_EQ(pthread_create_result, 0);
  /art/runtime/base/
mutex_test.cc 123 int pthread_create_result = pthread_create(&pthread, nullptr, RecursiveLockWaitCallback, &state); variable
124 ASSERT_EQ(0, pthread_create_result);
  /art/adbconnection/
adbconnection.cc 257 int pthread_create_result = pthread_create(&pthread, local
261 if (pthread_create_result != 0) {
    [all...]
  /art/test/004-JniTest/
jni_test.cc 76 int pthread_create_result = pthread_create(&pthread, nullptr, AttachHelper, local
78 CHECK_EQ(pthread_create_result, 0);
  /art/openjdkjvmti/
ti_thread.cc 799 int pthread_create_result = pthread_create(&pthread, local
803 if (pthread_create_result != 0) {
    [all...]
  /art/runtime/
thread.cc 678 int pthread_create_result = 0; local
687 pthread_create_result = pthread_create(&new_pthread,
693 if (pthread_create_result == 0) {
719 PrettySize(stack_size).c_str(), strerror(pthread_create_result)));
    [all...]
jni_internal_test.cc 2535 int pthread_create_result = pthread_create(&pthread, local
    [all...]

Completed in 162 milliseconds