Searched refs:tid (Results 101 - 125 of 707) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssh/regress/
H A Dconch-ciphers.sh4 tid="conch ciphers"
18 verbose "$tid: cipher $c"
H A Ddropbear-kex.sh4 tid="dropbear kex"
20 verbose "$tid: kex $k"
H A Dputty-kex.sh4 tid="putty KEX"
25 verbose "$tid: kex $k"
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
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/
H A Dtst.sigwait.c42 timer_t tid; local
49 if (timer_create(CLOCK_REALTIME, &ev, &tid) == -1) {
64 if (timer_settime(tid, TIMER_RELTIME, &ts, NULL) == -1) {
/freebsd-current/tools/test/stress2/misc/
H A Dexecve.sh90 pthread_t tid[5];
96 if ((rc = pthread_create(&tid[i], NULL, texecve, NULL)) != 0)
104 if ((rc = pthread_join(tid[i], NULL)) != 0)
H A Dmmap22.sh95 pthread_t tid;
98 if ((rc = pthread_create(&tid, NULL, tmmap, NULL)) != 0)
111 if ((rc = pthread_join(tid, NULL)) != 0)
H A Dpthread9.sh146 pthread_t tid[3];
150 if ((rc = pthread_create(&tid[0], NULL, t1, NULL)) != 0)
152 if ((rc = pthread_create(&tid[1], NULL, t2, NULL)) != 0)
154 if ((rc = pthread_create(&tid[2], NULL, t3, NULL)) != 0)
160 if ((rc = pthread_join(tid[i], NULL)) != 0)
H A Dnfs15.sh147 pthread_t tid[3];
151 if ((rc = pthread_create(&tid[0], NULL, t2, NULL)) == -1)
153 if ((rc = pthread_create(&tid[1], NULL, t2, NULL)) == -1)
155 if ((rc = pthread_create(&tid[2], NULL, t1, NULL)) == -1)
158 if ((rc = pthread_join(tid[0], NULL)) == -1)
160 if ((rc = pthread_join(tid[1], NULL)) == -1)
162 if ((rc = pthread_join(tid[2], NULL)) == -1)
H A Dnfs16.sh131 pthread_t tid[3];
135 if ((rc = pthread_create(&tid[0], NULL, t2, NULL)) == -1)
137 if ((rc = pthread_create(&tid[1], NULL, t2, NULL)) == -1)
139 if ((rc = pthread_create(&tid[2], NULL, t1, NULL)) == -1)
142 if ((rc = pthread_join(tid[0], NULL)) == -1)
144 if ((rc = pthread_join(tid[1], NULL)) == -1)
146 if ((rc = pthread_join(tid[2], NULL)) == -1)
H A Dunix_socket_detach2.sh118 pthread_t tid[2];
130 if ((r = pthread_create(&tid[0], NULL, t1, NULL)) != 0)
132 if ((r = pthread_create(&tid[1], NULL, t2, NULL)) != 0)
135 if ((r = pthread_join(tid[0], NULL)) != 0)
137 if ((r = pthread_join(tid[1], NULL)) != 0)
H A Dmlockall5.sh121 pthread_t tid[2];
126 rc = pthread_create(&tid[0], NULL, touch, NULL);
129 rc = pthread_create(&tid[1], NULL, ml, NULL);
133 for (i = 0; i < (int)nitems(tid); i++) {
134 rc = pthread_join(tid[i], NULL);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/cmd/
H A Dthreadsappend.c89 pthread_t tid; local
122 ret = pthread_create(&tid, NULL, go, (void *)&i);
131 while (pthread_join(tid, NULL) == 0)
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp28 HistoryThread::HistoryThread(lldb_private::Process &process, lldb::tid_t tid, argument
31 : Thread(process, tid, true), m_framelist_mutex(), m_framelist(),
33 m_thread_name(), m_originating_unique_thread_id(tid),
45 LLDB_LOGF(log, "%p HistoryThread::~HistoryThread (tid=0x%" PRIx64 ")",
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTMultiCpuDecoder.h26 /// to contention or race conditions. Finally, it assumes that a tid is not
45 /// \b true if the given \p tid is managed by this decoder, regardless of
47 bool TracesThread(lldb::tid_t tid) const;
50 /// The number of continuous executions found for the given \p tid.
51 size_t GetNumContinuousExecutionsForThread(lldb::tid_t tid) const;
55 size_t GePSBBlocksCountForThread(lldb::tid_t tid) const;
/freebsd-current/contrib/unbound/util/
H A Dlog.c174 unsigned int* tid; local
176 tid = (unsigned int*)ub_thread_key_get(logkey);
177 return (int)(tid?*tid:0);
224 unsigned int* tid = (unsigned int*)ub_thread_key_get(logkey); local
237 (int)getpid(), tid?*tid:0, type, message);
259 ident, tid?*tid:0, type, message);
278 ident, (int)getpid(), tid
[all...]
/freebsd-current/contrib/sendmail/libmilter/
H A Dmonitor.c81 sthread_t tid; local
87 tid = (sthread_t) sthread_get_id();
88 if (pthread_detach(tid) != 0)
105 "WARNING: monitor timeout triggered, now=%ld, end=%ld, tid=%ld, state=0x%x",\
152 sthread_t tid; local
164 r = thread_create(&tid, mi_monitor_thread, (void *)NULL);
/freebsd-current/contrib/netbsd-tests/lib/libc/gen/
H A Dt_nice.c177 pthread_t tid[5]; local
189 for (i = 0; i < __arraycount(tid); i++) {
196 rv = pthread_create(&tid[i], NULL, threadfunc, &pri);
198 rv = pthread_create(&tid[i], NULL, threadfunc, &val);
202 rv = pthread_join(tid[i], NULL);
/freebsd-current/sys/contrib/ck/src/
H A Dck_barrier_dissemination.c45 ck_pr_store_uint(&barrier->tid, 0);
85 state->tid = ck_pr_faa_uint(&barrier->tid, 1);
106 pflag = barrier[state->tid].flags[state->parity][i].pflag;
107 tflag = &barrier[state->tid].flags[state->parity][i].tflag;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_fd.cpp122 d->creation_tid = thr->tid;
160 bool FdLocation(uptr addr, int *fd, Tid *tid, StackID *stack, bool *closed) { argument
169 *tid = d->creation_tid;
183 DPrintf("#%d: FdAcquire(%d) -> %p\n", thr->tid, fd, s);
194 DPrintf("#%d: FdRelease(%d) -> %p\n", thr->tid, fd, s);
203 DPrintf("#%d: FdAccess(%d)\n", thr->tid, fd);
211 DPrintf("#%d: FdClose(%d)\n", thr->tid, fd);
249 d->creation_tid = thr->tid;
254 DPrintf("#%d: FdFileCreate(%d)\n", thr->tid, fd);
261 DPrintf("#%d: FdDup(%d, %d)\n", thr->tid, oldf
[all...]
/freebsd-current/sys/net80211/
H A Dieee80211_input.h203 uint8_t tid; local
224 tid = ieee80211_gettid(wh);
231 if (tid < WME_NUM_TID) {
232 rap = &ni->ni_rx_ampdu[tid];
248 if (SEQNO(ni->ni_rxseqs[tid]) == 4095) {
252 if (SEQ_EQ(rxseq, ni->ni_rxseqs[tid]) &&
270 SEQ_LEQ(rxseq, ni->ni_rxseqs[tid]))
281 ni->ni_rxseqs[tid] = rxseq;
294 "seqno <%u,%u> fragno <%u,%u> tid %u",
295 SEQNO(rxseq), SEQNO(ni->ni_rxseqs[tid]),
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.h35 // so we can find them by tid even if the thread is long dead.
38 explicit AsanThreadContext(int tid) argument
39 : ThreadContextBase(tid), announced(false),
92 u32 tid() { return context_->tid; } function in class:__asan::AsanThread
108 void DeleteFakeStack(int tid) { argument
113 t->Destroy(tid);
204 AsanThreadContext *GetThreadContextByTidLocked(u32 tid);
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Dsta.c300 sta->addr, ba_data->tid);
355 int sta_id, u16 *queueptr, u8 tid)
375 if (tid == IWL_MAX_TID_COUNT)
376 tid = IWL_MGMT_TID;
378 remove_cmd.u.remove.tid = cpu_to_le32(tid);
396 mvm->queue_info[queue].tid_bitmap &= ~BIT(tid);
413 cmd.tid = mvm->queue_info[queue].txq_tid;
425 iwl_mvm_txq_from_tid(sta, tid);
454 int tid; local
354 iwl_mvm_disable_txq(struct iwl_mvm *mvm, struct ieee80211_sta *sta, int sta_id, u16 *queueptr, u8 tid) argument
494 int tid; local
555 u8 sta_id, tid; local
666 iwl_mvm_reconfig_scd(struct iwl_mvm *mvm, int queue, int fifo, int sta_id, int tid, int frame_limit, u16 ssn) 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) argument
848 iwl_mvm_tvqm_enable_txq(struct iwl_mvm *mvm, struct ieee80211_sta *sta, u8 sta_id, u8 tid, unsigned int timeout) argument
912 iwl_mvm_sta_alloc_queue_tvqm(struct iwl_mvm *mvm, struct ieee80211_sta *sta, u8 ac, int tid) argument
946 iwl_mvm_update_txq_mapping(struct iwl_mvm *mvm, struct ieee80211_sta *sta, int queue, u8 sta_id, u8 tid) argument
1031 int tid; local
1067 int tid = -1; local
1154 unsigned int tid; local
1262 int tid; local
1339 iwl_mvm_sta_alloc_queue(struct iwl_mvm *mvm, struct ieee80211_sta *sta, u8 ac, int tid) argument
1519 u8 tid; local
2768 iwl_mvm_fw_baid_op_sta(struct iwl_mvm *mvm, struct ieee80211_sta *sta, bool start, int tid, u16 ssn, u16 buf_size) argument
2817 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) argument
2866 iwl_mvm_fw_baid_op(struct iwl_mvm *mvm, struct ieee80211_sta *sta, bool start, int tid, u16 ssn, u16 buf_size, int baid) argument
2879 iwl_mvm_sta_rx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta, int tid, u16 ssn, bool start, u16 buf_size, u16 timeout) argument
3025 iwl_mvm_sta_tx_agg(struct iwl_mvm *mvm, struct ieee80211_sta *sta, int tid, u8 queue, bool start) argument
3095 iwl_mvm_sta_tx_agg_start(struct iwl_mvm *mvm, struct ieee80211_vif *vif, struct ieee80211_sta *sta, u16 tid, u16 *ssn) argument
3200 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) argument
3353 iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif, struct ieee80211_sta *sta, u16 tid) argument
3426 iwl_mvm_sta_tx_agg_flush(struct iwl_mvm *mvm, struct ieee80211_vif *vif, struct ieee80211_sta *sta, u16 tid) argument
4069 int tid, ret; local
[all...]
/freebsd-current/crypto/openssh/
H A Daudit-bsm.c261 AuditInfoTermID tid = ssh_bsm_tid; local
278 pid, pid, &tid));
353 AuditInfoTermID *tid = &ssh_bsm_tid; local
362 tid->at_port = (dev_t)port;
363 aug_get_machine((char *)host, &(tid->at_addr[0]), &(tid->at_type));
364 snprintf(buf, sizeof(buf), "%08x %08x %08x %08x", tid->at_addr[0],
365 tid->at_addr[1], tid->at_addr[2], tid
[all...]
/freebsd-current/usr.sbin/yppush/
H A Dyppush_main.c73 unsigned long tid; member in struct:jobs
110 yppush_show_status(ypxfrstat status, unsigned long tid) argument
117 if (job->tid == tid)
124 tid);
130 tid);
136 job->tid);
202 to %s (transid = %lu) still pending", jptr->server, jptr->tid);
314 req.transid = job->tid;
367 yp_push(char *server, char *map, unsigned long tid) argument
[all...]

Completed in 375 milliseconds

1234567891011>>