Home
last modified time | relevance | path

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

/aosp12/system/unwinding/libunwindstack/tests/
H A DUnwinderTest.cpp1459 unwinder64.FormatFrame(frame)); in TEST_F()
1461 unwinder32.FormatFrame(frame)); in TEST_F()
1465 unwinder64.FormatFrame(frame)); in TEST_F()
1470 unwinder64.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()
1484 EXPECT_EQ(" #01 pc 00001000 <anonymous:3000>", unwinder32.FormatFrame(frame)); in TEST_F()
1488 EXPECT_EQ(" #01 pc 0000000000001000 <unknown>", unwinder64.FormatFrame(frame)); in TEST_F()
1489 EXPECT_EQ(" #01 pc 00001000 <unknown>", unwinder32.FormatFrame(frame)); in TEST_F()
1513 unwinder.FormatFrame(frame)); in TEST_F()
[all …]
H A DVerifyBionicTerminationTest.cpp43 unwind += unwinder.FormatFrame(i) + '\n'; in DumpFrames()
H A DUnwindTest.cpp107 unwind += unwinder->FormatFrame(i) + '\n'; in ErrorMsg()
H A DUnwindOfflineTest.cpp209 str += unwinder.FormatFrame(i) + "\n"; in DumpFrames()
/aosp12/system/unwinding/libunwindstack/include/unwindstack/
H A DUnwinder.h94 std::string FormatFrame(size_t frame_num) const;
95 std::string FormatFrame(const FrameData& frame) const;
/aosp12/system/unwinding/libunwindstack/
H A 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()
/aosp12/system/core/debuggerd/libdebuggerd/
H A 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()
H A 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()
H A Dutility.cpp460 _LOG(log, logtype::BACKTRACE, "%s%s\n", prefix, unwinder->FormatFrame(i).c_str()); in log_backtrace()
/aosp12/system/unwinding/libunwindstack/tools/
H A Dunwind.cpp98 printf("%s\n", unwinder.FormatFrame(i).c_str()); in DoUnwind()
H A Dunwind_for_offline.cpp296 printf("%s\n", unwinder.FormatFrame(i).c_str()); in SaveData()