• Home
  • Raw
  • Download

Lines Matching refs:patchFile

60 … std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->LoadJSPandaFileSecure(  in LoadPatchIfNeeded()  local
62 if (patchFile == nullptr) { in LoadPatchIfNeeded()
72 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile, patchFile.get(), patchInfo, baseClassI… in LoadPatchIfNeeded()
99 std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->LoadJSPandaFile( in LoadPatch() local
102 if (patchFile == nullptr) { in LoadPatch()
108 patchAndBaseFileNameMap_[patchFile->GetJSPandaFileDesc()] = baseFileName.c_str(); in LoadPatch()
112 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile.get(), patchFile.get(), patchInfo, base… in LoadPatch()
140 … std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->LoadJSPandaFileSecure( in LoadPatch() local
142 if (patchFile == nullptr) { in LoadPatch()
148 patchAndBaseFileNameMap_[patchFile->GetJSPandaFileDesc()] = baseFileName.c_str(); in LoadPatch()
152 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile.get(), patchFile.get(), patchInfo, base… in LoadPatch()
213 …std::shared_ptr<JSPandaFile> patchFile = JSPandaFileManager::GetInstance()->FindJSPandaFile(patchF… in CheckAndGetPatch() local
214 ASSERT(patchFile != nullptr); in CheckAndGetPatch()
220 patchFile.get(), patchMethodLiteral->GetMethodId()); in CheckAndGetPatch()
227 PatchLoader::ExecuteFuncOrPatchMain(thread, patchFile.get(), patchInfo); in CheckAndGetPatch()
242 …std::shared_ptr<JSPandaFile> patchFile = pfManager->FindJSPandaFile(ConvertToString(patchFileName)… in IsQuickFixCausedException() local
243 if (patchFile == nullptr || ConvertToString(patchFileName) != patchFile->GetJSPandaFileDesc()) { in IsQuickFixCausedException()
254 …std::unordered_map<uint32_t, MethodLiteral *> patchMethodLiterals = patchFile->GetMethodLiteralMap… in IsQuickFixCausedException()
258 CString patchMethodName(MethodLiteral::GetMethodName(patchFile.get(), methodId)); in IsQuickFixCausedException()