Lines Matching refs:Unwinder
54 class Unwinder {
56 Unwinder(size_t max_frames, Maps* maps, Regs* regs, std::shared_ptr<Memory> process_memory) in Unwinder() function
62 Unwinder(size_t max_frames, Maps* maps, std::shared_ptr<Memory> process_memory) in Unwinder() function
65 virtual ~Unwinder() = default;
123 Unwinder(size_t max_frames, Maps* maps = nullptr) : max_frames_(max_frames), maps_(maps) {} in max_frames_()
124 Unwinder(size_t max_frames, ArchEnum arch, Maps* maps = nullptr)
126 Unwinder(size_t max_frames, ArchEnum arch, Maps* maps, std::shared_ptr<Memory>& process_memory) in Unwinder() function
153 class UnwinderFromPid : public Unwinder {
156 : Unwinder(max_frames, maps), pid_(pid) {} in Unwinder() function
158 : Unwinder(max_frames, nullptr, process_memory), pid_(pid) {} in UnwinderFromPid()
160 : Unwinder(max_frames, arch, maps), pid_(pid) {} in Unwinder() function
163 : Unwinder(max_frames, arch, maps, process_memory), pid_(pid) {} in UnwinderFromPid()