HomeSort by relevance Sort by last modified time
    Searched refs:pthread_t (Results 1 - 25 of 521) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
pthread_self.cpp 31 pthread_t pthread_self() {
32 return reinterpret_cast<pthread_t>(__get_thread());
pthread_equal.cpp 31 int pthread_equal(pthread_t lhs, pthread_t rhs) {
pthread_gettid_np.cpp 32 pid_t pthread_gettid_np(pthread_t t) {
37 pid_t __pthread_gettid(pthread_t t) {
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_getunique_np.c 44 pthread_getunique_np (pthread_t thread)
pthread_equal.c 42 pthread_equal (pthread_t t1, pthread_t t2)
pthread_getw32threadhandle_np.c 50 pthread_getw32threadhandle_np (pthread_t thread)
62 pthread_getw32threadid_np (pthread_t thread)
errno.c 48 * Each thread has it's own errno variable in pthread_t.
50 * The benefit of using the pthread_t structure
53 * it properly without using pthread_t you'd need
57 * by simply storing the errno on the pthread_t structure.
74 pthread_t self;
ptw32_reuse.c 43 * A pthread_t is a struct (2x32 bit scalar types on IA-32, 2x64 bit on IA-64)
48 * The original pthread_t struct plus all copies of it contain the address of
50 * ptw32_thread_t contains the original copy of it's pthread_t.
60 * - two pthread_t's are identical if their ptw32_thread_t reference pointers
65 * - a pthread_t copy refers to a destroyed thread if the reuse counter in
73 * Pop a clean pthread_t struct off the reuse stack.
75 pthread_t
78 pthread_t t = {NULL, 0};
108 * Push a clean pthread_t struct onto the reuse stack.
114 ptw32_threadReusePush (pthread_t thread
    [all...]
  /external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
thread_creator.c 19 * We know that newlib and glibc use a small pthread_t type, so we
20 * do not need to wrap pthread_t values.
22 NACL_ASSERT_SAME_SIZE(pthread_t, uintptr_t);
24 return pthread_create((pthread_t *) tid, NULL,
30 return pthread_join((pthread_t) tid, NULL);
  /external/ltrace/testsuite/ltrace.main/
main-threaded.c 18 pthread_t thread1;
19 pthread_t thread2;
20 pthread_t thread3;
  /bionic/libc/private/
bionic_pthread.h 37 extern pid_t __pthread_gettid(pthread_t thid);
  /external/compiler-rt/test/tsan/
thread_leak3.c 10 pthread_t t;
stack_race2.cc 14 pthread_t t;
22 pthread_t t;
tls_race2.cc 14 pthread_t t;
22 pthread_t t;
sleep_sync.cc 18 pthread_t t;
sleep_sync2.cc 13 pthread_t t;
thread_end_with_ignore.cc 13 pthread_t t;
thread_leak.c 10 pthread_t t;
thread_leak2.c 10 pthread_t t;
thread_leak4.c 12 pthread_t t;
  /external/jemalloc/test/include/test/
thd.h 5 typedef pthread_t thd_t;
  /external/libcxx/test/thread/thread.threads/thread.thread.class/
types.pass.cpp 15 // typedef pthread_t native_handle_type;
24 static_assert((std::is_same<std::thread::native_handle_type, pthread_t>::value), "");
  /external/lldb/test/functionalities/thread/break_after_join/
main.cpp 76 pthread_t *thread_to_join = (pthread_t*)input;
90 pthread_t thread_1;
91 pthread_t thread_2;
92 pthread_t thread_3;
93 pthread_t thread_4;
94 pthread_t thread_5;
  /external/chromium_org/rlz/lib/
recursive_cross_process_lock_posix.h 32 pthread_t locking_thread_;
  /external/chromium_org/third_party/re2/util/
thread.h 20 pthread_t pid_;

Completed in 461 milliseconds

1 2 3 4 5 6 7 8 91011>>