Home
last modified time | relevance | path

Searched defs:max_frames (Results 1 – 5 of 5) sorted by relevance

/system/core/libunwindstack/include/unwindstack/
DUnwinder.h66 Unwinder(size_t max_frames, Maps* maps, Regs* regs, std::shared_ptr<Memory> process_memory) in Unwinder()
70 Unwinder(size_t max_frames, Maps* maps, std::shared_ptr<Memory> process_memory) in Unwinder()
125 Unwinder(size_t max_frames) : max_frames_(max_frames) { frames_.reserve(max_frames); } in Unwinder()
148 UnwinderFromPid(size_t max_frames, pid_t pid) : Unwinder(max_frames), pid_(pid) {} in UnwinderFromPid()
/system/core/libunwindstack/tests/fuzz/
DUnwinderFuzz.cpp82 size_t max_frames = data_provider.ConsumeIntegralInRange<size_t>(0, 5000); in LLVMFuzzerTestOneInput() local
/system/core/libunwindstack/
DLocalUnwinder.cpp88 bool LocalUnwinder::Unwind(std::vector<LocalFrameData>* frame_info, size_t max_frames) { in Unwind()
/system/memory/libmemunreachable/include/memunreachable/
Dmemunreachable.h50 static const size_t max_frames = 16; member
/system/core/libunwindstack/tests/
DUnwinderTest.cpp445 TEST_F(UnwinderTest, max_frames) { in TEST_F() argument