Searched defs:stack_copy (Results 1 - 3 of 3) sorted by relevance

/external/google-breakpad/src/client/linux/dump_writer_common/
H A Dseccomp_unwinder.cc41 uint8_t* stack_copy) {
54 uint8_t* bp_addr = stack_copy + bp - thread.stack.start_of_memory_range;
117 uint8_t* bp_addr = stack_copy + bp - thread.stack.start_of_memory_range;
39 PopSeccompStackFrame(RawContextCPU* cpu, const MDRawThread& thread, uint8_t* stack_copy) argument
/external/google-breakpad/src/client/linux/microdump_writer/
H A Dmicrodump_writer.cc193 uint8_t** stack_copy) {
194 *stack_copy = NULL;
217 *stack_copy = reinterpret_cast<uint8_t*>(Alloc(stack_len));
218 dumper_->CopyFromProcess(*stack_copy, thread_id, stack, stack_len);
228 LogAppend(*stack_copy + stack_off,
251 uint8_t* stack_copy; local
253 if (!DumpThreadStack(thread.thread_id, stack_ptr, -1, &stack_copy))
263 if (stack_copy)
264 SeccompUnwinder::PopSeccompStackFrame(&cpu, thread, stack_copy);
190 DumpThreadStack(uint32_t thread_id, uintptr_t stack_pointer, int max_stack_len, uint8_t** stack_copy) argument
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dminidump_writer.cc261 int max_stack_len, uint8_t** stack_copy) {
262 *stack_copy = NULL;
273 *stack_copy = reinterpret_cast<uint8_t*>(Alloc(stack_len));
274 dumper_->CopyFromProcess(*stack_copy, thread->thread_id, stack,
276 memory.Copy(*stack_copy, stack_len);
329 uint8_t* stack_copy; local
331 if (!FillThreadStack(&thread, stack_ptr, -1, &stack_copy))
386 if (stack_copy)
387 SeccompUnwinder::PopSeccompStackFrame(cpu.get(), thread, stack_copy);
395 uint8_t* stack_copy;
260 FillThreadStack(MDRawThread* thread, uintptr_t stack_pointer, int max_stack_len, uint8_t** stack_copy) argument
[all...]

Completed in 118 milliseconds