Home
last modified time | relevance | path

Searched refs:stack_ptr (Results 1 – 7 of 7) sorted by relevance

/external/google-breakpad/src/processor/
Dexploitability_win.cc106 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()
Dexploitability_linux.cc133 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()
Dexploitability_linux.h116 bool StackPointerOffStack(uint64_t stack_ptr);
/external/compiler-rt/lib/safestack/
Dsafestack.cc105 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/
Dpidns.c30 char stack_ptr[0]; member
50 pid = clone(child, ca.stack_ptr, CLONE_NEWUSER | CLONE_NEWPID | SIGCHLD, NULL); in main()
/external/llvm-project/compiler-rt/lib/safestack/
Dsafestack.cpp103 void *stack_ptr = (char *)start + size; in unsafe_stack_setup() local
104 SFS_CHECK((((size_t)stack_ptr) & (kStackAlign - 1)) == 0); in unsafe_stack_setup()
106 __safestack_unsafe_stack_ptr = stack_ptr; in unsafe_stack_setup()
/external/google-breakpad/src/client/linux/minidump_writer/
Dminidump_writer.cc418 const uintptr_t stack_ptr = UContextReader::GetStackPointer(ucontext_); in WriteThreadListStream() local
419 if (!FillThreadStack(&thread, stack_ptr, in WriteThreadListStream()