Searched refs:tid (Results 301 - 325 of 545) sorted by relevance

<<11121314151617181920>>

/freebsd-12-stable/contrib/llvm-project/llvm/lib/XRay/
H A DBlockIndexer.cpp67 CurrentBlock.ThreadID = R.tid();
H A DRecordPrinter.cpp70 OS << formatv("<Thread ID: {0}>", R.tid()) << Delim;
/freebsd-12-stable/contrib/ofed/libibumad/
H A Dumad_types.h133 __be64 tid; member in struct:umad_hdr
/freebsd-12-stable/sys/compat/cloudabi/
H A Dcloudabi_futex.c599 cloudabi_tid_t tid, bool force_kernel_managed)
604 if (fl->fl_owner == tid) {
622 if (old == (tid | CLOUDABI_LOCK_WRLOCKED)) {
629 new = tid | CLOUDABI_LOCK_WRLOCKED;
639 fl->fl_owner = tid;
661 cloudabi_tid_t tid; local
673 tid = futex_queue_tid_best(&fl->fl_writers);
675 tid | CLOUDABI_LOCK_WRLOCKED |
681 fl->fl_owner = tid;
598 futex_lock_trywrlock(struct futex_lock *fl, cloudabi_lock_t *address, cloudabi_tid_t tid, bool force_kernel_managed) argument
/freebsd-12-stable/sys/dev/mps/
H A Dmps_sas.h61 uint16_t tid; member in struct:mpssas_target
/freebsd-12-stable/sys/ofed/include/rdma/
H A Dopa_smi.h63 __be64 tid; member in struct:opa_smp
/freebsd-12-stable/sys/dev/qlnx/qlnxe/
H A Decore_cxt.h252 u32 tid,
/freebsd-12-stable/lib/libthr/thread/
H A Dthr_cancel.c162 thr_wake(curthread->tid);
H A Dthr_suspend_np.c171 if (thread->tid == TID_TERMINATED)
/freebsd-12-stable/crypto/openssh/regress/
H A Dcfgmatch.sh4 tid="sshd_config match"
H A Dkey-options.sh4 tid="key options"
H A Dagent.sh4 tid="simple agent test"
H A Dkeytype.sh4 tid="login with different key types"
H A Dmultipubkey.sh4 tid="multiple pubkey"
/freebsd-12-stable/sys/dev/cxgbe/common/
H A Dcommon.h453 static inline int is_ftid(const struct adapter *sc, u_int tid) argument
456 return (sc->tids.nftids > 0 && tid >= sc->tids.ftid_base &&
457 tid <= sc->tids.ftid_end);
460 static inline int is_hpftid(const struct adapter *sc, u_int tid) argument
463 return (sc->tids.nhpftids > 0 && tid >= sc->tids.hpftid_base &&
464 tid <= sc->tids.hpftid_end);
467 static inline int is_etid(const struct adapter *sc, u_int tid) argument
470 return (sc->tids.netids > 0 && tid >= sc->tids.etid_base &&
471 tid <= sc->tids.etid_end);
/freebsd-12-stable/sys/net80211/
H A Dieee80211_crypto_tkip.c296 uint8_t *ivp, tid; local
331 tid = ieee80211_gettid(wh);
333 if (ctx->rx_rsc <= k->wk_keyrsc[tid] &&
338 ieee80211_notify_replay_failure(vap, wh, k, ctx->rx_rsc, tid);
390 uint8_t tid; local
443 tid = ieee80211_gettid(wh);
444 k->wk_keyrsc[tid] = ctx->rx_rsc;
1041 u8 tid; local
1050 tid = ieee80211_gettid(wh);
1051 if (iv32 != (u32)(key->wk_keyrsc[tid] >> 1
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBProcess.h103 lldb::SBThread CreateOSPluginThread(lldb::tid_t tid, lldb::addr_t context);
107 bool SetSelectedThreadByID(lldb::tid_t tid);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DMainThreadCheckerRuntime.cpp146 d->AddIntegerItem("tid", thread_sp->GetIndexID());
262 info->GetObjectForDotSeparatedPath("tid");
263 tid_t tid = thread_id_obj ? thread_id_obj->GetIntegerValue() : 0; local
265 HistoryThread *history_thread = new HistoryThread(*process_sp, tid, PCs);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DGDBRemote.cpp62 strm.Printf("tid=0x%4.4" PRIx64 " <%4u> %s packet: %s\n", tid,
90 io.mapRequired("tid", Packet.tid);
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win.cpp142 void *arg, DWORD thr_flags, DWORD *tid) {
154 thr_flags, tid);
140 INTERCEPTOR_WINAPI(HANDLE, CreateThread, LPSECURITY_ATTRIBUTES security, SIZE_T stack_size, LPTHREAD_START_ROUTINE start_routine, void *arg, DWORD thr_flags, DWORD *tid) argument
/freebsd-12-stable/contrib/ofed/libibmad/
H A Dmad.c54 #define GET_IB_USERLAND_TID(tid) (tid & 0x00000000ffffffff)
/freebsd-12-stable/contrib/apr-util/test/
H A Dtestreslist.c95 int tid; member in struct:__anon217
240 thread_info[i].tid = i;
/freebsd-12-stable/usr.bin/truss/
H A Dsetup.c265 if (nt->tid == lwpid)
273 nt->tid = lwpid;
394 if (nt->tid == lwpid) {
455 if (narg != 0 && ptrace(PT_GET_SC_ARGS, t->tid, (caddr_t)t->cs.args,
535 if (ptrace(PT_GET_SC_RET, t->tid, (caddr_t)&psr, sizeof(psr)) != 0) {
598 len += fprintf(info->outfile, "%6d", t->tid);
622 fprintf(info->outfile, "<thread %ld exited>\n", (long)t->tid);
634 fprintf(info->outfile, "<new thread %ld>\n", (long)t->tid);
/freebsd-12-stable/usr.sbin/bluetooth/sdpd/
H A Dsar.c290 pdu.tid = ((sdp_pdu_p)(srv->req))->tid;
H A Dssr.c254 pdu.tid = ((sdp_pdu_p)(srv->req))->tid;

Completed in 312 milliseconds

<<11121314151617181920>>