HomeSort by relevance Sort by last modified time
    Searched defs:pthread (Results 1 - 6 of 6) sorted by null

  /art/runtime/base/
mutex_test.cc 121 pthread_t pthread; variable
122 int pthread_create_result = pthread_create(&pthread, NULL, RecursiveLockWait::Callback, &state);
129 EXPECT_EQ(pthread_join(pthread, NULL), 0);
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Thread.c 30 #include <pthread.h>
47 pthread_t pthread; member in struct:_EXYNOS_THREAD_HANDLE_TYPE
82 result = pthread_create(&thread->pthread, &thread->attr, function_name, (void *)argument);
83 /* pthread_setschedparam(thread->pthread, SCHED_RR, &thread->schedparam); */
119 if (pthread_join(thread->pthread, NULL) != 0) {
140 /* thread_cancel(thread->pthread); */
141 pthread_exit(&thread->pthread);
142 pthread_join(thread->pthread, NULL);
  /art/test/JniTest/
jni_test.cc 19 #include <pthread.h>
60 pthread_t pthread; local
61 int pthread_create_result = pthread_create(&pthread,
66 int pthread_join_result = pthread_join(pthread, NULL);
95 pthread_t pthread; local
96 int pthread_create_result = pthread_create(&pthread,
101 int pthread_join_result = pthread_join(pthread, NULL);
  /system/core/libutils/
Threads.cpp 33 # include <pthread.h>
468 // I'm trying to mimic pthread semantics though.
860 pthread_t pthread = android_thread_id_t_to_pthread(mThread); local
861 tid = __pthread_gettid(pthread);
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
_nspr_pthread.h 38 #include <pthread.h>
112 pthread_t pthread; member in struct:_MDThread
176 pthread_t pthread; member in struct:_MDCPU
  /external/valgrind/main/coregrind/
pub_core_threadstate.h 150 // This thread's pthread
151 Addr pthread; member in struct:__anon30715

Completed in 974 milliseconds