• Home
  • Raw
  • Download

Lines Matching refs:baseFile

39 void QuickFixManager::LoadPatchIfNeeded(JSThread *thread, const JSPandaFile *baseFile)  in LoadPatchIfNeeded()  argument
49 CString baseFileName = baseFile->GetJSPandaFileDesc(); in LoadPatchIfNeeded()
70 baseClassInfo_ = PatchLoader::CollectClassInfo(baseFile); in LoadPatchIfNeeded()
72 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile, patchFile.get(), patchInfo, baseClassI… in LoadPatchIfNeeded()
90 std::shared_ptr<JSPandaFile> baseFile = in LoadPatch() local
92 if (baseFile == nullptr) { in LoadPatch()
107 baseClassInfo_ = PatchLoader::CollectClassInfo(baseFile.get()); in LoadPatch()
109 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile.get(), patchFile.get(), patchInfo, base… in LoadPatch()
130 std::shared_ptr<JSPandaFile> baseFile = JSPandaFileManager::GetInstance()->LoadJSPandaFile( in LoadPatch() local
132 if (baseFile == nullptr) { in LoadPatch()
146 baseClassInfo_ = PatchLoader::CollectClassInfo(baseFile.get()); in LoadPatch()
148 …auto ret = PatchLoader::LoadPatchInternal(thread, baseFile.get(), patchFile.get(), patchInfo, base… in LoadPatch()
185 JSTaggedValue QuickFixManager::CheckAndGetPatch(JSThread *thread, const JSPandaFile *baseFile, Enti… in CheckAndGetPatch() argument
191 auto iter = methodInfos_.find(baseFile->GetJSPandaFileDesc()); in CheckAndGetPatch()
197 …MethodLiteral *patchMethodLiteral = PatchLoader::FindSameMethod(patchInfo, baseFile, baseMethodId,… in CheckAndGetPatch()
213 CString recordName = MethodLiteral::GetRecordName(baseFile, baseMethodId); in CheckAndGetPatch()