Home
last modified time | relevance | path

Searched refs:pthread_t (Results 1 – 25 of 29) sorted by relevance

12

/bionic/libc/bionic/
Dpthread_self.cpp31 pthread_t pthread_self() { in pthread_self()
32 return reinterpret_cast<pthread_t>(__get_thread()); in pthread_self()
Dpthread_equal.cpp31 int pthread_equal(pthread_t lhs, pthread_t rhs) { in pthread_equal()
Dpthread_gettid_np.cpp32 pid_t pthread_gettid_np(pthread_t t) { in pthread_gettid_np()
37 pid_t __pthread_gettid(pthread_t t) { in __pthread_gettid()
Dpthread_getcpuclockid.cpp33 int pthread_getcpuclockid(pthread_t t, clockid_t* clockid) { in pthread_getcpuclockid()
Dpthread_setschedparam.cpp34 int pthread_setschedparam(pthread_t t, int policy, const sched_param* param) { in pthread_setschedparam()
Dpthread_getschedparam.cpp34 int pthread_getschedparam(pthread_t t, int* policy, sched_param* param) { in pthread_getschedparam()
Dpthread_detach.cpp33 int pthread_detach(pthread_t t) { in pthread_detach()
Dpthread_kill.cpp37 int pthread_kill(pthread_t t, int sig) { in pthread_kill()
Dpthread_accessor.h27 explicit pthread_accessor(pthread_t desired_thread) { in pthread_accessor()
Dpthread_join.cpp34 int pthread_join(pthread_t t, void** return_value) { in pthread_join()
Dpthread_setname_np.cpp46 int pthread_setname_np(pthread_t t, const char* thread_name) { in pthread_setname_np()
Dpthread_create.cpp154 int pthread_create(pthread_t* thread_out, pthread_attr_t const* attr, in pthread_create()
249 *thread_out = reinterpret_cast<pthread_t>(thread); in pthread_create()
Dpthread_attr.cpp173 int pthread_getattr_np(pthread_t t, pthread_attr_t* attr) { in pthread_getattr_np()
Dposix_timers.cpp62 pthread_t callback_thread;
/bionic/libc/include/
Dpthread.h121 typedef long pthread_t; typedef
177 int pthread_create(pthread_t*, pthread_attr_t const*, void *(*)(void*), void*) __nonnull((1, 3));
178 int pthread_detach(pthread_t);
181 int pthread_equal(pthread_t, pthread_t);
183 int pthread_getattr_np(pthread_t, pthread_attr_t*) __nonnull((2));
185 int pthread_getcpuclockid(pthread_t, clockid_t*) __nonnull((2));
187 int pthread_getschedparam(pthread_t, int*, struct sched_param*) __nonnull((2, 3));
191 pid_t pthread_gettid_np(pthread_t);
193 int pthread_join(pthread_t, void**);
198 int pthread_kill(pthread_t, int);
[all …]
/bionic/tests/
Dpthread_test.cpp128 pthread_t t; in TEST()
155 return reinterpret_cast<void*>(pthread_join(reinterpret_cast<pthread_t>(arg), NULL)); in JoinFn()
158 static void AssertDetached(pthread_t t, bool is_detached) { in AssertDetached()
167 static void MakeDeadThread(pthread_t& t) { in MakeDeadThread()
176 pthread_t t; in TEST()
189 pthread_t t; in TEST()
194 pthread_t t1; in TEST()
209 pthread_t t1; in TEST()
213 pthread_t t2; in TEST()
236 pthread_t main_thread;
[all …]
Dstack_protector_test.cpp77 pthread_t t; in TEST()
Dstdlib_test.cpp142 pthread_t main_thread = reinterpret_cast<pthread_t>(arg); in TestBug57421_child()
152 pthread_t t; in TestBug57421_main()
Dtime_test.cpp67 pthread_t t; in TEST()
364 pthread_t thread_id;
Dsys_socket_test.cpp89 pthread_t thread; in RunTest()
Dstdatomic_test.cpp238 pthread_t t1,t2; in TEST()
Ddlfcn_test.cpp250 pthread_t t; in TEST()
/bionic/libc/private/
Dbionic_pthread.h37 extern pid_t __pthread_gettid(pthread_t thid);
/bionic/benchmarks/
Dpthread_benchmark.cpp22 /* Must not be static! */ pthread_t (*pthread_self_fp)() = pthread_self;
/bionic/libc/include/sys/
Dtypes.h117 typedef .... pthread_t;

12