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

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_thread_registry.cc 125 ThreadContextBase *tctx = QuarantinePop(); local
126 if (tctx) {
127 tid = tctx->tid;
131 tctx = context_factory_(tid);
132 threads_[tid] = tctx;
143 CHECK_NE(tctx, 0);
146 CHECK_EQ(tctx->status, ThreadStatusInvalid);
152 tctx->SetCreated(user_id, total_threads_++, detached,
161 ThreadContextBase *tctx = threads_[tid]; local
162 if (tctx == 0
171 ThreadContextBase *tctx = threads_[tid]; local
182 ThreadContextBase *tctx = threads_[tid]; local
203 ThreadContextBase *tctx = threads_[tid]; local
212 ThreadContextBase *tctx = threads_[tid]; local
224 ThreadContextBase *tctx = threads_[tid]; local
241 ThreadContextBase *tctx = threads_[tid]; local
258 ThreadContextBase *tctx = threads_[tid]; local
272 ThreadContextBase *tctx = threads_[tid]; local
    [all...]
sanitizer_thread_registry.h 96 typedef void (*ThreadCallback)(ThreadContextBase *tctx, void *arg);
101 typedef bool (*FindThreadCallback)(ThreadContextBase *tctx, void *arg);
138 void QuarantinePush(ThreadContextBase *tctx);
  /external/tcpdump/
signature.c 65 MD5_CTX tctx; local
67 MD5_Init(&tctx);
68 MD5_Update(&tctx, key, key_len);
69 MD5_Final(tk, &tctx);
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc 148 ThreadContext *tctx; member in struct:__tsan::ThreadLeak
154 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base); local
155 if (tctx->detached || tctx->status != ThreadStatusFinished)
158 if (leaks[i].tctx->creation_stack_id == tctx->creation_stack_id) {
163 ThreadLeak leak = {tctx, 1};
169 static void ReportIgnoresEnabled(ThreadContext *tctx, IgnoreSet *set) {
170 if (tctx->tid == 0) {
174 " created at:\n", tctx->tid, tctx->name)
    [all...]
tsan_rtl_report.cc 196 void ScopedReport::AddThread(const ThreadContext *tctx, bool suppressable) {
198 if ((u32)rep_->threads[i]->id == tctx->tid)
204 rt->id = tctx->tid;
205 rt->pid = tctx->os_id;
206 rt->running = (tctx->status == ThreadStatusRunning);
207 rt->name = internal_strdup(tctx->name);
208 rt->parent_tid = tctx->parent_tid;
210 rt->stack = SymbolizeStackId(tctx->creation_stack_id);
219 ThreadContext *tctx = static_cast<ThreadContext*>( local
221 if (tctx && tctx->unique_id == (u32)unique_id)
236 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base); local
247 ThreadContext *tctx = static_cast<ThreadContext*>( local
328 ThreadContext *tctx = FindThreadByUidLocked(creat_tid); local
341 ThreadContext *tctx = FindThreadByTidLocked(b->tid); local
395 ThreadContext *tctx = static_cast<ThreadContext*>( local
700 ThreadContext *tctx = static_cast<ThreadContext*>( local
    [all...]
tsan_rtl_mutex.cc 367 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base); local
368 if (tctx->status == ThreadStatusRunning)
369 thr->clock.set(tctx->tid, tctx->thr->fast_state.epoch());
371 thr->clock.set(tctx->tid, tctx->epoch1);
410 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base); local
411 if (tctx->status == ThreadStatusRunning)
412 thr->last_sleep_clock.set(tctx->tid, tctx->thr->fast_state.epoch())
    [all...]
tsan_rtl.h 370 ThreadContext *tctx; member in struct:__tsan::ThreadState
504 void AddThread(const ThreadContext *tctx, bool suppressable = false);
  /external/compiler-rt/lib/asan/
asan_thread.cc 241 AsanThreadContext *tctx = static_cast<AsanThreadContext*>(tctx_base); local
242 AsanThread *t = tctx->thread;
260 AsanThreadContext *tctx = GetThreadContextByTidLocked(0); local
261 if (ThreadStackContainsAddress(tctx, &context)) {
262 SetCurrentThread(tctx->thread);
263 return tctx->thread;
288 AsanThreadContext *tctx = static_cast<AsanThreadContext *>( local
291 return tctx ? tctx->thread : 0;
asan_stats.cc 81 AsanThreadContext *tctx = static_cast<AsanThreadContext*>(tctx_base); local
82 if (AsanThread *t = tctx->thread)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_thread_registry_test.cc 26 template<typename TCTX>
29 return new(tctx_allocator) TCTX(tid);
52 static bool HasName(ThreadContextBase *tctx, void *arg) {
54 return (0 == internal_strcmp(tctx->name, name));
57 static bool HasUid(ThreadContextBase *tctx, void *arg) {
59 return (tctx->user_id == uid);
62 static void MarkUidAsPresent(ThreadContextBase *tctx, void *arg) {
64 arr[tctx->tid] = true;
  /external/compiler-rt/lib/lsan/
lsan_thread.cc 109 static bool FindThreadByUid(ThreadContextBase *tctx, void *arg) {
111 if (tctx->user_id == uid && tctx->status != ThreadStatusInvalid) {
  /frameworks/native/cmds/servicemanager/
service_manager.c 59 static bool check_mac_perms(pid_t spid, const char *tctx, const char *perm, const char *name)
70 int result = selinux_check_access(sctx, tctx, class, perm, (void *) name);
89 char *tctx = NULL; local
100 if (selabel_lookup(sehandle, &tctx, name, 0) != 0) {
105 allowed = check_mac_perms(spid, tctx, perm, name);
106 freecon(tctx);
  /system/core/init/
property_service.c 100 char *tctx = NULL; local
111 if (selabel_lookup(sehandle_prop, &tctx, name, 1) != 0)
114 if (selinux_check_access(sctx, tctx, class, perm, (void*) name) == 0)
117 freecon(tctx);
  /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 1629 SSL_CTX *tctx = s->initial_ctx; local
    [all...]
t1_lib.c 2520 SSL_CTX *tctx = s->initial_ctx; local
    [all...]
s3_srvr.c 3471 SSL_CTX *tctx = s->initial_ctx; local
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
s3_srvr.c 2531 SSL_CTX *tctx = s->initial_ctx; local
    [all...]
t1_lib.c 2353 SSL_CTX *tctx = s->initial_ctx; local
    [all...]
  /system/security/keystore/
keystore.cpp 205 static char *tctx; variable
252 bool allowed = selinux_check_access(sctx, tctx, selinux_class, str_perm,
    [all...]

Completed in 556 milliseconds