Lines Matching refs:patchFile
61 std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->LoadJSPandaFile( in LoadPatchIfNeeded() local
63 if (patchFile == nullptr) { in LoadPatchIfNeeded()
72 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile, patchFile.get(), patchInfo, baseClassI… in LoadPatchIfNeeded()
98 std::shared_ptr<JSPandaFile> patchFile = in LoadPatch() local
100 if (patchFile == nullptr) { in LoadPatch()
109 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile.get(), patchFile.get(), patchInfo, base… in LoadPatch()
137 std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->LoadJSPandaFile( in LoadPatch() local
139 if (patchFile == nullptr) { in LoadPatch()
148 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile.get(), patchFile.get(), patchInfo, base… in LoadPatch()
204 …std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->FindJSPandaFile(patchF… in CheckAndGetPatch() local
205 ASSERT(patchFile != nullptr); in CheckAndGetPatch()
210 patchFile.get(), patchMethodLiteral->GetMethodId()); in CheckAndGetPatch()
217 PatchLoader::ExecuteFuncOrPatchMain(thread, patchFile.get(), patchInfo); in CheckAndGetPatch()
234 …std::shared_ptr<JSPandaFile> patchFile = pfManager->FindJSPandaFile(ConvertToString(patchFileName)… in IsQuickFixCausedException() local
235 if (patchFile == nullptr || ConvertToString(patchFileName) != patchFile->GetJSPandaFileDesc()) { in IsQuickFixCausedException()
246 CUnorderedMap<uint32_t, MethodLiteral *> patchMethodLiterals = patchFile->GetMethodLiteralMap(); in IsQuickFixCausedException()
250 const char *patchMethodName = MethodLiteral::GetMethodName(patchFile.get(), methodId); in IsQuickFixCausedException()