HomeSort by: relevance | last modified time | path
    Searched refs:ThreadContext (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_thread.h 26 class ThreadContext : public ThreadContextBase {
28 explicit ThreadContext(int tid);
56 ThreadContext *CurrentThreadContext();
lsan_thread.cc 29 void *mem = MmapOrDie(sizeof(ThreadContext), "ThreadContext");
30 return new(mem) ThreadContext(tid);
42 ThreadContext::ThreadContext(int tid)
59 void ThreadContext::OnStarted(void *arg) {
70 void ThreadContext::OnFinished() {
98 ThreadContext *CurrentThreadContext() {
103 return (ThreadContext *)thread_registry->GetThreadLocked(GetCurrentThread());
133 ThreadContext *context = static_cast<ThreadContext *>
    [all...]
lsan.h 52 ThreadContext *t;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_thread.cc 23 // ThreadContext implementation.
25 ThreadContext::ThreadContext(int tid)
34 ThreadContext::~ThreadContext() {
38 void ThreadContext::OnDead() {
42 void ThreadContext::OnJoined(void *arg) {
53 void ThreadContext::OnCreated(void *arg) {
69 void ThreadContext::OnReset() {
76 void ThreadContext::OnDetached(void *arg)
    [all...]
tsan_rtl_report.cc 192 void ScopedReportBase::AddThread(const ThreadContext *tctx, bool suppressable) {
218 static ThreadContext *FindThreadByUidLocked(int unique_id) {
220 return static_cast<ThreadContext *>(
225 static ThreadContext *FindThreadByTidLocked(int tid) {
227 return static_cast<ThreadContext*>(
233 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base);
242 ThreadContext *IsThreadStackOrTls(uptr addr, bool *is_stack) {
244 ThreadContext *tctx = static_cast<ThreadContext*>(
    [all...]
tsan_defs.h 169 class ThreadContext;
tsan_rtl.h 427 ThreadContext *tctx;
476 class ThreadContext : public ThreadContextBase {
478 explicit ThreadContext(int tid);
479 ~ThreadContext();
587 void AddThread(const ThreadContext *tctx, bool suppressable = false);
623 ThreadContext *IsThreadStackOrTls(uptr addr, bool *is_stack);
tsan_rtl_mutex.cc 417 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base);
460 ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base);
tsan_debugging.cc 214 ThreadContext *tctx = IsThreadStackOrTls(addr, &is_stack);
tsan_rtl.cc 87 void *mem = internal_alloc(MBlockThreadContex, sizeof(ThreadContext));
88 return new(mem) ThreadContext(tid);

Completed in 16 milliseconds