OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thread_registry
(Results
1 - 8
of
8
) sorted by null
/external/compiler-rt/lib/lsan/
lsan_thread.cc
27
static ThreadRegistry *
thread_registry
;
member in namespace:__lsan
40
thread_registry
= new(thread_registry_placeholder)
86
return
thread_registry
->CreateThread(user_id, detached, parent_tid,
100
thread_registry
->StartThread(tid, os_id, &args);
104
thread_registry
->FinishThread(GetCurrentThread());
108
if (!
thread_registry
) return nullptr;
112
return (ThreadContext *)
thread_registry
->GetThreadLocked(GetCurrentThread());
124
return
thread_registry
->FindThread(FindThreadByUid, (void*)uid);
129
thread_registry
->JoinThread(tid, /* arg */nullptr);
143
thread_registry
->FindThreadContextByOsIDLocked(os_id))
[
all
...]
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc
202
ThreadRegistryLock l(ctx->
thread_registry
);
204
ctx->
thread_registry
->RunCallbackForEachThreadLocked(
217
ctx->
thread_registry
->GetNumberOfThreads(0, 0, &result);
226
ctx->
thread_registry
->CreateThread(uid, detached, parent_tid, &args);
228
StatSet(thr, StatThreadMaxAlive, ctx->
thread_registry
->GetMaxAliveThreads());
260
ThreadRegistry *tr = ctx->
thread_registry
;
285
ctx->
thread_registry
->FinishThread(thr->tid);
298
int res = ctx->
thread_registry
->FindThread(FindThreadByUid, (void*)uid);
307
ctx->
thread_registry
->JoinThread(tid, thr);
313
ctx->
thread_registry
->DetachThread(tid, thr)
[
all
...]
tsan_rtl_report.cc
143
ctx->
thread_registry
->CheckLocked();
214
ctx->
thread_registry
->CheckLocked();
216
ctx->
thread_registry
->FindThreadContextLocked(
221
ctx->
thread_registry
->CheckLocked();
223
ctx->
thread_registry
->GetThreadLocked(tid));
238
ctx->
thread_registry
->CheckLocked();
240
ctx->
thread_registry
->FindThreadContextLocked(IsInStackOrTls,
645
ThreadRegistryLock l0(ctx->
thread_registry
);
655
ctx->
thread_registry
->GetThreadLocked(s.tid()));
tsan_rtl_mutex.cc
55
ThreadRegistryLock l(ctx->
thread_registry
);
113
ThreadRegistryLock l(ctx->
thread_registry
);
386
ThreadRegistryLock l(ctx->
thread_registry
);
387
ctx->
thread_registry
->RunCallbackForEachThreadLocked(
430
ThreadRegistryLock l(ctx->
thread_registry
);
431
ctx->
thread_registry
->RunCallbackForEachThreadLocked(
475
ThreadRegistryLock l(ctx->
thread_registry
);
tsan_rtl.cc
100
,
thread_registry
(new(thread_registry_placeholder) ThreadRegistry(
139
ctx->
thread_registry
->GetNumberOfThreads(&n_threads, &n_running_threads);
439
ctx->
thread_registry
->Lock();
445
ctx->
thread_registry
->Unlock();
450
ctx->
thread_registry
->Unlock();
453
ctx->
thread_registry
->GetNumberOfThreads(0, 0, &nthread /* alive threads */);
tsan_mman.cc
143
ThreadRegistryLock l(ctx->
thread_registry
);
tsan_rtl.h
521
ThreadRegistry *
thread_registry
;
member in struct:__tsan::Context
tsan_interceptors.cc
[
all
...]
Completed in 279 milliseconds