Searched refs:stack_ptr (Results 1 – 9 of 9) sorted by relevance
/external/google-breakpad/src/processor/ |
D | exploitability_win.cc | 106 uint64_t stack_ptr = 0; in CheckPlatformExploitability() local 115 if (!context->GetStackPointer(&stack_ptr)) { in CheckPlatformExploitability() 120 if (instruction_ptr <= (stack_ptr + kProbableStackOffset) && in CheckPlatformExploitability() 121 instruction_ptr >= (stack_ptr - kProbableStackOffset)) in CheckPlatformExploitability()
|
D | exploitability_linux.cc | 133 uint64_t stack_ptr = 0; in CheckPlatformExploitability() local 148 if (!context->GetStackPointer(&stack_ptr)) { in CheckPlatformExploitability() 156 this->StackPointerOffStack(stack_ptr) || in CheckPlatformExploitability() 536 bool ExploitabilityLinux::StackPointerOffStack(uint64_t stack_ptr) { in StackPointerOffStack() argument 543 linux_maps_list->GetLinuxMapsForAddress(stack_ptr); in StackPointerOffStack()
|
D | exploitability_linux.h | 116 bool StackPointerOffStack(uint64_t stack_ptr);
|
/external/compiler-rt/lib/safestack/ |
D | safestack.cc | 105 void *stack_ptr = (char *)start + size; in unsafe_stack_setup() local 106 CHECK_EQ((((size_t)stack_ptr) & (kStackAlign - 1)), 0); in unsafe_stack_setup() 108 __safestack_unsafe_stack_ptr = stack_ptr; in unsafe_stack_setup()
|
/external/linux-kselftest/tools/testing/selftests/nsfs/ |
D | pidns.c | 30 char stack_ptr[0]; member 50 pid = clone(child, ca.stack_ptr, CLONE_NEWUSER | CLONE_NEWPID | SIGCHLD, NULL); in main()
|
/external/pigweed/pw_thread_threadx/ |
D | docs.rst | 240 void* stack_ptr = 0; 241 asm volatile("mrs %0, psp\n" : "=r"(stack_ptr)); 247 pw::thread::threadx::SnapshotThread(my_thread, stack_ptr,
|
/external/pigweed/pw_thread_embos/ |
D | docs.rst | 199 void* stack_ptr = 0; 200 asm volatile("mrs %0, psp\n" : "=r"(stack_ptr)); 206 pw::thread::embos::SnapshotThread(my_thread, stack_ptr,
|
/external/pigweed/pw_thread_freertos/ |
D | docs.rst | 243 void* stack_ptr = 0; 244 asm volatile("mrs %0, psp\n" : "=r"(stack_ptr)); 250 pw::thread::threadx::SnapshotThread(my_thread, thread_state, stack_ptr,
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
D | minidump_writer.cc | 418 const uintptr_t stack_ptr = UContextReader::GetStackPointer(ucontext_); in WriteThreadListStream() local 419 if (!FillThreadStack(&thread, stack_ptr, in WriteThreadListStream()
|