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

  /external/compiler-rt/lib/asan/
asan_thread.h 81 if (!fake_stack_) return;
82 FakeStack *t = fake_stack_;
83 fake_stack_ = 0;
89 return (reinterpret_cast<uptr>(fake_stack_) > 1);
97 return fake_stack_;
127 FakeStack *fake_stack_; member in class:__asan::AsanThread
asan_thread.cc 121 // fake_stack_ has 3 states:
128 reinterpret_cast<atomic_uintptr_t *>(&fake_stack_), &old_val, 1UL,
136 fake_stack_ = FakeStack::Create(stack_size_log);
137 SetTLSFakeStack(fake_stack_);
138 return fake_stack_;
144 fake_stack_ = 0; // Will be initialized lazily if needed.

Completed in 106 milliseconds