HomeSort by: relevance | last modified time | path
    Searched defs:tctx (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/netinet/
sctp_hashdriver.c 86 md5_ctxt tctx; local in function:sctp_hash_digest
87 MD5Init(&tctx);
88 MD5Update(&tctx, key, key_len);
89 MD5Final(tk, &tctx);
93 SHA1_CTX tctx;
94 SHA1Init(&tctx);
95 SHA1Update(&tctx, key, key_len);
96 SHA1Final(tk, &tctx);
173 MD5Context tctx; local in function:sctp_hash_digest_m
174 MD5Init(&tctx);
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_stats.cc 77 AsanThreadContext *tctx = static_cast<AsanThreadContext*>(tctx_base); local in function:__asan::MergeThreadStats
78 if (AsanThread *t = tctx->thread)
asan_thread.cc 395 AsanThreadContext *tctx = static_cast<AsanThreadContext*>(tctx_base); local in function:__asan::ThreadStackContainsAddress
396 AsanThread *t = tctx->thread;
417 AsanThreadContext *tctx = GetThreadContextByTidLocked(0); local in function:__asan::GetCurrentThread
418 if (tctx && ThreadStackContainsAddress(tctx, &context)) {
419 SetCurrentThread(tctx->thread);
420 return tctx->thread;
445 AsanThreadContext *tctx = static_cast<AsanThreadContext *>( local in function:__asan::FindThreadByStackAddress
448 return tctx ? tctx->thread : nullptr
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_thread_registry.cc 140 ThreadContextBase *tctx = QuarantinePop(); local in function:__sanitizer::ThreadRegistry::CreateThread
141 if (tctx) {
142 tid = tctx->tid;
146 tctx = context_factory_(tid);
147 threads_[tid] = tctx;
158 CHECK_NE(tctx, 0);
161 CHECK_EQ(tctx->status, ThreadStatusInvalid);
167 tctx->SetCreated(user_id, total_threads_++, detached,
176 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::RunCallbackForEachThreadLocked
177 if (tctx == 0
186 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::FindThread
197 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::FindThreadContextLocked
218 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::SetThreadName
228 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::SetThreadNameByUserId
240 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::DetachThread
261 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::JoinThread
287 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::FinishThread
311 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::StartThread
336 ThreadContextBase *tctx = invalid_threads_.front(); local in function:__sanitizer::ThreadRegistry::QuarantinePop
344 ThreadContextBase *tctx = threads_[tid]; local in function:__sanitizer::ThreadRegistry::SetThreadUserId
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_debugging.cc 214 ThreadContext *tctx = IsThreadStackOrTls(addr, &is_stack); local in function:__tsan_locate_address
216 if (tctx) {
250 ThreadContextBase *tctx = ctx->thread_registry->GetThreadLocked(b->tid); local in function:__tsan_get_alloc_stack
251 *os_id = tctx->os_id;
tsan_rtl_mutex.cc 417 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base); local in function:__tsan::UpdateClockCallback
418 u64 epoch = tctx->epoch1;
419 if (tctx->status == ThreadStatusRunning)
420 epoch = tctx->thr->fast_state.epoch();
421 thr->clock.set(&thr->proc()->clock_cache, tctx->tid, epoch);
460 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base); local in function:__tsan::UpdateSleepClockCallback
461 u64 epoch = tctx->epoch1;
462 if (tctx->status == ThreadStatusRunning)
463 epoch = tctx->thr->fast_state.epoch();
464 thr->last_sleep_clock.set(&thr->proc()->clock_cache, tctx->tid, epoch)
    [all...]
tsan_rtl_thread.cc 158 ThreadContext *tctx; member in struct:__tsan::ThreadLeak
164 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base); local in function:__tsan::MaybeReportThreadLeak
165 if (tctx->detached || tctx->status != ThreadStatusFinished)
168 if (leaks[i].tctx->creation_stack_id == tctx->creation_stack_id) {
173 ThreadLeak leak = {tctx, 1};
179 static void ReportIgnoresEnabled(ThreadContext *tctx, IgnoreSet *set) {
180 if (tctx->tid == 0) {
184 " created at:\n", tctx->tid, tctx->name)
    [all...]
tsan_rtl_report.cc 192 void ScopedReportBase::AddThread(const ThreadContext *tctx, bool suppressable) {
194 if ((u32)rep_->threads[i]->id == tctx->tid)
200 rt->id = tctx->tid;
201 rt->os_id = tctx->os_id;
202 rt->running = (tctx->status == ThreadStatusRunning);
203 rt->name = internal_strdup(tctx->name);
204 rt->parent_tid = tctx->parent_tid;
205 rt->workerthread = tctx->workerthread;
207 rt->stack = SymbolizeStackId(tctx->creation_stack_id);
213 static bool FindThreadByUidLockedCallback(ThreadContextBase *tctx, void *arg)
233 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base); local in function:__tsan::IsInStackOrTls
244 ThreadContext *tctx = static_cast<ThreadContext*>( local in function:__tsan::IsThreadStackOrTls
258 if (const ThreadContext *tctx = FindThreadByUidLocked(unique_tid)) local in function:__tsan::ScopedReportBase::AddThread
323 ThreadContext *tctx = FindThreadByUidLocked(creat_tid); local in function:__tsan::ScopedReportBase::AddLocation
336 ThreadContext *tctx = FindThreadByTidLocked(b->tid); local in function:__tsan::ScopedReportBase::AddLocation
349 if (ThreadContext *tctx = IsThreadStackOrTls(addr, &is_stack)) { local in function:__tsan::ScopedReportBase::AddLocation
694 ThreadContext *tctx = static_cast<ThreadContext*>( local in function:__tsan::ReportRace
    [all...]
tsan_rtl.h 427 ThreadContext *tctx; member in struct:__tsan::ThreadState
587 void AddThread(const ThreadContext *tctx, bool suppressable = false);
  /src/lib/libcrypt/
hmac.c 85 HASH_CTX tctx; local in function:HMAC_FUNC
87 HASH_Init(&tctx);
88 HASH_Update(&tctx, key, key_len);
89 HASH_Final(tk, &tctx);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_uvd.c 496 struct ttm_operation_ctx tctx = { false, false }; local in function:amdgpu_uvd_cs_pass1
519 r = ttm_bo_validate(&bo->tbo, &bo->placement, &tctx);
  /src/sys/dev/i2o/
iop.c 1616 u_int off, ictx, tctx, status, size; local in function:iop_handle_reply
1661 tctx = iop_inl_msg(sc, fn->lowmfa + 12);
1666 tctx = le32toh(rb->msgtctx);
1676 im = sc->sc_ims + (tctx & IOP_TCTX_MASK);
1677 if ((tctx & IOP_TCTX_MASK) > sc->sc_maxib ||
1679 tctx != im->im_tctx) {
1680 aprint_error_dev(sc->sc_dev, "WARNING: bad tctx returned (0x%08x, %p)\n", tctx, im);
1682 aprint_error_dev(sc->sc_dev, "flags=0x%08x tctx=0x%08x\n",
2276 printf("%s: detail=0x%04x ictx=0x%08x tctx=0x%08x\n"
    [all...]

Completed in 20 milliseconds