Searched refs:tid (Results 1 - 25 of 436) sorted by relevance

1234567891011>>

/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/
H A Dtst.tid1.d32 * To print tid and make sure it succeeds.
41 printf("Thread id = %d \n", tid);
H A Dtst.tid.d31 * To print tid from profile
44 printf("Thread id = %d \n", tid);
/freebsd-10-stable/crypto/openssh/regress/
H A Dlocalcommand.sh4 tid="localcommand"
10 verbose "test $tid: proto $p localcommand"
13 fail "$tid proto $p"
H A Dportnum.sh4 tid="port number parsing"
8 verbose "$tid: invalid port $port"
10 fail "$tid accepted invalid port $port"
15 verbose "$tid: valid port $port"
19 fail "$tid rejected valid port $port"
H A Dhost-expand.sh4 tid="expand %h and %n"
15 verbose "test $tid: proto $p"
17 diff $OBJ/expect $OBJ/actual || fail "$tid proto $p"
H A Dconnect.sh4 tid="simple connect"
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMach_arm.h32 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
35 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
38 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
41 DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg);
44 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
47 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
50 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
53 DoWriteDBG (lldb::tid_t tid, int flavor, const DBG &dbg);
H A DRegisterContextMach_arm.cpp36 RegisterContextMach_arm::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
39 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
43 RegisterContextMach_arm::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) argument
46 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
50 RegisterContextMach_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
53 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
57 RegisterContextMach_arm::DoReadDBG (lldb::tid_t tid, int flavor, DBG &dbg) argument
60 return ::thread_get_state(tid, flavor, (thread_state_t)&dbg, &count);
64 RegisterContextMach_arm::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) argument
66 return ::thread_set_state(tid, flavo
70 DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) argument
76 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
82 DoWriteDBG(lldb::tid_t tid, int flavor, const DBG &dbg) argument
[all...]
H A DRegisterContextMach_i386.cpp34 RegisterContextMach_i386::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
37 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
41 RegisterContextMach_i386::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) argument
44 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
48 RegisterContextMach_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
55 RegisterContextMach_i386::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) argument
57 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount);
61 RegisterContextMach_i386::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) argument
63 return ::thread_set_state(tid, flavo
67 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
[all...]
H A DRegisterContextMach_x86_64.cpp34 RegisterContextMach_x86_64::DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr) argument
37 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
41 RegisterContextMach_x86_64::DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu) argument
44 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
48 RegisterContextMach_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument
51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
55 RegisterContextMach_x86_64::DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr) argument
57 return ::thread_set_state(tid, flavor, (thread_state_t)&gpr, GPRWordCount);
61 RegisterContextMach_x86_64::DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu) argument
63 return ::thread_set_state(tid, flavo
67 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
[all...]
H A DRegisterContextMach_i386.h31 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
34 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
37 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
40 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
43 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
46 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextMach_x86_64.h31 DoReadGPR (lldb::tid_t tid, int flavor, GPR &gpr);
34 DoReadFPU (lldb::tid_t tid, int flavor, FPU &fpu);
37 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc);
40 DoWriteGPR (lldb::tid_t tid, int flavor, const GPR &gpr);
43 DoWriteFPU (lldb::tid_t tid, int flavor, const FPU &fpu);
46 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc);
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/misc/
H A Dtst.roch.d50 (long long)curthread, pid, tid,
60 (long long) curthread, pid, tid,
68 (long long)curthread, pid, tid);
74 (long long)curthread, pid, tid, (int)arg1, (int)arg0);
80 (long long)curthread, pid, tid, arg0);
86 (long long) curthread, pid, tid, arg0);
H A Dtst.haslam.d50 @sys[tid] = sum(tid);
/freebsd-10-stable/usr.bin/truss/
H A Di386-fbsd.c55 lwpid_t tid; local
58 tid = trussinfo->curthread->tid;
60 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
87 ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
98 lwpid_t tid; local
100 tid = trussinfo->curthread->tid;
101 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Dia64-fbsd.c54 lwpid_t tid; local
57 tid = trussinfo->curthread->tid;
59 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
90 lwpid_t tid; local
92 tid = trussinfo->curthread->tid;
93 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Damd64-linux32.c53 lwpid_t tid; local
55 tid = trussinfo->curthread->tid;
57 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
107 lwpid_t tid; local
110 tid = trussinfo->curthread->tid;
111 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Di386-linux.c53 lwpid_t tid; local
55 tid = trussinfo->curthread->tid;
57 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
106 lwpid_t tid; local
109 tid = trussinfo->curthread->tid;
110 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Darm-fbsd.c56 lwpid_t tid; local
59 tid = trussinfo->curthread->tid;
61 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
77 if ((syscall_num = ptrace(PT_READ_I, tid,
103 ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
115 lwpid_t tid; local
117 tid = trussinfo->curthread->tid;
118 if (ptrace(PT_GETREGS, tid, (caddr_
[all...]
H A Damd64-fbsd32.c58 lwpid_t tid; local
61 tid = trussinfo->curthread->tid;
63 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
90 ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
105 lwpid_t tid; local
107 tid = trussinfo->curthread->tid;
108 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Dmips-fbsd.c55 lwpid_t tid; local
58 tid = trussinfo->curthread->tid;
60 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
101 ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
113 lwpid_t tid; local
115 tid = trussinfo->curthread->tid;
116 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Damd64-fbsd.c55 lwpid_t tid; local
58 tid = trussinfo->curthread->tid;
60 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
97 ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
109 lwpid_t tid; local
111 tid = trussinfo->curthread->tid;
112 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Dsparc64-fbsd.c57 lwpid_t tid; local
60 tid = trussinfo->curthread->tid;
62 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
91 ptrace(PT_IO, tid, (caddr_t)&iorequest, 0);
103 lwpid_t tid; local
105 tid = trussinfo->curthread->tid;
106 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DProcessMessage.h89 /// Indicates that the thread @p tid is about to exit with status @p status.
90 static ProcessMessage Limbo(lldb::tid_t tid, int status) { argument
91 return ProcessMessage(tid, eLimboMessage, status);
94 /// Indicates that the thread @p tid had the signal @p signum delivered.
95 static ProcessMessage Signal(lldb::tid_t tid, int signum) { argument
96 return ProcessMessage(tid, eSignalMessage, signum);
100 /// delivered to the thread @p tid.
101 static ProcessMessage SignalDelivered(lldb::tid_t tid, int signum) { argument
102 return ProcessMessage(tid, eSignalDeliveredMessage, signum);
105 /// Indicates that the thread @p tid encountere
106 Trace(lldb::tid_t tid) argument
111 Break(lldb::tid_t tid) argument
115 Watch(lldb::tid_t tid, lldb::addr_t wp_addr) argument
133 Exit(lldb::tid_t tid, int status) argument
138 Exec(lldb::tid_t tid) argument
194 ProcessMessage(lldb::tid_t tid, Kind kind, int status = 0, lldb::addr_t addr = 0) argument
203 ProcessMessage(lldb::tid_t tid, Kind kind, lldb::tid_t child_tid) argument
[all...]
/freebsd-10-stable/contrib/gcclibs/libgomp/config/linux/
H A Dlock.c102 int tid = tid_cache; local
103 if (__builtin_expect (tid == 0, 0))
104 tid_cache = tid = syscall (SYS_gettid);
105 return tid;
124 int otid, tid = gomp_tid (); local
128 otid = __sync_val_compare_and_swap (&lock->owner, 0, tid);
134 if (otid == tid)
159 int otid, tid = gomp_tid (); local
161 otid = __sync_val_compare_and_swap (&lock->owner, 0, tid);
167 if (otid == tid)
[all...]

Completed in 197 milliseconds

1234567891011>>