Searched defs:tid (Results 1 - 14 of 14) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_join.cpp39 pid_t tid; local
57 tid = thread->tid;
58 tid_ptr = &thread->tid;
66 __futex_wait(tid_ptr, tid, NULL);
H A Dpthread_kill.cpp35 extern "C" int tgkill(int tgid, int tid, int sig);
46 pid_t tid = thread->tid; local
49 int rc = tgkill(getpid(), tid, sig);
H A Dpthread_setname_np.cpp60 pid_t tid = 0; local
66 tid = thread->tid;
69 snprintf(comm_name, sizeof(comm_name), TASK_COMM_FMT, tid);
H A Dpthread_internal.h49 pid_t tid; member in struct:pthread_internal_t
H A Dpthread_rwlock.cpp135 if (__predict_false(__get_thread()->tid == rwlock->writer_thread_id)) {
170 int tid = __get_thread()->tid; local
171 if (__predict_false(tid == rwlock->writer_thread_id)) {
199 rwlock->writer_thread_id = tid;
229 int tid = __get_thread()->tid; local
233 rwlock->writer_thread_id = tid;
241 int tid = __get_thread()->tid; local
[all...]
H A Dndk_cruft.cpp224 extern "C" int tkill(pid_t tid, int sig) { argument
225 return syscall(__NR_tkill, tid, sig);
H A Dpthread_mutex.cpp48 * 31-16 tid owner thread's tid (recursive and errorcheck only)
158 * tid of the owning thread. Note that this works because the Linux
449 int mvalue, mtype, tid, shared; local
462 tid = __get_thread()->tid;
463 if ( tid == MUTEX_OWNER_FROM_BITS(mvalue) )
473 int newval = MUTEX_OWNER_TO_BITS(tid) | mtype | MUTEX_STATE_BITS_LOCKED_UNCONTENDED;
492 newval = MUTEX_OWNER_TO_BITS(tid) | mtype | MUTEX_STATE_BITS_LOCKED_CONTENDED;
531 int mvalue, mtype, tid, share local
583 int mvalue, mtype, tid, shared; local
653 pid_t tid = __get_thread()->tid; local
[all...]
H A Dlibc_logging.cpp502 uint16_t tid = gettid(); local
503 vec[1].iov_base = &tid;
504 vec[1].iov_len = sizeof(tid);
564 uint16_t tid = gettid(); local
565 vec[1].iov_base = &tid;
566 vec[1].iov_len = sizeof(tid);
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_l2tp.h29 __u32 tid; member in struct:xt_l2tp_info
/bionic/tests/
H A Dsched_test.cpp34 pid_t tid = clone(child_fn, &child_stack[1024], CLONE_VM, &i); local
37 ASSERT_EQ(tid, TEMP_FAILURE_RETRY(waitpid(tid, &status, __WCLONE)));
H A Dstack_protector_test.cpp48 pid_t tid = gettid(); local
51 printf("[thread %d] %%gs:0x14 = 0x%08x\n", tid, guard);
53 // Duplicate tid. gettid(2) bug? Seeing this would be very upsetting.
54 ASSERT_TRUE(tids.find(tid) == tids.end());
60 tids.insert(tid);
/bionic/linker/
H A Ddebugger.cpp42 extern "C" int tgkill(int tgid, int tid, int sig);
63 pid_t tid; member in struct:debugger_msg_t
179 "Fatal signal %d (%s)%s%s in tid %d (%s)",
226 // local socket but we need to tell it the tid of the crashing thread.
227 // debuggerd will be paranoid and verify that we sent a tid
231 msg.tid = gettid();
/bionic/libc/kernel/uapi/linux/
H A Di2o-dev.h62 unsigned int tid; member in struct:i2o_cmd_psetget
85 unsigned int tid; member in struct:i2o_html
97 unsigned int tid; member in struct:i2o_evt_id
204 __u32 tid:12; member in struct:_i2o_lct_entry
/bionic/libc/kernel/uapi/sound/
H A Dasound.h639 struct snd_timer_id tid; member in struct:snd_timer_ginfo
655 struct snd_timer_id tid; member in struct:snd_timer_gparams
662 struct snd_timer_id tid; member in struct:snd_timer_gstatus

Completed in 231 milliseconds