Lines Matching defs:pc
43 bool DfxHap::ParseHapInfo(pid_t pid, uint64_t pc, uintptr_t methodid, std::shared_ptr<DfxMap> map,
58 if (!ParseHapFileInfo(pc, methodid, map, jsFunction)) {
63 if (!ParseHapMemInfo(pid, pc, methodid, map, jsFunction)) {
74 bool DfxHap::ParseHapFileInfo(uint64_t pc, uintptr_t methodid, std::shared_ptr<DfxMap> map, JsFunction *jsFunction)
81 if (DfxArk::ParseArkFileInfo(static_cast<uintptr_t>(pc), methodid, static_cast<uintptr_t>(map->begin),
83 DFXLOGW("Failed to parse ark file info, pc: %{public}p, begin: %{public}p",
84 reinterpret_cast<void *>(pc), reinterpret_cast<void *>(map->begin));
92 bool DfxHap::ParseHapMemInfo(pid_t pid, uint64_t pc, uintptr_t methodid, std::shared_ptr<DfxMap> map,
104 if (DfxArk::ParseArkFrameInfo(static_cast<uintptr_t>(pc), methodid, static_cast<uintptr_t>(map->begin),
106 DFXLOGW("Failed to parse ark frame info, pc: %{public}p, begin: %{public}p",
107 reinterpret_cast<void *>(pc), reinterpret_cast<void *>(map->begin));