OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fake_stack
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc
24
uptr
fake_stack
[10];
member in class:__sanitizer::FastUnwindTest
34
for (uptr i = 0; i+1 < ARRAY_SIZE(
fake_stack
); i += 2) {
35
fake_stack
[i] = (uptr)&
fake_stack
[i+2]; // fp
36
fake_stack
[i+1] = i+1; // retaddr
39
fake_stack
[RoundDownTo(ARRAY_SIZE(
fake_stack
) - 1, 2)] = 0;
42
fake_top = (uptr)&
fake_stack
[ARRAY_SIZE(
fake_stack
) + 2];
44
fake_bottom = (uptr)&
fake_stack
[-1]
[
all
...]
/external/compiler-rt/lib/asan/
asan_thread.cc
69
fake_stack
().Cleanup();
125
bottom =
fake_stack
().AddrIsInFakeStack(addr);
asan_thread_registry.cc
164
if (!t || !(t->
fake_stack
().StackSize())) continue;
165
if (t->
fake_stack
().AddrIsInFakeStack(addr) || t->AddrIsInStack(addr)) {
asan_thread.h
94
FakeStack &
fake_stack
() { return fake_stack_; }
function in class:__asan::AsanThread
asan_fake_stack.cc
171
uptr ptr = t->
fake_stack
().AllocateStack(size, real_stack);
asan_report.cc
451
curr_thread->
fake_stack
().StopUsingFakeStack();
Completed in 37 milliseconds