Home
last modified time | relevance | path

Searched refs:stack_copy (Results 1 – 4 of 4) sorted by relevance

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