Home
last modified time | relevance | path

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

/system/core/libunwindstack/include/unwindstack/
DUnwinder.h90 std::string FormatFrame(size_t frame_num);
91 std::string FormatFrame(const FrameData& frame);
/system/core/libunwindstack/tests/
DUnwinderTest.cpp1297 unwinder64.FormatFrame(frame)); in TEST_F()
1299 unwinder32.FormatFrame(frame)); in TEST_F()
1303 unwinder64.FormatFrame(frame)); in TEST_F()
1304 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so (function+100)", unwinder32.FormatFrame(frame)); in TEST_F()
1308 unwinder64.FormatFrame(frame)); in TEST_F()
1309 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so (function)", unwinder32.FormatFrame(frame)); in TEST_F()
1313 EXPECT_EQ(" #01 pc 0000000000001000 /fake/libfake.so (func())", unwinder64.FormatFrame(frame)); in TEST_F()
1314 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so (func())", unwinder32.FormatFrame(frame)); in TEST_F()
1317 EXPECT_EQ(" #01 pc 0000000000001000 /fake/libfake.so", unwinder64.FormatFrame(frame)); in TEST_F()
1318 EXPECT_EQ(" #01 pc 00001000 /fake/libfake.so", unwinder32.FormatFrame(frame)); in TEST_F()
[all …]
DUnwindTest.cpp105 unwind += unwinder->FormatFrame(i) + '\n'; in ErrorMsg()
DUnwindOfflineTest.cpp199 str += unwinder.FormatFrame(i) + "\n"; in DumpFrames()
/system/core/libunwindstack/tools/
Dunwind.cpp103 printf("%s\n", unwinder.FormatFrame(i).c_str()); in DoUnwind()
Dunwind_for_offline.cpp297 printf("%s\n", unwinder.FormatFrame(i).c_str()); in SaveData()
/system/core/libunwindstack/
DUnwinder.cpp308 std::string Unwinder::FormatFrame(const FrameData& frame) { in FormatFrame() function in unwindstack::Unwinder
347 std::string Unwinder::FormatFrame(size_t frame_num) { in FormatFrame() function in unwindstack::Unwinder
351 return FormatFrame(frames_[frame_num]); in FormatFrame()
/system/core/debuggerd/libdebuggerd/
Dutility.cpp442 _LOG(log, logtype::BACKTRACE, "%s%s\n", prefix, unwinder->FormatFrame(i).c_str());