OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fake_stack_
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/asan/
asan_thread.h
79
if (
fake_stack_
) return;
80
fake_stack_
= (FakeStack*)MmapOrDie(sizeof(FakeStack), "FakeStack");
81
fake_stack_
->Init(stack_size());
84
if (!
fake_stack_
) return;
85
fake_stack_
->Cleanup();
86
UnmapOrDie(
fake_stack_
, sizeof(FakeStack));
88
FakeStack *fake_stack() { return
fake_stack_
; }
105
FakeStack *
fake_stack_
;
member in class:__asan::AsanThread
asan_thread.cc
121
fake_stack_
= 0; // Will be initialized lazily if needed.
Completed in 293 milliseconds