HomeSort by relevance Sort by last modified time
    Searched defs:fake_stack (Results 1 - 3 of 3) sorted by null

  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc 24 uptr fake_stack[10]; member in class:__sanitizer::FastUnwindTest
38 for (uptr i = 0; i+1 < ARRAY_SIZE(fake_stack); i += 2) {
39 fake_stack[i] = (uptr)&fake_stack[i+2]; // fp
40 fake_stack[i+1] = PC(i + 1); // retaddr
43 fake_stack[RoundDownTo(ARRAY_SIZE(fake_stack) - 1, 2)] = 0;
46 fake_top = (uptr)&fake_stack[ARRAY_SIZE(fake_stack) + 2];
48 fake_bottom = (uptr)&fake_stack[-1]
    [all...]
  /art/runtime/
exception_test.cc 148 std::vector<uintptr_t> fake_stack; local
158 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_g_));
159 fake_stack.push_back(0);
160 fake_stack.push_back(0);
161 fake_stack.push_back(method_f_->ToNativePc(dex_pc)); // return pc
164 fake_stack.push_back(reinterpret_cast<uintptr_t>(method_f_));
165 fake_stack.push_back(0);
166 fake_stack.push_back(0);
167 fake_stack.push_back(0xEBAD6070); // return pc
170 fake_stack.push_back(0)
    [all...]
  /external/compiler-rt/lib/asan/
asan_thread.h 88 FakeStack *fake_stack() { return fake_stack_; } function in class:__asan::AsanThread

Completed in 1416 milliseconds