Home
last modified time | relevance | path

Searched refs:tid (Results 1 – 25 of 710) sorted by relevance

12345678910>>...29

/freebsd/sys/contrib/dev/mediatek/mt76/
H A Dagg-rx.c16 mt76_aggr_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames, int idx) in mt76_aggr_release() argument
20 tid->head = ieee80211_sn_inc(tid->head); in mt76_aggr_release()
22 skb = tid->reorder_buf[idx]; in mt76_aggr_release()
26 tid->reorder_buf[idx] = NULL; in mt76_aggr_release()
27 tid->nframes--; in mt76_aggr_release()
32 mt76_rx_aggr_release_frames(struct mt76_rx_tid *tid, in mt76_rx_aggr_release_frames() argument
38 while (ieee80211_sn_less(tid->head, head)) { in mt76_rx_aggr_release_frames()
39 idx = tid->head % tid->size; in mt76_rx_aggr_release_frames()
40 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_frames()
45 mt76_rx_aggr_release_head(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_release_head() argument
[all …]
/freebsd/sys/dev/ath/
H A Dif_ath_tx.c124 int tid);
126 int tid);
130 struct ieee80211_node *ni, struct mbuf *m0, int *tid);
133 struct ath_tid *tid, struct ath_buf *bf);
1376 ath_tx_do_ratelookup(struct ath_softc *sc, struct ath_buf *bf, int tid, in ath_tx_do_ratelookup() argument
1392 pktlen, tid, is_aggr, &rix, &try0, &rate, &maxdur, &maxpktlen); in ath_tx_do_ratelookup()
1415 ath_tx_update_clrdmask(struct ath_softc *sc, struct ath_tid *tid, in ath_tx_update_clrdmask() argument
1506 struct ath_tid *tid = &an->an_tid[bf->bf_state.bfs_tid]; in ath_tx_xmit_normal() local
1522 ath_tx_do_ratelookup(sc, bf, tid->tid, bf->bf_state.bfs_pktlen, false); in ath_tx_xmit_normal()
1530 tid->hwq_depth++; in ath_tx_xmit_normal()
[all …]
/freebsd/sys/contrib/openzfs/contrib/bpftrace/
H A Dtaskqlatency.bt17 @tqent_id[tid] = $tqent->tqent_id;
18 @tq_name[tid] = str($tqent->tqent_taskq->tq_name);
20 @start[@tq_name[tid], @tqent_id[tid]] = nsecs;
24 / @birth[@tq_name[tid], @tqent_id[tid]] /
26 @queue_lat_us[@tq_name[tid]] =
27 hist((nsecs - @birth[@tq_name[tid], @tqent_id[tid]])/1000);
28 delete(@birth[@tq_name[tid], @tqent_id[tid]]);
32 / @start[@tq_name[tid], @tqent_id[tid]] /
36 @exec_lat_us[@tq_name[tid], ksym($tqent->tqent_func)] =
37 hist((nsecs - @start[@tq_name[tid], @tqent_id[tid]])/1000);
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.cpp20 ThreadContextBase::ThreadContextBase(u32 tid) in ThreadContextBase() argument
21 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0), in ThreadContextBase()
90 if (tid != kMainTid) in SetCreated()
139 u32 tid = kInvalidTid; in CreateThread() local
142 tid = tctx->tid; in CreateThread()
145 tid = threads_.size(); in CreateThread()
146 tctx = context_factory_(tid); in CreateThread()
159 CHECK_NE(tid, kInvalidTid); in CreateThread()
160 CHECK_LT(tid, max_threads_); in CreateThread()
171 CHECK(live_.try_emplace(user_id, tid).second); in CreateThread()
[all …]
H A Dsanitizer_thread_registry.h42 explicit ThreadContextBase(u32 tid);
43 const u32 tid; // Thread ID. Main thread should have tid = 0. variable
87 typedef ThreadContextBase* (*ThreadContextFactory)(u32 tid);
103 ThreadContextBase *GetThreadLocked(u32 tid) { in GetThreadLocked() argument
104 return threads_.empty() ? nullptr : threads_[tid]; in GetThreadLocked()
126 void SetThreadName(u32 tid, const char *name);
128 void DetachThread(u32 tid, void *arg);
129 void JoinThread(u32 tid, void *arg);
131 ThreadStatus FinishThread(u32 tid);
132 void StartThread(u32 tid, tid_t os_id, ThreadType thread_type, void *arg);
[all …]
/freebsd/crypto/openssh/regress/
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: get"
[all …]
H A Dsshsig.sh4 tid="sshsig"
34 verbose "$tid: make certificates"
45 verbose "$tid: check signature for $t"
54 trace "$tid: key type $t check bad hashlg"
64 trace "$tid: key type $t sign with hash $h"
69 trace "$tid: key type $t verify with hash $h"
76 trace "$tid: key type $t verify with limited namespace"
84 trace "$tid: key type $t print-pubkey"
97 trace "$tid: key type $t verify with bad signers"
105 trace "$tid: key type $t verify with wrong key"
[all …]
H A Dcert-userkey.sh4 tid="certified user keys"
45 verbose "$tid: sign user ${ktype} cert"
80 verbose "$tid: ${_prefix} missing authorized_principals"
89 verbose "$tid: ${_prefix} empty authorized_principals"
98 verbose "$tid: ${_prefix} wrong authorized_principals"
107 verbose "$tid: ${_prefix} correct authorized_principals"
116 verbose "$tid: ${_prefix} authorized_principals bad key opt"
125 verbose "$tid: ${_prefix} authorized_principals command=false"
136 verbose "$tid: ${_prefix} authorized_principals command=true"
157 verbose "$tid: ${_prefix} wrong principals key option"
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_errors.h29 u32 tid; member
32 explicit ErrorBase(u32 tid_) : tid(tid_) {} in ErrorBase()
33 ErrorBase(u32 tid_, int initial_score, const char *reason) : tid(tid_) { in ErrorBase()
43 ErrorDeadlySignal(u32 tid, const SignalContext &sig) in ErrorDeadlySignal()
44 : ErrorBase(tid), in ErrorDeadlySignal()
72 ErrorDoubleFree(u32 tid, BufferedStackTrace *stack, uptr addr) in ErrorDoubleFree()
73 : ErrorBase(tid, 42, "double-free"), in ErrorDoubleFree()
88 ErrorNewDeleteTypeMismatch(u32 tid, BufferedStackTrace *stack, uptr addr, in ErrorNewDeleteTypeMismatch()
90 : ErrorBase(tid, 10, "new-delete-type-mismatch"), in ErrorNewDeleteTypeMismatch()
104 ErrorFreeNotMalloced(u32 tid, BufferedStackTrace *stack, uptr addr) in ErrorFreeNotMalloced()
[all …]
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_barrier.cpp212 size_t tid) { in __kmp_dist_barrier_wakeup() argument
227 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_dist_barrier_gather() argument
241 my_current_iter = b->iter[tid].iter; in __kmp_dist_barrier_gather()
243 group_leader = ((tid % b->threads_per_group) == 0); in __kmp_dist_barrier_gather()
247 gtid, team->t.t_id, tid, bt)); in __kmp_dist_barrier_gather()
259 size_t group_start = tid + 1; in __kmp_dist_barrier_gather()
260 size_t group_end = tid + b->threads_per_group; in __kmp_dist_barrier_gather()
311 b->flags[my_next_iter][tid].stillNeed = 1; in __kmp_dist_barrier_gather()
314 b->flags[my_current_iter][tid].stillNeed = 0; in __kmp_dist_barrier_gather()
349 if (KMP_MASTER_TID(tid)) { // Master reduces over group leaders in __kmp_dist_barrier_gather()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMach_arm.cpp26 int RegisterContextMach_arm::DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr) { in DoReadGPR() argument
28 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); in DoReadGPR()
31 int RegisterContextMach_arm::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { in DoReadFPU() argument
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU()
36 int RegisterContextMach_arm::DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) { in DoReadEXC() argument
38 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); in DoReadEXC()
41 int RegisterContextMach_arm::DoReadDBG(lldb::tid_t tid, int flavor, DBG &dbg) { in DoReadDBG() argument
43 return ::thread_get_state(tid, flavor, (thread_state_t)&dbg, &count); in DoReadDBG()
46 int RegisterContextMach_arm::DoWriteGPR(lldb::tid_t tid, int flavor, in DoWriteGPR() argument
49 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)), in DoWriteGPR()
[all …]
H A DRegisterContextMach_i386.cpp24 int RegisterContextMach_i386::DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr) { in DoReadGPR() argument
26 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); in DoReadGPR()
29 int RegisterContextMach_i386::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { in DoReadFPU() argument
31 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU()
34 int RegisterContextMach_i386::DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) { in DoReadEXC() argument
36 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); in DoReadEXC()
39 int RegisterContextMach_i386::DoWriteGPR(lldb::tid_t tid, int flavor, in DoWriteGPR() argument
42 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)), in DoWriteGPR()
46 int RegisterContextMach_i386::DoWriteFPU(lldb::tid_t tid, int flavor, in DoWriteFPU() argument
49 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)), in DoWriteFPU()
[all …]
H A DRegisterContextMach_x86_64.cpp24 int RegisterContextMach_x86_64::DoReadGPR(lldb::tid_t tid, int flavor, in DoReadGPR() argument
27 return ::thread_get_state(tid, flavor, (thread_state_t)&gpr, &count); in DoReadGPR()
30 int RegisterContextMach_x86_64::DoReadFPU(lldb::tid_t tid, int flavor, in DoReadFPU() argument
33 return ::thread_get_state(tid, flavor, (thread_state_t)&fpu, &count); in DoReadFPU()
36 int RegisterContextMach_x86_64::DoReadEXC(lldb::tid_t tid, int flavor, in DoReadEXC() argument
39 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); in DoReadEXC()
42 int RegisterContextMach_x86_64::DoWriteGPR(lldb::tid_t tid, int flavor, in DoWriteGPR() argument
45 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<GPR *>(&gpr)), in DoWriteGPR()
49 int RegisterContextMach_x86_64::DoWriteFPU(lldb::tid_t tid, int flavor, in DoWriteFPU() argument
52 tid, flavor, reinterpret_cast<thread_state_t>(const_cast<FPU *>(&fpu)), in DoWriteFPU()
[all …]
H A DRegisterContextMach_arm.h22 int DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr) override;
24 int DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) override;
26 int DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) override;
28 int DoReadDBG(lldb::tid_t tid, int flavor, DBG &dbg) override;
30 int DoWriteGPR(lldb::tid_t tid, int flavor, const GPR &gpr) override;
32 int DoWriteFPU(lldb::tid_t tid, int flavor, const FPU &fpu) override;
34 int DoWriteEXC(lldb::tid_t tid, int flavor, const EXC &exc) override;
36 int DoWriteDBG(lldb::tid_t tid, int flavor, const DBG &dbg) override;
/freebsd/sys/contrib/dev/athk/ath12k/
H A Dhal_tx.c58 le32_encode_bits(ti->tid, HAL_TCL_DATA_CMD_INFO3_TID) | in ath12k_hal_tx_cmd_desc_setup()
73 u8 hw_map_val[HAL_DSCP_TID_TBL_SIZE], dscp, tid; in ath12k_hal_tx_set_dscp_tid_map() local
91 tid = dscp2tid(dscp); in ath12k_hal_tx_set_dscp_tid_map()
92 value = u32_encode_bits(tid, HAL_TCL1_RING_FIELD_DSCP_TID_MAP0); in ath12k_hal_tx_set_dscp_tid_map()
95 tid = dscp2tid(dscp); in ath12k_hal_tx_set_dscp_tid_map()
96 value |= u32_encode_bits(tid, HAL_TCL1_RING_FIELD_DSCP_TID_MAP1); in ath12k_hal_tx_set_dscp_tid_map()
99 tid = dscp2tid(dscp); in ath12k_hal_tx_set_dscp_tid_map()
100 value |= u32_encode_bits(tid, HAL_TCL1_RING_FIELD_DSCP_TID_MAP2); in ath12k_hal_tx_set_dscp_tid_map()
103 tid = dscp2tid(dscp); in ath12k_hal_tx_set_dscp_tid_map()
104 value |= u32_encode_bits(tid, HAL_TCL1_RING_FIELD_DSCP_TID_MAP3); in ath12k_hal_tx_set_dscp_tid_map()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_thread.cpp24 ThreadContext::ThreadContext(Tid tid) : ThreadContextBase(tid), thr(), sync() {} in ThreadContext() argument
58 if (tctx->tid == kMainTid) { in ReportIgnoresEnabled()
62 " created at:\n", tctx->tid, tctx->name); in ReportIgnoresEnabled()
121 parent = thr->tid; in ThreadCreate()
130 Tid tid = ctx->thread_registry.CreateThread(uid, detached, parent, &arg); in ThreadCreate() local
131 DPrintf("#%d: ThreadCreate tid=%d uid=%zu\n", parent, tid, uid); in ThreadCreate()
132 return tid; in ThreadCreate()
152 void ThreadStart(ThreadState *thr, Tid tid, tid_t os_id, in ThreadStart() argument
154 ctx->thread_registry.StartThread(tid, os_id, thread_type, thr); in ThreadStart()
173 GetThreadStackAndTls(tid == kMainTid, &stk_addr, &stk_size, &tls_addr, in ThreadStart()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_fuchsia.cpp28 ThreadContext::ThreadContext(int tid) : ThreadContextLsanBase(tid) {} in ThreadContext() argument
55 void ThreadStart(u32 tid) { in ThreadStart() argument
59 ThreadContextLsanBase::ThreadStart(tid, GetTid(), ThreadType::Regular, &args); in ThreadStart()
66 u32 tid = ThreadCreate(kMainTid, true, &args); in InitializeMainThread() local
67 CHECK_EQ(tid, 0); in InitializeMainThread()
68 ThreadStart(tid); in InitializeMainThread()
104 u32 tid = ThreadCreate(parent_tid, detached, &args); in __sanitizer_before_thread_create_hook()
105 return reinterpret_cast<void *>(static_cast<uptr>(tid)); in __sanitizer_before_thread_create_hook()
111 u32 tid in __sanitizer_thread_create_hook()
103 u32 tid = ThreadCreate(parent_tid, detached, &args); __sanitizer_before_thread_create_hook() local
110 u32 tid = static_cast<u32>(reinterpret_cast<uptr>(hook)); __sanitizer_thread_create_hook() local
121 u32 tid = static_cast<u32>(reinterpret_cast<uptr>(hook)); __sanitizer_thread_start_hook() local
[all...]
/freebsd/sys/security/audit/
H A Dbsm_token.c667 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_process32() argument
682 ADD_U_INT32(dptr, tid->port); in au_to_process32()
690 ADD_MEM(dptr, &tid->machine, sizeof(u_int32_t)); in au_to_process32()
697 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_process64() argument
713 ADD_U_INT64(dptr, tid->port); in au_to_process64()
721 ADD_MEM(dptr, &tid->machine, sizeof(u_int32_t)); in au_to_process64()
728 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_process() argument
732 tid)); in au_to_process()
751 gid_t rgid, pid_t pid, au_asid_t sid, au_tid_addr_t *tid) in au_to_process32_ex() argument
756 KASSERT((tid->at_type == AU_IPv4) || (tid->at_type == AU_IPv6), in au_to_process32_ex()
[all …]
/freebsd/sys/dev/mlx5/mlx5_fpga/
H A Dmlx5fpga_trans.c45 u8 tid; member
60 u8 tid) in find_tid() argument
62 if (tid >= MLX5_FPGA_TID_COUNT) { in find_tid()
63 mlx5_fpga_warn(fdev, "Unexpected transaction ID %u\n", tid); in find_tid()
66 return &fdev->trans->transactions[tid]; in find_tid()
109 trans_priv->tid, status); in trans_complete()
132 trans_priv->tid, status); in trans_send_complete()
213 MLX5_SET(fpga_shell_qp_packet, header, tid, trans_priv->tid); in mlx5_fpga_trans_exec()
249 u8 tid, type; in mlx5_fpga_trans_recv() local
261 tid = MLX5_GET(fpga_shell_qp_packet, buf->sg[0].data, tid); in mlx5_fpga_trans_recv()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_thread.cpp46 static ThreadContextBase *GetMemprofThreadContext(u32 tid) { in GetMemprofThreadContext() argument
48 return new (allocator_for_thread_context) MemprofThreadContext(tid); in GetMemprofThreadContext()
67 MemprofThreadContext *GetThreadContextByTidLocked(u32 tid) { in GetThreadContextByTidLocked() argument
69 memprofThreadRegistry().GetThreadLocked(tid)); in GetThreadContextByTidLocked()
90 VReport(1, "T%d TSDDtor\n", context->tid); in TSDDtor()
96 int tid = this->tid(); in Destroy() local
97 VReport(1, "T%d exited\n", tid); in Destroy()
100 memprofThreadRegistry().FinishThread(tid); in Destroy()
131 VReport(1, "T%d: stack [%p,%p) size 0x%zx; local=%p\n", tid(), in Init()
140 memprofThreadRegistry().StartThread(tid(), os_id, ThreadType::Regular, in ThreadStart()
[all …]
H A Dmemprof_descriptions.cpp23 Init(t->tid, t->name); in MemprofThreadIdAndName()
26 MemprofThreadIdAndName::MemprofThreadIdAndName(u32 tid) { in MemprofThreadIdAndName() argument
27 if (tid == kInvalidTid) { in MemprofThreadIdAndName()
28 Init(tid, ""); in MemprofThreadIdAndName()
31 MemprofThreadContext *t = GetThreadContextByTidLocked(tid); in MemprofThreadIdAndName()
32 Init(tid, t->name); in MemprofThreadIdAndName()
36 void MemprofThreadIdAndName::Init(u32 tid, const char *tname) { in Init() argument
37 int len = internal_snprintf(name, sizeof(name), "T%d", tid); in Init()
47 if (context->tid == kMainTid || context->announced) { in DescribeThread()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DPerfContextSwitchDecoder.cpp78 uint32_t pid, tid; member
94 lldb::tid_t tid; member
147 lldb::cpu_id_t cpu_id, lldb::tid_t tid, lldb::pid_t pid, uint64_t start, in CreateCompleteExecution() argument
149 ThreadContinuousExecution o(cpu_id, tid, pid); in CreateCompleteExecution()
157 lldb::cpu_id_t cpu_id, lldb::tid_t tid, lldb::pid_t pid, in CreateHintedStartExecution() argument
159 ThreadContinuousExecution o(cpu_id, tid, pid); in CreateHintedStartExecution()
167 lldb::cpu_id_t cpu_id, lldb::tid_t tid, lldb::pid_t pid, uint64_t start, in CreateHintedEndExecution() argument
169 ThreadContinuousExecution o(cpu_id, tid, pid); in CreateHintedEndExecution()
177 lldb::cpu_id_t cpu_id, lldb::tid_t tid, lldb::pid_t pid, uint64_t end) { in CreateOnlyEndExecution() argument
178 ThreadContinuousExecution o(cpu_id, tid, pid); in CreateOnlyEndExecution()
[all …]
/freebsd/contrib/openbsm/libbsm/
H A Dbsm_token.c749 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_process32() argument
766 ADD_U_INT32(dptr, tid->port); in au_to_process32()
774 ADD_MEM(dptr, &tid->machine, sizeof(u_int32_t)); in au_to_process32()
781 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_process64() argument
799 ADD_U_INT64(dptr, tid->port); in au_to_process64()
807 ADD_MEM(dptr, &tid->machine, sizeof(u_int32_t)); in au_to_process64()
814 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_process() argument
818 tid)); in au_to_process()
837 gid_t rgid, pid_t pid, au_asid_t sid, au_tid_addr_t *tid) in au_to_process32_ex() argument
842 if (tid->at_type == AU_IPv4) in au_to_process32_ex()
[all …]
/freebsd/sys/contrib/dev/iwlwifi/mvm/
H A Dsta.c300 sta->addr, ba_data->tid); in iwl_mvm_rx_agg_session_expired()
355 int sta_id, u16 *queueptr, u8 tid) in iwl_mvm_disable_txq() argument
375 if (tid == IWL_MAX_TID_COUNT) in iwl_mvm_disable_txq()
376 tid = IWL_MGMT_TID; in iwl_mvm_disable_txq()
378 remove_cmd.u.remove.tid = cpu_to_le32(tid); in iwl_mvm_disable_txq()
396 mvm->queue_info[queue].tid_bitmap &= ~BIT(tid); in iwl_mvm_disable_txq()
413 cmd.tid = mvm->queue_info[queue].txq_tid; in iwl_mvm_disable_txq()
425 iwl_mvm_txq_from_tid(sta, tid); in iwl_mvm_disable_txq()
454 int tid; in iwl_mvm_get_queue_agg_tids() local
494 int tid; iwl_mvm_remove_sta_queue_marking() local
555 u8 sta_id, tid; iwl_mvm_free_inactive_queue() local
667 iwl_mvm_reconfig_scd(struct iwl_mvm * mvm,int queue,int fifo,int sta_id,int tid,int frame_limit,u16 ssn) iwl_mvm_reconfig_scd() argument
704 iwl_mvm_redirect_queue(struct iwl_mvm * mvm,int queue,int tid,int ac,int ssn,unsigned int wdg_timeout,bool force,struct iwl_mvm_txq * txq) iwl_mvm_redirect_queue() argument
850 iwl_mvm_tvqm_enable_txq(struct iwl_mvm * mvm,struct ieee80211_sta * sta,u8 sta_id,u8 tid,unsigned int timeout) iwl_mvm_tvqm_enable_txq() argument
914 iwl_mvm_sta_alloc_queue_tvqm(struct iwl_mvm * mvm,struct ieee80211_sta * sta,u8 ac,int tid) iwl_mvm_sta_alloc_queue_tvqm() argument
948 iwl_mvm_update_txq_mapping(struct iwl_mvm * mvm,struct ieee80211_sta * sta,int queue,u8 sta_id,u8 tid) iwl_mvm_update_txq_mapping() argument
1031 int tid; iwl_mvm_change_queue_tid() local
1067 int tid = -1; iwl_mvm_unshare_queue() local
1154 unsigned int tid; iwl_mvm_remove_inactive_tids() local
1262 int tid; iwl_mvm_inactivity_check() local
1340 iwl_mvm_sta_alloc_queue(struct iwl_mvm * mvm,struct ieee80211_sta * sta,u8 ac,int tid) iwl_mvm_sta_alloc_queue() argument
1519 u8 tid; iwl_mvm_add_new_dqa_stream_wk() local
2770 iwl_mvm_fw_baid_op_sta(struct iwl_mvm * mvm,struct ieee80211_sta * sta,bool start,int tid,u16 ssn,u16 buf_size) iwl_mvm_fw_baid_op_sta() argument
2819 iwl_mvm_fw_baid_op_cmd(struct iwl_mvm * mvm,struct ieee80211_sta * sta,bool start,int tid,u16 ssn,u16 buf_size,int baid) iwl_mvm_fw_baid_op_cmd() argument
2867 iwl_mvm_fw_baid_op(struct iwl_mvm * mvm,struct ieee80211_sta * sta,bool start,int tid,u16 ssn,u16 buf_size,int baid) iwl_mvm_fw_baid_op() argument
2880 iwl_mvm_sta_rx_agg(struct iwl_mvm * mvm,struct ieee80211_sta * sta,int tid,u16 ssn,bool start,u16 buf_size,u16 timeout) iwl_mvm_sta_rx_agg() argument
3026 iwl_mvm_sta_tx_agg(struct iwl_mvm * mvm,struct ieee80211_sta * sta,int tid,u8 queue,bool start) iwl_mvm_sta_tx_agg() argument
3096 iwl_mvm_sta_tx_agg_start(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta,u16 tid,u16 * ssn) iwl_mvm_sta_tx_agg_start() argument
3201 iwl_mvm_sta_tx_agg_oper(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta,u16 tid,u16 buf_size,bool amsdu) iwl_mvm_sta_tx_agg_oper() argument
3354 iwl_mvm_sta_tx_agg_stop(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta,u16 tid) iwl_mvm_sta_tx_agg_stop() argument
3427 iwl_mvm_sta_tx_agg_flush(struct iwl_mvm * mvm,struct ieee80211_vif * vif,struct ieee80211_sta * sta,u16 tid) iwl_mvm_sta_tx_agg_flush() argument
4069 int tid, ret; iwl_mvm_sta_modify_sleep_tx_count() local
[all...]
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DDebug.h20 lldb::tid_t tid; // The thread ID that this action applies to, member
57 void AppendAction(lldb::tid_t tid, lldb::StateType state, int signal = 0) {
58 ResumeAction action = {tid, state, signal};
74 const ResumeAction *GetActionForThread(lldb::tid_t tid, in GetActionForThread() argument
78 if (m_actions[i].tid == tid) in GetActionForThread()
81 if (default_ok && tid != LLDB_INVALID_THREAD_ID) in GetActionForThread()
107 void SetSignalHandledForThread(lldb::tid_t tid) const { in SetSignalHandledForThread() argument
108 if (tid != LLDB_INVALID_THREAD_ID) { in SetSignalHandledForThread()
111 if (m_actions[i].tid == tid) in SetSignalHandledForThread()

12345678910>>...29