Searched refs:FormatFrame (Results 1 – 7 of 7) sorted by relevance
/system/core/libunwindstack/include/unwindstack/ |
D | Unwinder.h | 73 std::string FormatFrame(size_t frame_num); 74 static std::string FormatFrame(const FrameData& frame, bool is32bit);
|
/system/core/libunwindstack/tests/ |
D | UnwinderTest.cpp | 962 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 …]
|
D | UnwindTest.cpp | 93 unwind += unwinder.FormatFrame(i) + '\n'; in ErrorMsg()
|
D | UnwindOfflineTest.cpp | 197 str += unwinder.FormatFrame(i) + "\n"; in DumpFrames()
|
/system/core/libunwindstack/ |
D | Unwinder.cpp | 253 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/ |
D | unwind.cpp | 106 printf("%s\n", unwinder.FormatFrame(i).c_str()); in DoUnwind()
|
D | unwind_for_offline.cpp | 254 printf("%s\n", unwinder.FormatFrame(i).c_str()); in SaveData()
|