Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/test/trace/component/setting/
DSpAllocations.test.ts38 expect(spEle.unwind).toBeNaN();
51 expect(spEle.unwind).toEqual(111);
64 expect(spEle.unwind).toEqual(1121);
75 expect(spEle.unwind).toEqual(1121);
/developtools/profiler/device/plugins/native_daemon/src/
Dmain.cpp99 std::string unwind = args[idx + 1]; in ParseCommand() local
100 if (unwind == "dwarf") { in ParseCommand()
102 } else if (unwind == "fp") { in ParseCommand()
107 printf("set unwind mode:%s\n", unwind.c_str()); in ParseCommand()
/developtools/profiler/hiebpf/src/
Dhiebpf.bpf.c104 u32 unwind = 0; in unwind_stack() local
105 int err = bpf_probe_read_kernel(&unwind, sizeof(u32), unwind_ptr); in unwind_stack()
109 return unwind; in unwind_stack()
Dbpf_controller.cpp270 static inline int InitUnwindFlag(const int fd, bool unwind) in InitUnwindFlag() argument
274 if (unwind) { in InitUnwindFlag()
/developtools/smartperf_host/ide/src/trace/component/
DSpRecordConfigModel.ts579 maxStackDepth: spAllocations!.unwind,
591 maxStackDepth: spAllocations!.unwind,
/developtools/smartperf_host/ide/src/doc/md/
Dquickstart_native_memory.md13 - Max unwind level:抓取的栈的最大深度。
/developtools/smartperf_host/trace_streamer/prebuilts/patch_libunwind/
Dlibunwindbuild.gn305 # what means host use remote mode to unwind
307 # There is an exception, we can support local unwind for linux.
/developtools/smartperf_host/ide/src/trace/component/setting/
DSpAllocations.ts70 get unwind(): number { method in SpAllocations