Searched defs:tctx (Results 1 - 8 of 8) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_mutex.cc260 ThreadContext *tctx = ctx->threads[i]; local
261 if (tctx == 0)
263 if (tctx->status == ThreadStatusRunning)
264 thr->last_sleep_clock.set(i, tctx->thr->fast_state.epoch());
266 thr->last_sleep_clock.set(i, tctx->epoch1);
H A Dtsan_rtl_thread.cc29 static void MaybeReportThreadLeak(ThreadContext *tctx) { argument
30 if (tctx->detached)
32 if (tctx->status != ThreadStatusCreated
33 && tctx->status != ThreadStatusRunning
34 && tctx->status != ThreadStatusFinished)
37 rep.AddThread(tctx);
48 ThreadContext *tctx = ctx->threads[i]; local
49 if (tctx == 0)
51 MaybeReportThreadLeak(tctx);
55 static void ThreadDead(ThreadState *thr, ThreadContext *tctx) { argument
81 ThreadContext *tctx = 0; local
168 ThreadContext *tctx = CTX()->threads[tid]; local
213 ThreadContext *tctx = ctx->threads[thr->tid]; local
256 ThreadContext *tctx = ctx->threads[tid]; local
275 ThreadContext *tctx = ctx->threads[tid]; local
293 ThreadContext *tctx = ctx->threads[tid]; local
[all...]
H A Dtsan_rtl.cc97 ThreadContext *tctx = ctx->threads[i]; local
98 if (tctx == 0)
102 if (tctx->status != ThreadStatusRunning)
H A Dtsan_rtl_report.cc153 void ScopedReport::AddThread(const ThreadContext *tctx) { argument
155 if (rep_->threads[i]->id == tctx->tid)
161 rt->id = tctx->tid;
162 rt->running = (tctx->status == ThreadStatusRunning);
163 rt->stack = SymbolizeStack(tctx->creation_stack);
170 ThreadContext *tctx = CTX()->threads[i]; local
171 if (tctx && tctx->unique_id == unique_id) {
172 return tctx;
193 ThreadContext *tctx local
252 ThreadContext *tctx = CTX()->threads[tid]; local
420 ThreadContext *tctx = ctx->threads[s.tid()]; local
[all...]
/external/openssl/apps/
H A Ddgst.c493 EVP_MD_CTX *tctx; local
494 BIO_get_md_ctx(bmd, &tctx);
495 md = EVP_MD_CTX_md(tctx);
/external/openssl/ssl/
H A Dd1_srvr.c1611 SSL_CTX *tctx = s->initial_ctx; local
1646 if (tctx->tlsext_ticket_key_cb)
1648 if (tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
1659 tctx->tlsext_tick_aes_key, iv);
1660 HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
1662 memcpy(key_name, tctx->tlsext_tick_key_name, 16);
H A Ds3_srvr.c3371 SSL_CTX *tctx = s->initial_ctx; local
3431 if (tctx->tlsext_ticket_key_cb)
3433 if (tctx->tlsext_ticket_key_cb(s, key_name, iv, &ctx,
3444 tctx->tlsext_tick_aes_key, iv);
3445 HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
3447 memcpy(key_name, tctx->tlsext_tick_key_name, 16);
H A Dt1_lib.c2149 SSL_CTX *tctx = s->initial_ctx; local
2156 if (tctx->tlsext_ticket_key_cb)
2159 int rv = tctx->tlsext_ticket_key_cb(s, nctick, nctick + 16,
2171 if (memcmp(etick, tctx->tlsext_tick_key_name, 16))
2173 HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
2176 tctx->tlsext_tick_aes_key, etick + 16);

Completed in 138 milliseconds