HomeSort by relevance Sort by last modified time
    Searched defs:tctx (Results 1 - 9 of 9) sorted by null

  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_mutex.cc 260 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);
tsan_rtl_thread.cc 29 static void MaybeReportThreadLeak(ThreadContext *tctx) {
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) {
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...]
tsan_rtl.cc 97 ThreadContext *tctx = ctx->threads[i]; local
98 if (tctx == 0)
102 if (tctx->status != ThreadStatusRunning)
tsan_rtl_report.cc 153 void ScopedReport::AddThread(const ThreadContext *tctx) {
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 = FindThread(b->alloc_tid) local
252 ThreadContext *tctx = CTX()->threads[tid]; local
420 ThreadContext *tctx = ctx->threads[s.tid()]; local
    [all...]
  /external/openssl/apps/
dgst.c 493 EVP_MD_CTX *tctx; local
494 BIO_get_md_ctx(bmd, &tctx);
495 md = EVP_MD_CTX_md(tctx);
  /external/openssl/ssl/
d1_srvr.c 1611 SSL_CTX *tctx = s->initial_ctx; local
    [all...]
t1_lib.c 2149 SSL_CTX *tctx = s->initial_ctx; local
    [all...]
s3_srvr.c 3371 SSL_CTX *tctx = s->initial_ctx; local
    [all...]
  /system/core/init/
property_service.c 208 char *tctx = NULL; local
219 if (selabel_lookup(sehandle_prop, &tctx, name, 1) != 0)
222 if (selinux_check_access(sctx, tctx, class, perm, name) == 0)
225 freecon(tctx);

Completed in 311 milliseconds