Searched refs:FormatFrame (Results 1 – 11 of 11) sorted by relevance
/system/unwinding/libunwindstack/tools/ |
D | unwind.cpp | 98 printf("%s\n", unwinder.FormatFrame(i).c_str()); in DoUnwind()
|
D | unwind_for_offline.cpp | 296 printf("%s\n", unwinder.FormatFrame(i).c_str()); in SaveData()
|
/system/unwinding/libunwindstack/include/unwindstack/ |
D | Unwinder.h | 94 std::string FormatFrame(size_t frame_num) const; 95 std::string FormatFrame(const FrameData& frame) const;
|
/system/unwinding/libunwindstack/tests/ |
D | UnwinderTest.cpp | 1459 unwinder64.FormatFrame(frame)); in TEST_F() 1461 unwinder32.FormatFrame(frame)); in TEST_F() 1465 unwinder64.FormatFrame(frame)); in TEST_F() 1466 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so (function+100)", unwinder32.FormatFrame(frame)); in TEST_F() 1470 unwinder64.FormatFrame(frame)); in TEST_F() 1471 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so (function)", unwinder32.FormatFrame(frame)); in TEST_F() 1475 EXPECT_EQ(" #01 pc 0000000000001000 /fake/libfake.so (func())", unwinder64.FormatFrame(frame)); in TEST_F() 1476 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so (func())", unwinder32.FormatFrame(frame)); in TEST_F() 1479 EXPECT_EQ(" #01 pc 0000000000001000 /fake/libfake.so", unwinder64.FormatFrame(frame)); in TEST_F() 1480 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so", unwinder32.FormatFrame(frame)); in TEST_F() [all …]
|
D | VerifyBionicTerminationTest.cpp | 43 unwind += unwinder.FormatFrame(i) + '\n'; in DumpFrames()
|
D | UnwindTest.cpp | 107 unwind += unwinder->FormatFrame(i) + '\n'; in ErrorMsg()
|
D | UnwindOfflineTest.cpp | 209 str += unwinder.FormatFrame(i) + "\n"; in DumpFrames()
|
/system/core/debuggerd/libdebuggerd/ |
D | scudo.cpp | 201 _LOG(log, logtype::BACKTRACE, " %s\n", unwinder->FormatFrame(frame_data).c_str()); in DumpReport() 213 _LOG(log, logtype::BACKTRACE, " %s\n", unwinder->FormatFrame(frame_data).c_str()); in DumpReport()
|
D | gwp_asan.cpp | 243 _LOG(log, logtype::BACKTRACE, " %s\n", unwinder->FormatFrame(frame_data).c_str()); in DumpDeallocationTrace() 270 _LOG(log, logtype::BACKTRACE, " %s\n", unwinder->FormatFrame(frame_data).c_str()); in DumpAllocationTrace()
|
D | utility.cpp | 460 _LOG(log, logtype::BACKTRACE, "%s%s\n", prefix, unwinder->FormatFrame(i).c_str()); in log_backtrace()
|
/system/unwinding/libunwindstack/ |
D | Unwinder.cpp | 327 std::string Unwinder::FormatFrame(const FrameData& frame) const { in FormatFrame() function in unwindstack::Unwinder 375 std::string Unwinder::FormatFrame(size_t frame_num) const { in FormatFrame() function in unwindstack::Unwinder 379 return FormatFrame(frames_[frame_num]); in FormatFrame()
|