Searched refs:pthread (Results 1 - 13 of 13) sorted by relevance

/art/runtime/
H A Djava_vm_ext_test.cc19 #include <pthread.h>
87 pthread_t pthread; local
91 CHECK_PTHREAD_CALL(pthread_create, (&pthread, nullptr, attach_current_thread_callback,
94 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
99 pthread_t pthread; local
103 CHECK_PTHREAD_CALL(pthread_create, (&pthread, nullptr, attach_current_thread_callback,
106 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
111 pthread_t pthread; local
118 CHECK_PTHREAD_CALL(pthread_create, (&pthread, &attr, attach_current_thread_callback,
122 CHECK_PTHREAD_CALL(pthread_join, (pthread,
[all...]
H A Dsignal_catcher.cc20 #include <pthread.h>
74 // Create a raw pthread; its start routine will attach to the runtime.
H A Dthread-inl.h22 #include <pthread.h>
H A Dmonitor.h20 #include <pthread.h>
H A Dutils.h20 #include <pthread.h>
H A Ddebugger.h24 #include <pthread.h>
H A Dutils.cc20 #include <pthread.h>
H A Dthread.cc22 #include <pthread.h>
313 // Dalvik used the bionic pthread default stack size for native threads,
1248 LOG(FATAL) << "Newly-created pthread TLS slot is not nullptr";
/art/runtime/jdwp/
H A Djdwp_priv.h26 #include <pthread.h>
H A Djdwp.h26 #include <pthread.h>
/art/runtime/base/
H A Dmutex_test.cc122 pthread_t pthread; variable
123 int pthread_create_result = pthread_create(&pthread, nullptr, RecursiveLockWait::Callback,
131 EXPECT_EQ(pthread_join(pthread, nullptr), 0);
H A Dmutex.h20 #include <pthread.h>
/art/test/004-JniTest/
H A Djni_test.cc19 #include <pthread.h>
55 pthread_t pthread; local
56 int pthread_create_result = pthread_create(&pthread, nullptr, AttachHelper,
59 int pthread_join_result = pthread_join(pthread, nullptr);

Completed in 199 milliseconds