Lines Matching refs:patchFile
57 std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->LoadJSPandaFile( in LoadPatchIfNeeded() local
59 if (patchFile == nullptr) { in LoadPatchIfNeeded()
65 auto ret = PatchLoader::LoadPatchInternal(thread, baseFile, patchFile.get(), patchInfo); in LoadPatchIfNeeded()
91 std::shared_ptr<JSPandaFile> patchFile = in LoadPatch() local
93 if (patchFile == nullptr) { in LoadPatch()
99 auto ret = PatchLoader::LoadPatchInternal(thread, baseFile.get(), patchFile.get(), patchInfo); in LoadPatch()
127 std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->LoadJSPandaFile( in LoadPatch() local
129 if (patchFile == nullptr) { in LoadPatch()
135 auto ret = PatchLoader::LoadPatchInternal(thread, baseFile.get(), patchFile.get(), patchInfo); in LoadPatch()
191 …std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->FindJSPandaFile(patchF… in CheckAndGetPatch() local
192 ASSERT(patchFile != nullptr); in CheckAndGetPatch()
197 patchFile.get(), patchMethodLiteral->GetMethodId()); in CheckAndGetPatch()
207 …std::shared_ptr<JSPandaFile> patchFile = pfManager->FindJSPandaFile(ConvertToString(patchFileName)… in IsQuickFixCausedException() local
208 if (patchFile == nullptr || ConvertToString(patchFileName) != patchFile->GetJSPandaFileDesc()) { in IsQuickFixCausedException()
219 CUnorderedMap<uint32_t, MethodLiteral *> patchMethodLiterals = patchFile->GetMethodLiteralMap(); in IsQuickFixCausedException()
223 const char *patchMethodName = MethodLiteral::GetMethodName(patchFile.get(), methodId); in IsQuickFixCausedException()