Home
last modified time | relevance | path

Searched refs:fake_stack_ (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/asan/
Dasan_thread.h86 if (!fake_stack_) return; in DeleteFakeStack()
87 FakeStack *t = fake_stack_; in DeleteFakeStack()
88 fake_stack_ = nullptr; in DeleteFakeStack()
94 return (reinterpret_cast<uptr>(fake_stack_) > 1); in has_fake_stack()
102 return fake_stack_; in fake_stack()
136 FakeStack *fake_stack_; variable
Dasan_thread.cc137 reinterpret_cast<atomic_uintptr_t *>(&fake_stack_), &old_val, 1UL, in AsyncSignalSafeLazyInitFakeStack()
145 fake_stack_ = FakeStack::Create(stack_size_log); in AsyncSignalSafeLazyInitFakeStack()
146 SetTLSFakeStack(fake_stack_); in AsyncSignalSafeLazyInitFakeStack()
147 return fake_stack_; in AsyncSignalSafeLazyInitFakeStack()
153 fake_stack_ = nullptr; // Will be initialized lazily if needed. in Init()