| /developtools/smartperf_host/patches/ |
| D | productdefine_common.patch | 10 inherit/pc.json | 4 ++++ 45 diff --git a/inherit/pc.json b/inherit/pc.json 47 --- a/inherit/pc.json 48 +++ b/inherit/pc.json
|
| /developtools/profiler/device/plugins/native_daemon/src/ |
| D | call_stack.cpp | 529 uintptr_t pc = regs->GetPc(); in DoUnwind2() local 532 if (unwinder->Step(pc, sp, &unwindInfo)) { in DoUnwind2() 533 if (pc == callStack.back().ip_ && sp == callStack.back().sp_) { in DoUnwind2() 537 callStack.emplace_back(pc, sp); in DoUnwind2() 538 … HLOGV("unwind:%zu: ip 0x%" UNW_WORD_PFLAG " sp 0x%" UNW_WORD_PFLAG "", callStack.size(), pc, sp); in DoUnwind2() 557 uintptr_t pc, UnwindTableInfo& outTableInfo) in FillUnwindTable() argument 573 if (elf->FindUnwindTableInfo(pc, map, uti) == 0) { in FillUnwindTable() 593 int CallStack::FindUnwindTable(uintptr_t pc, UnwindTableInfo& outTableInfo, void *arg) in FindUnwindTable() argument 596 auto map = unwindInfoPtr->thread.FindMapByAddr(pc); in FindUnwindTable() 600 return FillUnwindTable(symbolsFile, map, unwindInfoPtr, pc, outTableInfo); in FindUnwindTable() [all …]
|
| /developtools/hiperf/src/ |
| D | callstack.cpp | 687 uintptr_t pc = regs->GetPc(); in DoUnwind2() 690 if (unwinder->Step(pc, sp, &unwindInfo)) { in DoUnwind2() 691 if (pc == callStack.back().ip_ && sp == callStack.back().sp_) { in DoUnwind2() 694 callStack.emplace_back(pc, sp); in DoUnwind2() 695 … HLOGV("unwind:%zu: ip 0x%" UNW_WORD_PFLAG " sp 0x%" UNW_WORD_PFLAG "", callStack.size(), pc, sp); in DoUnwind2() 715 uintptr_t pc, UnwindTableInfo& outTableInfo) in FillUnwindTable() argument 731 if (elf->FindUnwindTableInfo(pc, map, uti) == 0) { in FillUnwindTable() 751 int CallStack::FindUnwindTable(uintptr_t pc, UnwindTableInfo& outTableInfo, void *arg) in FindUnwindTable() argument 754 auto map = unwindInfoPtr->thread.FindMapByAddr(pc); in FindUnwindTable() 758 return FillUnwindTable(symbolsFile, map, unwindInfoPtr, pc, outTableInfo); in FindUnwindTable() [all …]
|
| D | unique_stack_table.cpp | 126 uint64_t pc = ips[reverseIndex]; in PutIpsInTable() local 128 if (pc == 0) { in PutIpsInTable() 131 prev = PutIpInSlot(pc, prev); in PutIpsInTable()
|
| /developtools/hdc/ |
| D | README.md | 7 …- [PC-side compilation instructions<a name="section129654513262"></a>](#pc-side-compilation-instru… 8 - [Getting instructions on pc<a name="section129654513263"></a>](#getting-instructions-on-pc) 40 Compilation steps of hdc pc executable file: 47 ### Getting instructions on pc<a name="section129654513263"></a>
|
| D | README_zh.md | 7 - [pc端编译说明<a name="section129654513262"></a>](#pc端编译说明) 8 - [pc端获取说明<a name="section129654513263"></a>](#pc端获取说明) 16 HDC(OpenHarmony Device Connector) 是为开发人员提供的用于设备连接调试的命令行工具,pc端开发机使用命令行工具hdc,该工具需支持部署在Windows/Linux/M… 40 ### pc端编译说明<a name="section129654513262"></a> 43 hdc pc端可执行文件编译步骤: 49 ### pc端获取说明<a name="section129654513263"></a> 305 * step1: 先检查pc(host)端hdc 和L2设备端hdcd版本是否一致(-v 查看版本): 308 * step2: 检查pc(host)端设备管理器设备信息是否正常(设备是否正常加载显示、驱动、id是否正常): 326 1)执行命令hdc kill来重启pc侧hdc服务;
|
| /developtools/hdc/src/daemon/ |
| D | main.cpp | 105 pid_t pc = fork(); // create process as daemon process in BackgroundRun() local 106 if (pc < 0) { in BackgroundRun() 108 } else if (!pc) { in BackgroundRun()
|
| /developtools/hiperf/include/ |
| D | callstack.h | 130 …static bool CheckAndStepArkFrame(const VirtualThread &thread, uintptr_t& pc, uintptr_t& fp, uintpt… 135 uintptr_t pc, UnwindTableInfo& outTableInfo); 136 static int FindUnwindTable(uintptr_t pc, UnwindTableInfo& outTableInfo, void *arg);
|
| /developtools/profiler/device/plugins/native_daemon/include/ |
| D | call_stack.h | 110 …static bool CheckAndStepArkFrame(const VirtualThread &thread, uintptr_t& pc, uintptr_t& fp, uintpt… 115 uintptr_t pc, UnwindTableInfo& outTableInfo); 116 static int FindUnwindTable(uintptr_t pc, UnwindTableInfo& outTableInfo, void *arg);
|
| /developtools/smartperf_host/trace_streamer/src/protos/types/plugins/ftrace_data/ |
| D | ftrace.proto | 87 uint64 pc = 3; field
|
| /developtools/profiler/protos/types/plugins/ftrace_data/default/ |
| D | ftrace.proto | 87 uint64 pc = 3; field
|
| /developtools/smartperf_host/trace_streamer/src/protos/types/plugins/ftrace_data/default/ |
| D | ftrace.proto | 87 uint64 pc = 3; field
|
| /developtools/hdc/src/host/ |
| D | server.cpp | 184 pid_t pc = fork(); // create process as daemon process in PullupServer() local 185 if (pc < 0) { in PullupServer() 187 } else if (!pc) { in PullupServer()
|
| /developtools/profiler/device/plugins/ftrace_plugin/tools/device_kernel_version/default/event_formatters/ |
| D | ftrace_ftrace_event_formatter.cpp | 212 … "mmiotrace_rw: %" PRIx64 " %" PRIx64 " %" PRIx64 " %d %x %x", msg.phys(), msg.value(), msg.pc(), in __anond619508a1302()
|
| /developtools/profiler/device/services/profiler_service/test/unittest/ |
| D | profiler_service_performance_test.cpp | 224 ProcessConfig pc; in SetProcessPluginConfig() local 225 pc.set_report_process_tree(true); in SetProcessPluginConfig() 226 std::vector<uint8_t> configData(pc.ByteSizeLong()); in SetProcessPluginConfig() 227 pc.SerializeToArray(configData.data(), configData.size()); in SetProcessPluginConfig()
|
| /developtools/profiler/hiebpf/include/ |
| D | vmlinux.h | 800 long unsigned int pc; member 1198 __u64 pc; member 1208 u64 pc; member 14093 long unsigned int pc; member 14550 __u64 pc; member 18452 long unsigned int pc; member 20461 long unsigned int pc; member 24796 u32 pc; member 149757 __u8 pc[8]; member 149931 void *pc; member
|