Home
last modified time | relevance | path

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

/system/core/libunwindstack/include/unwindstack/
DUnwinder.h73 std::string FormatFrame(size_t frame_num);
74 static std::string FormatFrame(const FrameData& frame, bool is32bit);
/system/core/libunwindstack/tests/
DUnwinderTest.cpp962 Unwinder::FormatFrame(frame, false)); in TEST_F()
964 Unwinder::FormatFrame(frame, true)); in TEST_F()
968 Unwinder::FormatFrame(frame, false)); in TEST_F()
970 Unwinder::FormatFrame(frame, true)); in TEST_F()
974 Unwinder::FormatFrame(frame, false)); in TEST_F()
975 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so (function)", Unwinder::FormatFrame(frame, true)); in TEST_F()
978 EXPECT_EQ(" #01 pc 0000000000001000 /fake/libfake.so", Unwinder::FormatFrame(frame, false)); in TEST_F()
979 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so", Unwinder::FormatFrame(frame, true)); in TEST_F()
982 EXPECT_EQ(" #01 pc 0000000000001000 <anonymous:3000>", Unwinder::FormatFrame(frame, false)); in TEST_F()
983 EXPECT_EQ(" #01 pc 00001000 <anonymous:3000>", Unwinder::FormatFrame(frame, true)); in TEST_F()
[all …]
DUnwindTest.cpp93 unwind += unwinder.FormatFrame(i) + '\n'; in ErrorMsg()
DUnwindOfflineTest.cpp197 str += unwinder.FormatFrame(i) + "\n"; in DumpFrames()
/system/core/libunwindstack/
DUnwinder.cpp253 std::string Unwinder::FormatFrame(size_t frame_num) { in FormatFrame() function in unwindstack::Unwinder
257 return FormatFrame(frames_[frame_num], regs_->Is32Bit()); in FormatFrame()
260 std::string Unwinder::FormatFrame(const FrameData& frame, bool is32bit) { in FormatFrame() function in unwindstack::Unwinder
/system/core/libunwindstack/tools/
Dunwind.cpp106 printf("%s\n", unwinder.FormatFrame(i).c_str()); in DoUnwind()
Dunwind_for_offline.cpp254 printf("%s\n", unwinder.FormatFrame(i).c_str()); in SaveData()