Home
last modified time | relevance | path

Searched refs:function_offset (Results 1 – 14 of 14) sorted by relevance

/aosp12/system/unwinding/libunwindstack/tests/
H A DUnwinderTest.cpp221 EXPECT_EQ(0U, frame->function_offset); in TEST_F()
236 EXPECT_EQ(1U, frame->function_offset); in TEST_F()
251 EXPECT_EQ(2U, frame->function_offset); in TEST_F()
287 EXPECT_EQ(0U, frame->function_offset); in TEST_F()
302 EXPECT_EQ(0U, frame->function_offset); in TEST_F()
317 EXPECT_EQ(0U, frame->function_offset); in TEST_F()
348 EXPECT_EQ(0U, frame->function_offset); in TEST_F()
379 EXPECT_EQ(0U, frame->function_offset); in TEST_F()
1451 frame.function_offset = 100; in TEST_F()
1468 frame.function_offset = 0; in TEST_F()
[all …]
H A DLocalUnwinderTest.cpp74 if (frame.function_offset != 0) { in ErrorMsg()
75 unwind += android::base::StringPrintf("+%" PRId64, frame.function_offset); in ErrorMsg()
/aosp12/system/unwinding/libunwindstack/include/unwindstack/
H A DLocalUnwinder.h40 uint64_t function_offset) in LocalFrameData()
45 function_offset(function_offset) {} in LocalFrameData()
51 uint64_t function_offset; member
H A DUnwinder.h50 uint64_t function_offset = 0; member
/aosp12/system/unwinding/libunwindstack/
H A DUnwinder.cpp93 dex_files_->GetFunctionName(maps_, dex_pc, &frame->function_name, &frame->function_offset); in FillInDexFrame()
280 !elf->GetFunctionName(step_pc, &frame->function_name, &frame->function_offset)) { in Unwind()
282 frame->function_offset = 0; in Unwind()
359 if (frame.function_offset != 0) { in FormatFrame()
360 data += android::base::StringPrintf("+%" PRId64, frame.function_offset); in FormatFrame()
487 !elf->GetFunctionName(debug_pc, &frame.function_name, &frame.function_offset)) { in BuildFrameFromPcOnly()
489 frame.function_offset = 0; in BuildFrameFromPcOnly()
/aosp12/bionic/libc/malloc_debug/
H A DUnwindBacktrace.cpp112 if (info->function_offset != 0) { in UnwindLog()
113 line += "+" + std::to_string(info->function_offset); in UnwindLog()
H A DPointerData.cpp608 dprintf(fd, " \"%s\" %" PRIx64 "}", name, frame.function_offset); in DumpLiveToFile()
/aosp12/bionic/libfdtrack/
H A Dfdtrack_test.cpp42 uint64_t function_offset; member
69 .function_offset = function_offsets[i], in RunFdtrack()
H A Dfdtrack.cpp159 function_offsets[j] = entry->backtrace[i].function_offset; in fdtrack_iterate()
/aosp12/system/unwinding/libunwindstack/tools/
H A Dunwind_reg_info.cpp195 uint64_t function_offset; in GetInfo() local
196 if (elf.GetFunctionName(pc, &function_name, &function_offset)) { in GetInfo()
/aosp12/system/core/debuggerd/proto/
H A Dtombstone.proto139 uint64 function_offset = 5;
/aosp12/system/unwinding/libbacktrace/
H A DUnwindStack.cpp138 back_frame->func_offset = frame->function_offset; in Unwind()
/aosp12/system/core/debuggerd/libdebuggerd/
H A Dtombstone_proto_to_text.cpp158 StringPrintf(" (%s+%" PRId64 ")", frame.function_name().c_str(), frame.function_offset()); in print_backtrace()
H A Dtombstone_proto.cpp319 f->set_function_offset(frame.function_offset); in fill_in_backtrace_frame()