Searched refs:pthread_t (Results 1 - 25 of 39) sorted by relevance

12

/bionic/libc/bionic/
H A Dpthread_self.cpp31 pthread_t pthread_self() {
32 return reinterpret_cast<pthread_t>(__get_thread());
H A Dpthread_equal.cpp31 int pthread_equal(pthread_t lhs, pthread_t rhs) {
H A Dpthread_gettid_np.cpp31 pid_t pthread_gettid_np(pthread_t t) {
H A Dpthread_detach.cpp34 int pthread_detach(pthread_t t) {
H A Dpthread_getcpuclockid.cpp33 int pthread_getcpuclockid(pthread_t t, clockid_t* clockid) {
H A Dpthread_getschedparam.cpp34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) {
H A Dpthread_kill.cpp37 int pthread_kill(pthread_t t, int sig) {
H A Dpthread_setschedparam.cpp34 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) {
H A Dpthread_internal.cpp44 pthread_t __pthread_internal_add(pthread_internal_t* thread) {
54 return reinterpret_cast<pthread_t>(thread);
82 pthread_internal_t* __pthread_internal_find(pthread_t thread_id) {
H A Dpthread_join.cpp34 int pthread_join(pthread_t t, void** return_value) {
H A Dpthread_setname_np.cpp46 int pthread_setname_np(pthread_t t, const char* thread_name) {
H A Dpthread_internal.h119 __LIBC_HIDDEN__ pthread_t __pthread_internal_add(pthread_internal_t* thread);
120 __LIBC_HIDDEN__ pthread_internal_t* __pthread_internal_find(pthread_t pthread_id);
H A Dposix_timers.cpp64 pthread_t callback_thread;
/bionic/libc/include/bits/
H A Dpthread_types.h34 typedef long pthread_t; typedef
/bionic/libc/include/
H A Dpthread.h169 int pthread_create(pthread_t*, pthread_attr_t const*, void *(*)(void*), void*) __nonnull((1, 3));
170 int pthread_detach(pthread_t);
173 int pthread_equal(pthread_t, pthread_t);
175 int pthread_getattr_np(pthread_t, pthread_attr_t*) __nonnull((2));
177 int pthread_getcpuclockid(pthread_t, clockid_t*) __nonnull((2));
179 int pthread_getschedparam(pthread_t, int*, struct sched_param*) __nonnull((2, 3));
183 pid_t pthread_gettid_np(pthread_t);
185 int pthread_join(pthread_t, void**);
246 pthread_t pthread_sel
[all...]
H A Dsignal.h132 extern int pthread_kill(pthread_t, int);
/bionic/tests/
H A Dbug_26110743_test.cpp49 pthread_t t;
64 pthread_t t;
93 pthread_t t;
108 pthread_t t;
H A D__cxa_thread_atexit_test.cpp52 pthread_t t;
137 pthread_t t;
H A Dpthread_test.cpp167 pthread_t t;
225 return reinterpret_cast<void*>(pthread_join(reinterpret_cast<pthread_t>(arg), NULL));
228 static void AssertDetached(pthread_t t, bool is_detached) {
237 static void MakeDeadThread(pthread_t& t) {
245 pthread_t t;
258 pthread_t t;
265 pthread_t t1;
279 pthread_t t1;
283 pthread_t t2;
308 pthread_t main_threa
[all...]
H A Dstack_protector_test.cpp76 pthread_t t;
H A Dsemaphore_test.cpp80 pthread_t t1, t2, t3;
195 pthread_t thread;
218 pthread_t thread;
H A Dstdlib_test.cpp223 pthread_t main_thread = reinterpret_cast<pthread_t>(arg);
233 pthread_t t;
/bionic/benchmarks/
H A Dpthread_benchmark.cpp22 /* Must not be static! */ pthread_t (*pthread_self_fp)() = pthread_self;
130 pthread_t thread;
147 pthread_t thread;
164 pthread_t thread;
H A Dsemaphore_benchmark.cpp92 pthread_t pthread;
/bionic/libc/include/sys/
H A Dtypes.h115 typedef .... pthread_t;

Completed in 6628 milliseconds

12