Lines Matching refs:unwindstack

88                                             unwindstack::Maps* maps) {  in get_stack_overflow_cause()
106 unwindstack::MapInfo* map_info = maps->Find(sp); in get_stack_overflow_cause()
118 static void dump_probable_cause(log_t* log, const siginfo_t* si, unwindstack::Maps* maps, in dump_probable_cause()
119 unwindstack::Regs* regs) { in dump_probable_cause()
139 unwindstack::MapInfo* map_info = maps->Find(fault_addr); in dump_probable_cause()
154 const ProcessInfo& process_info, unwindstack::Memory* process_memory) { in dump_signal_info()
209 static void dump_abort_message(log_t* log, unwindstack::Memory* process_memory, uint64_t address) { in dump_abort_message()
238 static void dump_all_maps(log_t* log, unwindstack::Unwinder* unwinder, uint64_t addr) { in dump_all_maps()
241 unwindstack::Maps* maps = unwinder->GetMaps(); in dump_all_maps()
258 std::shared_ptr<unwindstack::Memory>& process_memory = unwinder->GetProcessMemory(); in dump_all_maps()
327 void dump_registers(log_t* log, unwindstack::Regs* regs) { in dump_registers()
366 void dump_memory_and_code(log_t* log, unwindstack::Maps* maps, unwindstack::Memory* memory, in dump_memory_and_code()
367 unwindstack::Regs* regs) { in dump_memory_and_code()
371 unwindstack::MapInfo* map_info = maps->Find(untag_address(reg_value)); in dump_memory_and_code()
380 static bool dump_thread(log_t* log, unwindstack::Unwinder* unwinder, const ThreadInfo& thread_info, in dump_thread()
414 std::unique_ptr<unwindstack::Regs> regs_copy(thread_info.registers->Clone()); in dump_thread()
419 if (unwinder->LastErrorCode() != unwindstack::ERROR_NONE) { in dump_thread()
439 unwindstack::Maps* maps = unwinder->GetMaps(); in dump_thread()
577 std::unique_ptr<unwindstack::Regs> regs( in engrave_tombstone_ucontext()
578 unwindstack::Regs::CreateFromUcontext(unwindstack::Regs::CurrentArch(), ucontext)); in engrave_tombstone_ucontext()
595 unwindstack::UnwinderFromPid unwinder(kMaxFrames, pid, unwindstack::Regs::CurrentArch()); in engrave_tombstone_ucontext()
597 unwindstack::Memory::CreateProcessMemoryCached(getpid()); in engrave_tombstone_ucontext()
609 void engrave_tombstone(unique_fd output_fd, unique_fd proto_fd, unwindstack::Unwinder* unwinder, in engrave_tombstone()