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

  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 193 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);
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 261 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;
    [all...]

Completed in 396 milliseconds