HomeSort by relevance Sort by last modified time
    Searched full:pthread_t (Results 126 - 150 of 1044) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/wilhelm/src/
locks.c 21 // Use this macro to validate a pthread_t before passing it into __pthread_gettid.
25 // we check that the pthread_t is probably valid. Note that it is theoretically
26 // possible for something to look like a valid pthread_t but not actually be valid.
28 #define LIKELY_VALID(ptr) (((ptr) != (pthread_t) 0) && ((((size_t) (ptr)) & 3) == 0))
69 pthread_t me = pthread_self();
70 pthread_t owner = thiz->mOwner;
86 pthread_t zero;
87 memset(&zero, 0, sizeof(pthread_t));
88 if (0 != memcmp(&zero, &thiz->mOwner, sizeof(pthread_t))) {
89 pthread_t me = pthread_self()
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
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_new.c 41 pthread_t
44 pthread_t t;
45 pthread_t nil = {NULL, 0};
49 * If there's a reusable pthread_t then use it.
  /development/ndk/sources/android/libportable/arch-mips/
pthread.c 119 PTHREAD_WRAPPER(pthread_getattr_np, (pthread_t thid, pthread_attr_t *attr), (thid, attr),
122 PTHREAD_WRAPPER(pthread_create, (pthread_t *thread, const pthread_attr_t *attr,
128 PTHREAD_WRAPPER(pthread_join, (pthread_t thid, void **ret_val), (thid, ret_val),
131 PTHREAD_WRAPPER(pthread_detach, (pthread_t thid), (thid), "(thid:%lx)");
133 // pthread_t pthread_self(void);
134 // int pthread_equal(pthread_t one, pthread_t two);
136 PTHREAD_WRAPPER(pthread_getschedparam, (pthread_t thid, int *policy, struct sched_param *param),
139 PTHREAD_WRAPPER(pthread_setschedparam, (pthread_t thid, int policy,
262 int WRAP(pthread_kill)(pthread_t thread, int portable_signum
    [all...]
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
unpoison_tls.cc 29 pthread_t p;
  /external/compiler-rt/lib/asan/tests/
asan_racy_double_free_test.cc 27 pthread_t t[2];
  /external/compiler-rt/lib/tsan/benchmarks/
vts_many_threads_bench.cc 93 pthread_t *t = new pthread_t[n_threads];
95 pthread_t *g_t = new pthread_t[n_garbage_threads];
  /external/compiler-rt/lib/tsan/lit_tests/
aligned_vs_unaligned_race.cc 25 pthread_t t[2];
benign_race.cc 30 pthread_t t;
fd_close_norace.cc 23 pthread_t t[2];
fd_dup_norace.cc 26 pthread_t t[2];
fd_location.cc 22 pthread_t t[2];
fd_pipe_norace.cc 25 pthread_t t[2];
fd_pipe_race.cc 22 pthread_t t[2];
fd_socketpair_norace.cc 29 pthread_t t[2];
fd_stdout_race.cc 28 pthread_t t[2];
global_race.cc 15 pthread_t t;
ignore_race.cc 23 pthread_t t;
java_alloc.cc 24 pthread_t th;
java_lock.cc 24 pthread_t th;
java_lock_move.cc 28 pthread_t th;
java_race_move.cc 22 pthread_t th;
java_rwlock.cc 24 pthread_t th;
race_on_read.cc 20 pthread_t t[2];
race_on_write.cc 26 pthread_t t[2];

Completed in 99 milliseconds

1 2 3 4 56 7 8 91011>>