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

  /art/runtime/base/
mutex_test.cc 122 pthread_t pthread; variable
123 int pthread_create_result = pthread_create(&pthread, nullptr, RecursiveLockWaitCallback, &state);
130 EXPECT_EQ(pthread_join(pthread, nullptr), 0);
  /art/test/169-threadgroup-jni/
jni_daemon_thread.cc 19 #include <pthread.h>
56 pthread_t pthread; local
57 int pthread_create_result = pthread_create(&pthread, nullptr, Runner, global_thread_group);
59 int pthread_join_result = pthread_join(pthread, nullptr);
  /bionic/benchmarks/
semaphore_benchmark.cpp 17 #include <pthread.h>
93 pthread_t pthread; local
94 pthread_create(&pthread, &attr, BM_semaphore_sem_post_start_thread, &semaphore);
  /external/mesa3d/src/gallium/state_trackers/nine/
threadpool.h 27 #include <pthread.h>
38 pthread_t pthread; member in struct:threadpool
  /art/runtime/
java_vm_ext_test.cc 19 #include <pthread.h>
88 pthread_t pthread; local
92 CHECK_PTHREAD_CALL(pthread_create, (&pthread, nullptr, attach_current_thread_callback,
95 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
100 pthread_t pthread; local
104 CHECK_PTHREAD_CALL(pthread_create, (&pthread, nullptr, attach_current_thread_callback,
107 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason);
112 pthread_t pthread; local
119 CHECK_PTHREAD_CALL(pthread_create, (&pthread, &attr, attach_current_thread_callback,
123 CHECK_PTHREAD_CALL(pthread_join, (pthread, &ret_val), reason)
    [all...]
runtime_callbacks_test.cc 206 pthread_t pthread; local
208 (&pthread,
215 CHECK_PTHREAD_CALL(pthread_join, (pthread, nullptr), "ThreadLifecycleCallback test shutdown");
jni_internal_test.cc 2534 pthread_t pthread; local
    [all...]
  /external/autotest/client/tests/ipv6connect/src/
ipv6connect.c 25 #include <pthread.h>
267 pthread_t pthread; local
272 pthread_create(&pthread, NULL, ThreadedStartServer, NULL);
346 pthread_join(pthread, NULL);
  /external/ltp/testcases/realtime/include/
librttest.h 50 #include <pthread.h>
82 pthread_t pthread; member in struct:thread
259 int set_thread_priority(pthread_t pthread, int prio);
331 /* init_pi_mutex: initialize a pthread mutex to have PI support
  /hardware/nxp/nfc/halimpl/hal/
phNxpNciHal_NfcDepSWPrio.cc 127 pthread_t pthread; local
133 if (pthread_create(&pthread, &attr, tmp_thread, (void*)&discover_type) != 0) {
134 NXPLOG_NCIHAL_E("fail to create pthread");
152 pthread_t pthread; local
158 if (pthread_create(&pthread, &attr, tmp_thread, (void*)&discover_type) != 0) {
159 NXPLOG_NCIHAL_E("fail to create pthread");
177 pthread_t pthread; local
183 if (pthread_create(&pthread, &attr, tmp_thread, (void*)&discover_type) != 0) {
184 NXPLOG_NCIHAL_E("fail to create pthread");
488 pthread_t pthread; local
    [all...]
  /system/bt/osi/src/
thread.cc 28 #include <pthread.h>
44 pthread_t pthread; member in struct:thread_t
87 pthread_create(&ret->pthread, NULL, run_thread, &start);
123 pthread_join(thread->pthread, NULL);
181 return !!pthread_equal(pthread_self(), thread->pthread);
  /system/core/libutils/
Threads.cpp 445 // I'm trying to mimic pthread semantics though.
837 pthread_t pthread = android_thread_id_t_to_pthread(mThread); local
838 tid = pthread_gettid_np(pthread);
  /art/adbconnection/
adbconnection.cc 254 pthread_t pthread; local
257 int pthread_create_result = pthread_create(&pthread,
    [all...]
  /art/openjdkjvmti/
ti_thread.cc 798 pthread_t pthread; local
799 int pthread_create_result = pthread_create(&pthread,
    [all...]
  /external/valgrind/coregrind/
pub_core_threadstate.h 149 // This thread's pthread
150 Addr pthread; member in struct:__anon42546
  /art/test/004-JniTest/
jni_test.cc 17 #include <pthread.h>
75 pthread_t pthread; local
76 int pthread_create_result = pthread_create(&pthread, nullptr, AttachHelper,
79 int pthread_join_result = pthread_join(pthread, nullptr);
  /external/oj-libjdwp/src/share/back/
eventHelper.c 766 jthread *pthread; local
777 pthread = &(evinfo->thread);
778 thread = *pthread;
779 *pthread = NULL;
780 saveGlobalRef(env, thread, pthread);
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
defs1_solaris_amd64.go 186 type pthread uint32 type
  /prebuilts/go/linux-x86/src/runtime/
defs1_solaris_amd64.go 186 type pthread uint32 type

Completed in 1030 milliseconds