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 86 if (!fake_stack_) return;
87 FakeStack *t = fake_stack_;
88 fake_stack_ = nullptr;
94 return (reinterpret_cast<uptr>(fake_stack_) > 1);
102 return fake_stack_;
136 FakeStack *fake_stack_; member in class:__asan::AsanThread
asan_thread.cc 130 // fake_stack_ has 3 states:
137 reinterpret_cast<atomic_uintptr_t *>(&fake_stack_), &old_val, 1UL,
145 fake_stack_ = FakeStack::Create(stack_size_log);
146 SetTLSFakeStack(fake_stack_);
147 return fake_stack_;
153 fake_stack_ = nullptr; // Will be initialized lazily if needed.

Completed in 63 milliseconds