Searched refs:max_frames (Results 1 – 6 of 6) sorted by relevance
/system/core/libunwindstack/include/unwindstack/ |
D | Unwinder.h | 66 Unwinder(size_t max_frames, Maps* maps, Regs* regs, std::shared_ptr<Memory> process_memory) in Unwinder() argument 67 : max_frames_(max_frames), maps_(maps), regs_(regs), process_memory_(process_memory) { in Unwinder() 68 frames_.reserve(max_frames); in Unwinder() 70 Unwinder(size_t max_frames, Maps* maps, std::shared_ptr<Memory> process_memory) in Unwinder() argument 71 : max_frames_(max_frames), maps_(maps), process_memory_(process_memory) { in Unwinder() 72 frames_.reserve(max_frames); in Unwinder() 120 Unwinder(size_t max_frames) : max_frames_(max_frames) { frames_.reserve(max_frames); } in Unwinder() argument 145 UnwinderFromPid(size_t max_frames, pid_t pid) : Unwinder(max_frames), pid_(pid) {} in UnwinderFromPid() argument
|
D | LocalUnwinder.h | 67 bool Unwind(std::vector<LocalFrameData>* frame_info, size_t max_frames);
|
/system/core/libmemunreachable/include/memunreachable/ |
D | memunreachable.h | 50 static const size_t max_frames = 16; member 51 uintptr_t frames[max_frames];
|
/system/core/libunwindstack/ |
D | LocalUnwinder.cpp | 88 bool LocalUnwinder::Unwind(std::vector<LocalFrameData>* frame_info, size_t max_frames) { in Unwind() argument 136 if (finished || frame_info->size() == max_frames || in Unwind()
|
/system/core/libmemunreachable/ |
D | MemUnreachable.cpp | 174 … reinterpret_cast<void*>(it.range.begin), leak->backtrace.frames, leak->backtrace.max_frames); in GetUnreachableMemory()
|
/system/core/libunwindstack/tests/ |
D | UnwinderTest.cpp | 441 TEST_F(UnwinderTest, max_frames) { in TEST_F() argument
|