/developtools/hiperf/src/ |
H A D | report_json_file.cpp | 132 const std::vector<DfxFrame> &frames) in AddReportCallStack() 135 auto it = frames.begin(); in AddReportCallStack() 136 while (it != frames.end()) { in AddReportCallStack() 148 if (it + 1 == frames.end()) { in AddReportCallStack() 154 HLOGV("add child %*s %d-%d %s @%d %s", static_cast<int>(it - frames.begin()), "", libId, in AddReportCallStack() 164 const std::vector<DfxFrame> &frames) in AddReportCallStackReverse() 167 auto it = frames.rbegin(); in AddReportCallStackReverse() 168 while (it != frames.rend()) { in AddReportCallStackReverse() 179 if (it + 1 == frames.rend()) { in AddReportCallStackReverse() 185 HLOGV("add child %*s %d-%d %s @%d %s", static_cast<int>(it - frames in AddReportCallStackReverse() 131 AddReportCallStack(uint64_t eventCount, ReportCallNodeItem &callNode, const std::vector<DfxFrame> &frames) AddReportCallStack() argument 163 AddReportCallStackReverse(uint64_t eventCount, ReportCallNodeItem &callNode, const std::vector<DfxFrame> &frames) AddReportCallStackReverse() argument 217 UpdateReportCallStack(uint64_t id, pid_t pid, pid_t tid, uint64_t eventCount, std::vector<DfxFrame> &frames) UpdateReportCallStack() argument [all...] |
H A D | callstack.cpp | 395 * Decrement the IP for any non-activation frames. in UnwindStep() 397 * for caller frames. in UnwindStep() 512 void CallStack::LogFrame(const std::string msg, const std::vector<DfxFrame> &frames) in LogFrame() argument 516 for (auto& frame : frames) { in LogFrame() 619 HLOGV("find call stack frames in cache size %zu", cachedCallFrames.size()); in ExpandCallStack()
|
/developtools/smartperf_host/trace_streamer/test/unittest/filter/ |
H A D | frame_filter_test.cpp | 148 std::vector<FrameFilter::FrameMap> frames; in HWTEST_F() local 149 frames.push_back({SOURCE_ITID1, SOURCE_FRAME_NUM}); in HWTEST_F() 150 streamFilters_.frameFilter_->BeginProcessCommandUni(UNI_TS, ITID, frames, 0); in HWTEST_F() 178 std::vector<FrameFilter::FrameMap> frames; in HWTEST_F() local 179 frames.push_back({SOURCE_ITID1, SOURCE_FRAME_NUM}); in HWTEST_F() 180 streamFilters_.frameFilter_->BeginProcessCommandUni(UNI_TS, ITID, frames, 0); in HWTEST_F()
|
/developtools/smartperf_host/trace_streamer/src/parser/pbreader_parser/native_hook_parser/ |
H A D | pbreader_native_hook_parser.cpp | 48 // stores frames info. if offlineSymbolization is true, storing ips data, else storing FrameMap id. in ParseStackMap() 49 std::vector<uint64_t> frames; in ParseStackMap() local 54 frames.emplace_back(*itor); in ParseStackMap() 62 frames.emplace_back(*itor); in ParseStackMap() 66 nativeHookFilter_->AppendStackMaps(ipid, stackMapReader.id(), frames); in ParseStackMap()
|
/developtools/smartperf_host/trace_streamer/src/filter/hook_filter/ |
H A D | native_hook_filter.h | 74 void AppendStackMaps(uint32_t ipid, uint32_t stackid, std::vector<uint64_t> &frames); 140 void UpdateReparseStack(uint64_t stackId, std::shared_ptr<std::vector<uint64_t>> frames); 142 void CompressStackAndFrames(uint64_t row, ProtoReader::RepeatedDataAreaIterator<ProtoReader::BytesView> frames);
|
H A D | native_hook_filter.cpp | 70 void NativeHookFilter::AppendStackMaps(uint32_t ipid, uint32_t stackid, std::vector<uint64_t> &frames) in AppendStackMaps() argument 73 // the last element is ipid for this batch of frames/ips in AppendStackMaps() 75 frames.emplace_back(SINGLE_PROC_IPID); in AppendStackMaps() 78 frames.emplace_back(ipid); in AppendStackMaps() 81 auto framesSharedPtr = std::make_shared<std::vector<uint64_t>>(frames); in AppendStackMaps() 90 auto frames = std::make_shared<const ProtoReader::BytesView>(bytesView); in AppendFrameMaps() local 92 ipidToFrameIdToFrameBytes_.Insert(SINGLE_PROC_IPID, frameMapId, frames); in AppendFrameMaps() 94 ipidToFrameIdToFrameBytes_.Insert(ipid, frameMapId, frames); in AppendFrameMaps() 168 ProtoReader::RepeatedDataAreaIterator<ProtoReader::BytesView> frames) in CompressStackAndFrames() 172 for (auto itor = frames; ito in CompressStackAndFrames() 167 CompressStackAndFrames(uint64_t row, ProtoReader::RepeatedDataAreaIterator<ProtoReader::BytesView> frames) CompressStackAndFrames() argument 746 UpdateReparseStack(uint64_t stackId, std::shared_ptr<std::vector<uint64_t>> frames) UpdateReparseStack() argument [all...] |
/developtools/hiperf/include/ |
H A D | report_json_file.h | 372 std::vector<DfxFrame> &frames); 401 const std::vector<DfxFrame> &frames); 403 const std::vector<DfxFrame> &frames);
|
H A D | callstack.h | 74 void LogFrame(const std::string msg, const std::vector<DfxFrame> &frames);
|
/developtools/smartperf_host/trace_streamer/src/filter/ |
H A D | frame_filter.cpp | 94 const std::vector<FrameMap> &frames, in BeginProcessCommandUni() 104 for (auto &it : frames) { in BeginProcessCommandUni() 92 BeginProcessCommandUni(uint64_t ts, uint32_t itid, const std::vector<FrameMap> &frames, uint32_t sliceIndex) BeginProcessCommandUni() argument
|
/developtools/profiler/device/plugins/native_daemon/include/ |
H A D | call_stack.h | 58 void LogFrame(const std::string msg, const std::vector<CallFrame> &frames);
|
/developtools/smartperf_host/trace_streamer/src/parser/ |
H A D | print_event_parser.cpp | 376 std::vector<FrameFilter::FrameMap> frames; in OnMainThreadProcessCmd() local 381 frames.push_back({streamFilters_->processFilter_->GetInternalTid(base::StrToInt<uint32_t>(value1).value()), in OnMainThreadProcessCmd() 386 return streamFilters_->frameFilter_->BeginProcessCommandUni(line.ts, iTid, frames, callStackRow); in OnMainThreadProcessCmd()
|
/developtools/hiperf/test/unittest/common/native/ |
H A D | report_json_file_test.cpp | 70 std::vector<DfxFrame> frames = { in PrepairReportJson() local 94 json->UpdateReportCallStack(id, pid, tid, eventCount, frames); in PrepairReportJson()
|
/developtools/profiler/hiebpf/include/ |
H A D | vmlinux.h | 106407 unsigned int frames; global() member 110753 xen_pfn_t *frames; global() member [all...] |