Home
last modified time | relevance | path

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

/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/
Dcallstack_test.cpp106 std::vector<CallFrame> callFrames; variable
113 callFrames);
117 ASSERT_LE(TEST_DWARF_FRAMES.size(), callFrames.size());
119 EXPECT_EQ(TEST_DWARF_FRAMES[i].ip, callFrames[i].ip_);
120 EXPECT_EQ(TEST_DWARF_FRAMES[i].sp, callFrames[i].sp_);
/developtools/hiperf/test/unittest/common/native/
Dcallstack_test.cpp670 std::vector<CallFrame> callFrames; variable
674 callFrames);
675 ASSERT_LE(TEST_DWARF_FRAMES.size(), callFrames.size());
678 EXPECT_EQ(TEST_DWARF_FRAMES[i].ip, callFrames[i].ip_);
679 EXPECT_EQ(TEST_DWARF_FRAMES[i].sp, callFrames[i].sp_);
/developtools/hiperf/src/
Dcallstack.cpp604 size_t CallStack::ExpandCallStack(pid_t tid, std::vector<CallFrame> &callFrames, size_t expandLimit) in ExpandCallStack() argument
609 } else if (callFrames.size() < expandLimit) { in ExpandCallStack()
616 if (callFrames.size() >= 1u) { in ExpandCallStack()
639 expand = DoExpandCallStack(callFrames, cachedCallStack, expandLimit); in ExpandCallStack()
647 cachedCallFrames[callFrames[0].ip_] = callFrames; in ExpandCallStack()
/developtools/profiler/host/smartperf/trace_streamer/src/parser/hiperf_parser/hiperf/
Dcallstack.cpp600 size_t CallStack::ExpandCallStack(pid_t tid, std::vector<CallFrame> &callFrames, size_t expandLimit) in ExpandCallStack() argument
605 } else if (callFrames.size() < expandLimit) { in ExpandCallStack()
612 if (callFrames.size() >= 1u) { in ExpandCallStack()
635 expand = DoExpandCallStack(callFrames, cachedCallStack, expandLimit); in ExpandCallStack()
643 cachedCallFrames[callFrames[0].ip_] = callFrames; in ExpandCallStack()
/developtools/profiler/device/plugins/native_daemon/include/
Dcall_stack.h55 size_t ExpendCallStack(pid_t tid, std::vector<CallFrame> &callFrames, size_t expendLimit = 1u);
96 void UnwindStep(unw_cursor_t &c, std::vector<CallFrame> &callFrames, size_t maxStackLevel);
/developtools/hiperf/include/
Dcallstack.h58 size_t ExpandCallStack(pid_t tid, std::vector<CallFrame> &callFrames, size_t expandLimit = 1u);
99 void UnwindStep(unw_cursor_t &c, std::vector<CallFrame> &callFrames, size_t maxStackLevel);
Dreport.h554 void OutputStdCallFrames(int indent, const ReportItemCallFrame &callFrames,