/src/lib/libbluetooth/ |
sdp-int.h | 33 uint16_t tid; /* current session transaction ID */ member in struct:sdp_session
|
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan.cc | 100 u32 tid = ThreadCreate(0, 0, true); local in function:__lsan_init 101 CHECK_EQ(tid, 0); 102 ThreadStart(tid, GetTid()); 103 SetCurrentThread(tid);
|
lsan_mac.cc | 72 u32 tid = ThreadCreate(parent_tid, 0, true); local in function:__lsan::lsan_register_worker_thread 73 ThreadStart(tid, GetTid()); 74 SetCurrentThread(tid);
|
lsan_interceptors.cc | 346 atomic_uintptr_t tid; member in struct:ThreadParam 362 int tid = 0; local in function:__lsan_thread_start_func 363 while ((tid = atomic_load(&p->tid, memory_order_acquire)) == 0) 365 SetCurrentThread(tid); 366 ThreadStart(tid, GetTid()); 367 atomic_store(&p->tid, 0, memory_order_release); 386 atomic_store(&p.tid, 0, memory_order_relaxed); 397 int tid = ThreadCreate(GetCurrentThread(), *(uptr *)th, local in function:INTERCEPTOR 399 CHECK_NE(tid, 0) 411 int tid = ThreadTid((uptr)th); local in function:INTERCEPTOR [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_posix_test.cc | 45 pthread_t tid; local in function:__sanitizer::SpawnThread 46 ASSERT_EQ(0, pthread_create(&tid, 0, &thread_func, 49 ASSERT_EQ(0, pthread_join(tid, &retval));
|
standalone_malloc_test.cc | 20 size_t tid = reinterpret_cast<size_t>(t); local in function:MallocThread 24 if ((i % (kNumIters / 4)) == 0 && tid == 0) 25 fprintf(stderr, " T[%ld] iter %ld\n", tid, i); 50 if (tid == 0) 52 tid, total_malloced >> 20, (total_malloced - total_freed) >> 20,
|
/src/tests/lib/libc/gen/ |
t_nice.c | 163 pthread_t tid[5]; local in function:ATF_TC_BODY 171 for (i = 0; i < __arraycount(tid); i++) { 176 rv = pthread_create(&tid[i], NULL, threadfunc, &val); 179 rv = pthread_join(tid[i], NULL);
|
/src/tests/lib/libc/sys/ |
t_getpid.c | 109 pthread_t tid; local in function:ATF_TC_BODY 116 rv = pthread_create(&tid, NULL, threadfunc, &tpid); 119 rv = pthread_join(tid, NULL);
|
/src/sys/compat/linux/common/ |
linux_sigevent.h | 52 int tid; member in union:linux_sigevent::__anon1630fdef010a
|
/src/sys/compat/linux32/common/ |
linux32_sigevent.h | 54 int tid; member in union:linux32_sigevent::__anon4166d359010a
|
/src/sys/net/npf/ |
npf_bpf.c | 178 const uint32_t tid = A & (SRC_FLAG_BIT - 1); local in function:npf_cop_table 185 t = npf_tableset_getbyid(tblset, tid);
|
npf_ifaddr.c | 57 unsigned tid; local in function:lookup_ifnet_table 73 tid = npf_table_getid(t); 76 t = npf_table_create(tname, tid, NPF_TABLE_IFADDR, NULL, 0);
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_fuchsia.cc | 99 u32 tid = local in function:__asan::CreateAsanThread 101 asanThreadRegistry().SetThreadName(tid, name); 169 asanThreadRegistry().FinishThread(thread->tid()); 182 asanThreadRegistry().StartThread(thread->tid(), os_id, /*workerthread*/ false,
|
asan_thread.h | 38 // so we can find them by tid even if the thread is long dead. 41 explicit AsanThreadContext(int tid) 42 : ThreadContextBase(tid), announced(false), 82 u32 tid() { return context_->tid; } function in class:__asan::AsanThread 98 void DeleteFakeStack(int tid) { 103 t->Destroy(tid); 187 AsanThreadContext *GetThreadContextByTidLocked(u32 tid);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_stoptheworld_mac.cc | 27 tid_t tid; member in struct:__sanitizer::__anon22ed31e80108 113 return threads_[index].tid;
|
sanitizer_thread_registry.cc | 19 ThreadContextBase::ThreadContextBase(u32 tid) 20 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0), 88 // Parent tid makes no sense for the main thread. 89 if (tid != 0) 139 u32 tid = kUnknownTid; local in function:__sanitizer::ThreadRegistry::CreateThread 142 tid = tctx->tid; 144 // Allocate new thread context and tid. 145 tid = n_contexts_++ 175 for (u32 tid = 0; tid < n_contexts_; tid++) { local in function:__sanitizer::ThreadRegistry::RunCallbackForEachThreadLocked 185 for (u32 tid = 0; tid < n_contexts_; tid++) { local in function:__sanitizer::ThreadRegistry::FindThread 196 for (u32 tid = 0; tid < n_contexts_; tid++) { local in function:__sanitizer::ThreadRegistry::FindThreadContextLocked 227 for (u32 tid = 0; tid < n_contexts_; tid++) { local in function:__sanitizer::ThreadRegistry::SetThreadNameByUserId [all...] |
sanitizer_thread_registry.h | 36 explicit ThreadContextBase(u32 tid); 39 const u32 tid; // Thread ID. Main thread should have tid = 0. member in class:__sanitizer::ThreadContextBase 41 u32 reuse_count; // Number of times this tid was reused. 80 typedef ThreadContextBase* (*ThreadContextFactory)(u32 tid); 97 ThreadContextBase *GetThreadLocked(u32 tid) { 98 DCHECK_LT(tid, n_contexts_); 99 return threads_[tid]; 119 void SetThreadName(u32 tid, const char *name); 121 void DetachThread(u32 tid, void *arg) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_clock.h | 33 u64 get(unsigned tid) const; 34 u64 get_clean(unsigned tid) const; 70 u64 tid : 64 - kClkBits; // kInvalidId if not active member in struct:__tsan::SyncClock::Dirty 121 ClockElem &elem(unsigned tid) const; 129 explicit ThreadClock(unsigned tid, unsigned reused = 0); 131 u64 get(unsigned tid) const; 132 void set(ClockCache *c, unsigned tid, u64 v); 171 ALWAYS_INLINE u64 ThreadClock::get(unsigned tid) const { 172 DCHECK_LT(tid, kMaxTidInClock); 173 return clk_[tid]; [all...] |
/src/tests/lib/libpthread/ |
t_cond.c | 345 pthread_t tid[64]; local in function:ATF_TC_BODY 348 for (i = 0; i < __arraycount(tid); i++) { 350 PTHREAD_REQUIRE(pthread_create(&tid[i], NULL, 354 for (i = 0; i < __arraycount(tid); i++) { 356 PTHREAD_REQUIRE(pthread_join(tid[i], NULL));
|
/src/usr.sbin/ypserv/ypserv/ |
ypserv_proc.c | 238 char tid[11], prog[11], port[11]; local in function:ypproc_xfr_2_svc 245 "xfr_2: request from %.500s, domain %s, tid %d, prog %d, port %d, " 262 (void)snprintf(tid, sizeof(tid), "%d", ypx->transid); 270 "-C", tid, prog, hbuf, port, ypx->map_parms.map, NULL);
|
/src/sys/arch/vax/vax/ |
clock.c | 241 unsigned tid = tvp->tv_sec, bastid; local in function:generic_settime 243 bastid = tid - yeartonum(numtoyear(tid));
|
/src/sys/dev/i2o/ |
i2odpt.h | 68 u_int32_t tid; /* bit 16: interpret; bit 17: phys */ member in struct:i2o_dpt_scsi_scb_exec
|
iopsp.c | 225 u_int tid, nent, i, targ, lun, size, rv, bptid; local in function:iopsp_reconfig 242 * Allocate memory for the target/LUN -> TID map. Use zero to 243 * denote absent targets (zero is the TID of the I2O executive, 272 tid = le16toh(le->localtid) & 4095; 274 rv = iop_field_get_all(iop, tid, I2O_PARAM_SCSI_DEVICE_INFO, 283 aprint_error_dev(sc->sc_dev, "target %d,%d (tid %d): " 284 "bad target/LUN\n", targ, lun, tid); 303 aprint_verbose_dev(sc->sc_dev, "target %d (tid %d): %d-bit, ", 304 targ, tid, it->it_width); 318 aprint_verbose_dev(sc->sc_dev, "target %d,%d (tid %d): 391 int error, flags, tid; local in function:iopsp_scsipi_request [all...] |
/src/sys/dev/raidframe/ |
rf_stripelocks.c | 260 int tid = 0; local in function:rf_AcquireStripeLock 270 Dprintf1("[%d] Lock acquisition suppressed (stripeID == -1)\n", tid); 273 tid, (unsigned long) lockTable, stripeID, lockReqDesc->type, lockReqDesc->start, 275 Dprintf3("[%d] lock %ld hashval %d\n", tid, stripeID, hashval); 303 tid, stripeID, lockReqDesc->type, lockReqDesc->start, lockReqDesc->stop, lockReqDesc->start2, lockReqDesc->stop2); 322 tid, stripeID, lockReqDesc->type, lockReqDesc->start, lockReqDesc->stop, lockReqDesc->start2, lockReqDesc->stop2); 350 tid, stripeID, lockReqDesc->type, lockReqDesc->start, lockReqDesc->stop, 359 tid, stripeID, lockReqDesc->type, lockReqDesc->start, lockReqDesc->stop, 361 Dprintf3("[%d] lock %ld retcode=%d\n", tid, stripeID, retcode); 382 int tid = 0 local in function:rf_ReleaseStripeLock [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/safestack/ |
safestack.cc | 157 tid_t tid; member in struct:thread_stack_ll 180 tid_t tid = GetTid(); local in function:thread_cleanup_handler 188 (internal_iserror(TgKill(stack->pid, stack->tid, 0), &error) && 202 cur_stack->tid = tid;
|