Home
last modified time | relevance | path

Searched defs:tid (Results 1 – 25 of 363) sorted by relevance

12345678910>>...15

/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDRegisterContextMach_arm.cpp26 int RegisterContextMach_arm::DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr) { in DoReadGPR()
31 int RegisterContextMach_arm::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { in DoReadFPU()
36 int RegisterContextMach_arm::DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) { in DoReadEXC()
41 int RegisterContextMach_arm::DoReadDBG(lldb::tid_t tid, int flavor, DBG &dbg) { in DoReadDBG()
46 int RegisterContextMach_arm::DoWriteGPR(lldb::tid_t tid, int flavor, in DoWriteGPR()
53 int RegisterContextMach_arm::DoWriteFPU(lldb::tid_t tid, int flavor, in DoWriteFPU()
60 int RegisterContextMach_arm::DoWriteEXC(lldb::tid_t tid, int flavor, in DoWriteEXC()
67 int RegisterContextMach_arm::DoWriteDBG(lldb::tid_t tid, int flavor, in DoWriteDBG()
HDRegisterContextMach_i386.cpp24 int RegisterContextMach_i386::DoReadGPR(lldb::tid_t tid, int flavor, GPR &gpr) { in DoReadGPR()
29 int RegisterContextMach_i386::DoReadFPU(lldb::tid_t tid, int flavor, FPU &fpu) { in DoReadFPU()
34 int RegisterContextMach_i386::DoReadEXC(lldb::tid_t tid, int flavor, EXC &exc) { in DoReadEXC()
39 int RegisterContextMach_i386::DoWriteGPR(lldb::tid_t tid, int flavor, in DoWriteGPR()
46 int RegisterContextMach_i386::DoWriteFPU(lldb::tid_t tid, int flavor, in DoWriteFPU()
53 int RegisterContextMach_i386::DoWriteEXC(lldb::tid_t tid, int flavor, in DoWriteEXC()
HDRegisterContextMach_x86_64.cpp24 int RegisterContextMach_x86_64::DoReadGPR(lldb::tid_t tid, int flavor, in DoReadGPR()
30 int RegisterContextMach_x86_64::DoReadFPU(lldb::tid_t tid, int flavor, in DoReadFPU()
36 int RegisterContextMach_x86_64::DoReadEXC(lldb::tid_t tid, int flavor, in DoReadEXC()
42 int RegisterContextMach_x86_64::DoWriteGPR(lldb::tid_t tid, int flavor, in DoWriteGPR()
49 int RegisterContextMach_x86_64::DoWriteFPU(lldb::tid_t tid, int flavor, in DoWriteFPU()
56 int RegisterContextMach_x86_64::DoWriteEXC(lldb::tid_t tid, int flavor, in DoWriteEXC()
HDThreadMemory.cpp23 ThreadMemory::ThreadMemory(Process &process, tid_t tid, in ThreadMemory()
29 ThreadMemory::ThreadMemory(Process &process, lldb::tid_t tid, in ThreadMemory()
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_thread_registry.cpp20 ThreadContextBase::ThreadContextBase(u32 tid) in ThreadContextBase()
139 u32 tid = kInvalidTid; in CreateThread() local
181 for (u32 tid = 0; tid < threads_.size(); tid++) { in RunCallbackForEachThreadLocked() local
191 for (u32 tid = 0; tid < threads_.size(); tid++) { in FindThread() local
202 for (u32 tid = 0; tid < threads_.size(); tid++) { in FindThreadContextLocked() local
221 void ThreadRegistry::SetThreadName(u32 tid, const char *name) { in SetThreadName()
232 if (const auto *tid = live_.find(user_id)) in SetThreadNameByUserId() local
236 void ThreadRegistry::DetachThread(u32 tid, void *arg) { in DetachThread()
255 void ThreadRegistry::JoinThread(u32 tid, void *arg) { in JoinThread()
283 ThreadStatus ThreadRegistry::FinishThread(u32 tid) { in FinishThread()
[all …]
HDsanitizer_symbolizer_report_fuchsia.cpp23 void ReportDeadlySignal(const SignalContext &sig, u32 tid, in ReportDeadlySignal()
27 void HandleDeadlySignal(void *siginfo, void *context, u32 tid, in HandleDeadlySignal()
/freebsd-13-stable/sys/dev/ath/
HDif_ath_tx.c1377 ath_tx_do_ratelookup(struct ath_softc *sc, struct ath_buf *bf, int tid, in ath_tx_do_ratelookup()
1416 ath_tx_update_clrdmask(struct ath_softc *sc, struct ath_tid *tid, in ath_tx_update_clrdmask()
1507 struct ath_tid *tid = &an->an_tid[bf->bf_state.bfs_tid]; in ath_tx_xmit_normal() local
1909 int tid; in ath_tx_start() local
2607 struct mbuf *m0, int *tid) in ath_tx_action_frame_override_queue()
2656 struct ath_tid *tid, struct ath_buf *bf) in ath_tx_addto_baw()
2747 struct ath_tid *tid, struct ath_buf *old_bf, struct ath_buf *new_bf) in ath_tx_switch_baw_buf()
2794 struct ath_tid *tid, const struct ath_buf *bf) in ath_tx_update_baw()
2844 ath_tx_leak_count_update(struct ath_softc *sc, struct ath_tid *tid, in ath_tx_leak_count_update()
2884 ath_tx_tid_can_tx_or_sched(struct ath_softc *sc, struct ath_tid *tid) in ath_tx_tid_can_tx_or_sched()
[all …]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/lsan/
HDlsan_fuchsia.cpp28 ThreadContext::ThreadContext(int tid) : ThreadContextLsanBase(tid) {} in ThreadContext()
55 void ThreadStart(u32 tid) { in ThreadStart()
66 u32 tid = ThreadCreate(kMainTid, true, &args); in InitializeMainThread() local
104 u32 tid = ThreadCreate(parent_tid, detached, &args); in __sanitizer_before_thread_create_hook() local
111 u32 tid = static_cast<u32>(reinterpret_cast<uptr>(hook)); in __sanitizer_thread_create_hook() local
122 u32 tid = static_cast<u32>(reinterpret_cast<uptr>(hook)); in __sanitizer_thread_start_hook() local
HDlsan_thread.cpp32 static ThreadContextBase *CreateThreadContext(u32 tid) { in CreateThreadContext()
50 ThreadContextLsanBase::ThreadContextLsanBase(int tid) in ThreadContextLsanBase()
68 void ThreadContextLsanBase::ThreadStart(u32 tid, tid_t os_id, in ThreadStart()
HDlsan_posix.cpp27 ThreadContext::ThreadContext(int tid) : ThreadContextLsanBase(tid) {} in ThreadContext()
51 void ThreadStart(u32 tid, tid_t os_id, ThreadType thread_type) { in ThreadStart()
82 u32 tid = ThreadCreate(kMainTid, true); in InitializeMainThread() local
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDThreadPlanStack.h127 lldb::tid_t tid = thread.GetID(); in AddThread() local
131 bool RemoveTID(lldb::tid_t tid) { in RemoveTID()
141 ThreadPlanStack *Find(lldb::tid_t tid) { in Find()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/
HDOperatingSystemInterface.h20 virtual StructuredData::DictionarySP CreateThread(lldb::tid_t tid, in CreateThread()
27 virtual std::optional<std::string> GetRegisterContextForTID(lldb::tid_t tid) { in GetRegisterContextForTID()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
HDPerfContextSwitchDecoder.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()
157 lldb::cpu_id_t cpu_id, lldb::tid_t tid, lldb::pid_t pid, in CreateHintedStartExecution()
167 lldb::cpu_id_t cpu_id, lldb::tid_t tid, lldb::pid_t pid, uint64_t start, in CreateHintedEndExecution()
177 lldb::cpu_id_t cpu_id, lldb::tid_t tid, lldb::pid_t pid, uint64_t end) { in CreateOnlyEndExecution()
185 lldb::cpu_id_t cpu_id, lldb::tid_t tid, lldb::pid_t pid, uint64_t start) { in CreateOnlyStartExecution()
/freebsd-13-stable/sys/dev/cxgbe/
HDt4_filter.c61 int tid; /* tid of the filter TCB */ member
104 hf_hashfn_tid(int tid) in hf_hashfn_tid()
283 lookup_hftid(struct adapter *sc, int tid) in lookup_hftid()
597 get_filter_hits(struct adapter *sc, uint32_t tid) in get_filter_hits()
641 u_int tid; in set_tcamfilter() local
1187 set_tcb_field(struct adapter *sc, u_int tid, uint16_t word, uint64_t mask, in set_tcb_field()
1213 set_tcb_tflag(struct adapter *sc, int tid, u_int bit_pos, u_int val, in set_tcb_tflag()
1226 u_int tid = GET_TID(rpl); in t4_filter_rpl() local
1348 u_int tid = GET_TID(rpl); in t4_hashfilter_tcb_rpl() local
1383 unsigned int tid = GET_TID(cpl); in t4_del_hashfilter_rpl() local
[all …]
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
HDkmp_barrier.cpp212 size_t tid) { in __kmp_dist_barrier_wakeup()
227 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_dist_barrier_gather()
376 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_dist_barrier_release()
557 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_linear_barrier_gather_template()
659 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_linear_barrier_release_template()
766 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_linear_barrier_gather()
773 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_linear_barrier_gather_cancellable()
780 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_linear_barrier_release()
787 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_linear_barrier_release_cancellable()
795 enum barrier_type bt, kmp_info_t *this_thr, int gtid, int tid, in __kmp_tree_barrier_gather()
[all …]
/freebsd-13-stable/lib/libthr/thread/
HDthr_affinity.c44 lwpid_t tid; in _pthread_setaffinity_np() local
67 lwpid_t tid; in _pthread_getaffinity_np() local
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/memprof/
HDmemprof_descriptions.cpp26 MemprofThreadIdAndName::MemprofThreadIdAndName(u32 tid) { in MemprofThreadIdAndName()
36 void MemprofThreadIdAndName::Init(u32 tid, const char *tname) { in Init()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
HDThreadList.cpp69 void ThreadList::PushExpressionExecutionThread(lldb::tid_t tid) { in PushExpressionExecutionThread()
73 void ThreadList::PopExpressionExecutionThread(lldb::tid_t tid) { in PopExpressionExecutionThread()
102 ThreadSP ThreadList::FindThreadByID(lldb::tid_t tid, bool can_update) { in FindThreadByID()
120 ThreadSP ThreadList::FindThreadByProtocolID(lldb::tid_t tid, bool can_update) { in FindThreadByProtocolID()
138 ThreadSP ThreadList::RemoveThreadByID(lldb::tid_t tid, bool can_update) { in RemoveThreadByID()
157 ThreadSP ThreadList::RemoveThreadByProtocolID(lldb::tid_t tid, in RemoveThreadByProtocolID()
695 bool ThreadList::SetSelectedThreadByID(lldb::tid_t tid, bool notify) { in SetSelectedThreadByID()
725 void ThreadList::NotifySelectedThreadChanged(lldb::tid_t tid) { in NotifySelectedThreadChanged()
762 const lldb::tid_t tid = (*rhs_pos)->GetID(); in Update() local
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
HDtsan_rtl_thread.cpp24 ThreadContext::ThreadContext(Tid tid) : ThreadContextBase(tid), thr(), sync() {} in ThreadContext()
130 Tid tid = ctx->thread_registry.CreateThread(uid, detached, parent, &arg); in ThreadCreate() local
152 void ThreadStart(ThreadState *thr, Tid tid, tid_t os_id, in ThreadStart()
293 void ThreadJoin(ThreadState *thr, uptr pc, Tid tid) { in ThreadJoin()
316 void ThreadDetach(ThreadState *thr, uptr pc, Tid tid) { in ThreadDetach()
323 void ThreadNotJoined(ThreadState *thr, uptr pc, Tid tid, uptr uid) { in ThreadNotJoined()
344 Tid tid = ThreadCreate(thr, pc, 0, true); in FiberCreate() local
/freebsd-13-stable/sys/dev/cxgbe/tom/
HDt4_tom.c315 int tid = toep->tid; in release_offload_resources() local
474 send_get_tcb(struct adapter *sc, u_int tid) in send_get_tcb()
498 alloc_tcb_histent(struct adapter *sc, u_int tid, int flags) in alloc_tcb_histent()
527 add_tid_to_history(struct adapter *sc, u_int tid) in add_tid_to_history()
579 lookup_tcb_histent(struct adapter *sc, u_int tid, bool addrem) in lookup_tcb_histent()
695 const u_int tid = GET_TID(cpl); in do_get_tcb_rpl() local
775 read_tcb_using_memwin(struct adapter *sc, u_int tid, uint64_t *buf) in read_tcb_using_memwin()
800 fill_tcp_info(struct adapter *sc, u_int tid, struct tcp_info *ti) in fill_tcp_info()
893 insert_tid(struct adapter *sc, int tid, void *ctx, int ntids) in insert_tid()
905 lookup_tid(struct adapter *sc, int tid) in lookup_tid()
[all …]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
HDOperatingSystemPythonInterface.cpp41 OperatingSystemPythonInterface::CreateThread(lldb::tid_t tid, in CreateThread()
71 OperatingSystemPythonInterface::GetRegisterContextForTID(lldb::tid_t tid) { in GetRegisterContextForTID()
/freebsd-13-stable/sys/dev/mlx5/mlx5_fpga/
HDmlx5fpga_trans.c45 u8 tid; member
60 u8 tid) in find_tid()
249 u8 tid, type; in mlx5_fpga_trans_recv() local
309 int tid; in mlx5_fpga_trans_device_init() local
/freebsd-13-stable/contrib/sendmail/libmilter/
HDmonitor.c81 sthread_t tid; local
152 sthread_t tid; in mi_monitor_init() local
/freebsd-13-stable/crypto/openssl/crypto/err/
HDerr_prn.c29 CRYPTO_THREAD_ID tid; in ERR_print_errors_cb() member
31 } tid; in ERR_print_errors_cb() local
/freebsd-13-stable/contrib/openbsm/libbsm/
HDbsm_token.c749 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_process32()
781 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_process64()
814 pid_t pid, au_asid_t sid, au_tid_t *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()
877 gid_t rgid, pid_t pid, au_asid_t sid, au_tid_addr_t *tid) in au_to_process64_ex()
919 gid_t rgid, pid_t pid, au_asid_t sid, au_tid_addr_t *tid) in au_to_process_ex()
1160 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_subject32()
1185 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_subject64()
1211 pid_t pid, au_asid_t sid, au_tid_t *tid) in au_to_subject()
1234 gid_t rgid, pid_t pid, au_asid_t sid, au_tid_addr_t *tid) in au_to_subject32_ex()
[all …]

12345678910>>...15