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

1234567891011>>

/freebsd-12-stable/crypto/openssh/regress/
H A Dlocalcommand.sh4 tid="localcommand"
9 verbose "test $tid: proto $p localcommand"
12 fail "$tid proto $p"
H A Dconnect.sh4 tid="simple connect"
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 diff $OBJ/expect $OBJ/actual || fail "$tid"
H A Dbroken-pipe.sh4 tid="broken pipe test"
H A Dconnect-uri.sh4 tid="uri connect"
12 verbose "$tid: no trailing slash"
18 verbose "$tid: trailing slash"
24 verbose "$tid: with path name"
H A Dsftp-cmds.sh8 tid="sftp commands"
30 verbose "$tid: lls"
34 verbose "$tid: lls w/path"
38 verbose "$tid: ls"
43 verbose "$tid: shell"
48 verbose "$tid: pwd"
53 verbose "$tid: lpwd"
58 verbose "$tid: quit"
63 verbose "$tid: help"
69 verbose "$tid
[all...]
/freebsd-12-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-12-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-12-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-12-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-12-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-12-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-12-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_linux.cpp23 void SetCurrentThread(u32 tid) { current_thread_tid = tid; } argument
/freebsd-12-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...]
/freebsd-12-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...]
/freebsd-12-stable/sys/dev/ath/
H A Dif_ath_tx.c126 int tid);
128 int tid);
132 struct ieee80211_node *ni, struct mbuf *m0, int *tid);
135 struct ath_tid *tid, struct ath_buf *bf);
1379 ath_tx_do_ratelookup(struct ath_softc *sc, struct ath_buf *bf, int tid, argument
1395 pktlen, tid, is_aggr, &rix, &try0, &rate, &maxdur, &maxpktlen);
1418 ath_tx_update_clrdmask(struct ath_softc *sc, struct ath_tid *tid, argument
1509 struct ath_tid *tid = &an->an_tid[bf->bf_state.bfs_tid]; local
1525 ath_tx_do_ratelookup(sc, bf, tid->tid, b
1911 int tid; local
2607 ath_tx_action_frame_override_queue(struct ath_softc *sc, struct ieee80211_node *ni, struct mbuf *m0, int *tid) argument
2657 ath_tx_addto_baw(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid, struct ath_buf *bf) argument
2748 ath_tx_switch_baw_buf(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid, struct ath_buf *old_bf, struct ath_buf *new_bf) argument
2795 ath_tx_update_baw(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid, const struct ath_buf *bf) argument
2846 ath_tx_leak_count_update(struct ath_softc *sc, struct ath_tid *tid, struct ath_buf *bf) argument
2886 ath_tx_tid_can_tx_or_sched(struct ath_softc *sc, struct ath_tid *tid) argument
2908 ath_tx_tid_sched(struct ath_softc *sc, struct ath_tid *tid) argument
2961 ath_tx_tid_unsched(struct ath_softc *sc, struct ath_tid *tid) argument
2988 int tid; local
3051 struct ath_tid *tid = &an->an_tid[bf->bf_state.bfs_tid]; local
3143 int pri, tid; local
3356 ath_tx_tid_pause(struct ath_softc *sc, struct ath_tid *tid) argument
3372 ath_tx_tid_resume(struct ath_softc *sc, struct ath_tid *tid) argument
3430 ath_tx_tid_filt_addbuf(struct ath_softc *sc, struct ath_tid *tid, struct ath_buf *bf) argument
3455 ath_tx_tid_filt_comp_buf(struct ath_softc *sc, struct ath_tid *tid, struct ath_buf *bf) argument
3480 ath_tx_tid_filt_comp_complete(struct ath_softc *sc, struct ath_tid *tid) argument
3523 ath_tx_tid_filt_comp_single(struct ath_softc *sc, struct ath_tid *tid, struct ath_buf *bf) argument
3574 ath_tx_tid_filt_comp_aggr(struct ath_softc *sc, struct ath_tid *tid, struct ath_buf *bf_first, ath_bufhead *bf_q) argument
3633 ath_tx_tid_bar_suspend(struct ath_softc *sc, struct ath_tid *tid) argument
3667 ath_tx_tid_bar_unsuspend(struct ath_softc *sc, struct ath_tid *tid) argument
3696 ath_tx_tid_bar_tx_ready(struct ath_softc *sc, struct ath_tid *tid) argument
3727 ath_tx_tid_bar_tx(struct ath_softc *sc, struct ath_tid *tid) argument
3808 ath_tx_tid_drain_pkt(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid, ath_bufhead *bf_cq, struct ath_buf *bf) argument
3848 ath_tx_tid_drain_print(struct ath_softc *sc, struct ath_node *an, const char *pfx, struct ath_tid *tid, struct ath_buf *bf) argument
3930 ath_tx_tid_drain(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid, ath_bufhead *bf_cq) argument
4020 ath_tx_tid_reset(struct ath_softc *sc, struct ath_tid *tid) argument
4091 int tid; local
4146 struct ath_tid *tid; local
4192 int tid = bf->bf_state.bfs_tid; local
4279 int tid = bf->bf_state.bfs_tid; local
4315 ath_tx_tid_cleanup_frame(struct ath_softc *sc, struct ath_node *an, int tid, struct ath_buf *bf_head, ath_bufhead *bf_cq) argument
4380 ath_tx_tid_cleanup(struct ath_softc *sc, struct ath_node *an, int tid, ath_bufhead *bf_cq) argument
4451 ath_tx_retry_clone(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid, struct ath_buf *bf) argument
4521 int tid = bf->bf_state.bfs_tid; local
4612 int tid = bf->bf_state.bfs_tid; local
4673 ath_tx_comp_aggr_error(struct ath_softc *sc, struct ath_buf *bf_first, struct ath_tid *tid) argument
4764 int tid = bf_first->bf_state.bfs_tid; local
4828 int tid = bf_first->bf_state.bfs_tid; local
5169 int tid = bf->bf_state.bfs_tid; local
5371 ath_tx_tid_swq_depth_bytes(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid) argument
5427 ath_tx_tid_hw_queue_aggr(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid) argument
5658 ath_tx_tid_hw_queue_norm(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid) argument
5752 struct ath_tid *tid, *next, *last; local
5857 ath_tx_get_tx_tid(struct ath_node *an, int tid) argument
5873 ath_tx_ampdu_running(struct ath_softc *sc, struct ath_node *an, int tid) argument
5891 ath_tx_ampdu_pending(struct ath_softc *sc, struct ath_node *an, int tid) argument
5922 int tid = tap->txa_tid; local
6000 int tid = tap->txa_tid; local
6046 int tid = tap->txa_tid; local
6123 struct ath_tid *tid; local
6181 int tid = tap->txa_tid; local
6254 int tid = tap->txa_tid; local
6313 int tid; local
6350 int tid; local
[all...]
/freebsd-12-stable/sys/mips/beri/
H A Dberi_mp.h83 void beripic_setup_ipi(device_t dev, u_int tid, u_int ipi_irq);
84 void beripic_send_ipi(device_t dev, u_int tid);
85 void beripic_clear_ipi(device_t dev, u_int tid);

Completed in 208 milliseconds

1234567891011>>