Home
last modified time | relevance | path

Searched refs:FormatFrame (Results 1 – 11 of 11) sorted by relevance

/system/unwinding/libunwindstack/tools/
Dunwind.cpp98 printf("%s\n", unwinder.FormatFrame(i).c_str()); in DoUnwind()
Dunwind_for_offline.cpp296 printf("%s\n", unwinder.FormatFrame(i).c_str()); in SaveData()
/system/unwinding/libunwindstack/include/unwindstack/
DUnwinder.h94 std::string FormatFrame(size_t frame_num) const;
95 std::string FormatFrame(const FrameData& frame) const;
/system/unwinding/libunwindstack/tests/
DUnwinderTest.cpp1459 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 …]
DVerifyBionicTerminationTest.cpp43 unwind += unwinder.FormatFrame(i) + '\n'; in DumpFrames()
DUnwindTest.cpp107 unwind += unwinder->FormatFrame(i) + '\n'; in ErrorMsg()
DUnwindOfflineTest.cpp209 str += unwinder.FormatFrame(i) + "\n"; in DumpFrames()
/system/core/debuggerd/libdebuggerd/
Dscudo.cpp201 _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()
Dgwp_asan.cpp243 _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()
Dutility.cpp460 _LOG(log, logtype::BACKTRACE, "%s%s\n", prefix, unwinder->FormatFrame(i).c_str()); in log_backtrace()
/system/unwinding/libunwindstack/
DUnwinder.cpp327 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()