HomeSort by: relevance | last modified time | path
    Searched defs:ThreadContext (Results 1 - 4 of 4) 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...]
  /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.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);

Completed in 12 milliseconds