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

1234567891011>>

/freebsd-11-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-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeThreadProtocol.cpp18 lldb::tid_t tid)
19 : m_process(process), m_tid(tid) {}
17 NativeThreadProtocol(NativeProcessProtocol &process, lldb::tid_t tid) argument
/freebsd-11-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-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMach_arm.h23 virtual int DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr);
25 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu);
27 int DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc);
29 int DoReadDBG(lldb::tid_t tid, int flavor, DBG &dbg);
31 int DoWriteGPR(lldb::tid_t tid, int flavor, const GPR &gpr);
33 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu);
35 int DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc);
37 int DoWriteDBG(lldb::tid_t tid, int flavor, const DBG &dbg);
H A DRegisterContextMach_arm.cpp26 int RegisterContextMach_arm::DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr) { argument
28 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
31 int RegisterContextMach_arm::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { argument
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
36 int RegisterContextMach_arm::DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) { argument
38 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
41 int RegisterContextMach_arm::DoReadDBG(lldb::tid_t tid, int flavor, DBG &dbg) { argument
43 return ::thread_get_state(tid, flavor, (thread_state_t)&dbg, &count);
46 int RegisterContextMach_arm::DoWriteGPR(lldb::tid_t tid, int flavor, argument
49 tid, flavo
53 DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) argument
60 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
67 DoWriteDBG(lldb::tid_t tid, int flavor, const DBG &dbg) argument
[all...]
H A DRegisterContextMach_i386.cpp24 int RegisterContextMach_i386::DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr) { argument
26 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
29 int RegisterContextMach_i386::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { argument
31 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
34 int RegisterContextMach_i386::DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) { argument
36 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
39 int RegisterContextMach_i386::DoWriteGPR(lldb::tid_t tid, int flavor, argument
42 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)),
46 int RegisterContextMach_i386::DoWriteFPU(lldb::tid_t tid, int flavor, argument
49 tid, flavo
53 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
[all...]
H A DRegisterContextMach_x86_64.cpp24 int RegisterContextMach_x86_64::DoReadGPR(lldb::tid_t tid, int flavor, argument
27 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count);
30 int RegisterContextMach_x86_64::DoReadFPU(lldb::tid_t tid, int flavor, argument
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count);
36 int RegisterContextMach_x86_64::DoReadEXC(lldb::tid_t tid, int flavor, argument
39 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count);
42 int RegisterContextMach_x86_64::DoWriteGPR(lldb::tid_t tid, int flavor, argument
45 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)),
49 int RegisterContextMach_x86_64::DoWriteFPU(lldb::tid_t tid, int flavor, argument
52 tid, flavo
56 DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) argument
[all...]
H A DRegisterContextMach_i386.h22 virtual int DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr);
24 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu);
26 int DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc);
28 int DoWriteGPR(lldb::tid_t tid, int flavor, const GPR &gpr);
30 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu);
32 int DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc);
H A DRegisterContextMach_x86_64.h23 virtual int DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr);
25 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu);
27 int DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc);
29 int DoWriteGPR(lldb::tid_t tid, int flavor, const GPR &gpr);
31 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu);
33 int DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Darwin/
H A DNativeThreadListDarwin.h48 bool GetRegisterValue (nub_thread_t tid, uint32_t set, uint32_t reg, DNBRegisterValue *reg_value) const;
49 bool SetRegisterValue (nub_thread_t tid, uint32_t set, uint32_t reg, const DNBRegisterValue *reg_value) const;
50 nub_size_t GetRegisterContext (nub_thread_t tid, void *buf, size_t buf_len);
51 nub_size_t SetRegisterContext (nub_thread_t tid, const void *buf, size_t buf_len);
52 uint32_t SaveRegisterState (nub_thread_t tid);
53 bool RestoreRegisterState (nub_thread_t tid, uint32_t save_id);
56 const char *GetThreadInfo(lldb::tid_t tid) const;
69 const char * GetName (nub_thread_t tid);
70 nub_state_t GetState (nub_thread_t tid);
71 nub_thread_t SetCurrentThread (nub_thread_t tid);
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.cpp18 ThreadContextBase::ThreadContextBase(u32 tid) argument
19 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0),
87 // Parent tid makes no sense for the main thread.
88 if (tid != 0)
138 u32 tid = kUnknownTid; local
141 tid = tctx->tid;
143 // Allocate new thread context and tid.
144 tid
214 SetThreadName(u32 tid, const char *name) argument
236 DetachThread(u32 tid, void *arg) argument
254 JoinThread(u32 tid, void *arg) argument
281 FinishThread(u32 tid) argument
305 StartThread(u32 tid, tid_t os_id, ThreadType thread_type, void *arg) argument
340 SetThreadUserId(u32 tid, uptr user_id) argument
[all...]
/freebsd-11-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-11-stable/usr.bin/truss/
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) {
91 lwpid_t tid; local
93 tid = trussinfo->curthread->tid;
94 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) {
92 lwpid_t tid; local
94 tid = trussinfo->curthread->tid;
95 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Damd64-cloudabi64.c45 lwpid_t tid; local
47 tid = trussinfo->curthread->tid;
48 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) == -1) {
74 lwpid_t tid; local
76 tid = trussinfo->curthread->tid;
77 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) == -1) {
H A Daarch64-cloudabi64.c45 lwpid_t tid; local
48 tid = trussinfo->curthread->tid;
49 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) == -1) {
65 lwpid_t tid; local
67 tid = trussinfo->curthread->tid;
68 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) == -1) {
H A Daarch64-freebsd.c52 lwpid_t tid; local
55 tid = trussinfo->curthread->tid;
57 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
87 lwpid_t tid; local
89 tid = trussinfo->curthread->tid;
90 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
H A Damd64-linux.c53 lwpid_t tid; local
55 tid = trussinfo->curthread->tid;
57 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
84 lwpid_t tid; local
86 tid = trussinfo->curthread->tid;
87 if (ptrace(PT_GETREGS, tid, (caddr_t)&regs, 0) < 0) {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_linux.cpp23 void SetCurrentThread(u32 tid) { current_thread_tid = tid; } argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/POSIX/
H A DProcessMessage.h52 /// Indicates that the thread \p tid is about to exit with status \p status.
53 static ProcessMessage Limbo(lldb::tid_t tid, int status) { argument
54 return ProcessMessage(tid, eLimboMessage, status);
57 /// Indicates that the thread \p tid had the signal \p signum delivered.
58 static ProcessMessage Signal(lldb::tid_t tid, int signum) { argument
59 return ProcessMessage(tid, eSignalMessage, signum);
63 /// delivered to the thread \p tid.
64 static ProcessMessage SignalDelivered(lldb::tid_t tid, int signum) { argument
65 return ProcessMessage(tid, eSignalDeliveredMessage, signum);
68 /// Indicates that the thread \p tid encountere
69 Trace(lldb::tid_t tid) argument
74 Break(lldb::tid_t tid) argument
78 Watch(lldb::tid_t tid, lldb::addr_t wp_addr) argument
97 Exit(lldb::tid_t tid, int status) argument
102 Exec(lldb::tid_t tid) argument
149 ProcessMessage(lldb::tid_t tid, Kind kind, int status = 0, lldb::addr_t addr = 0) argument
155 ProcessMessage(lldb::tid_t tid, Kind kind, lldb::tid_t child_tid) argument
[all...]

Completed in 231 milliseconds

1234567891011>>