• Home
  • Raw
  • Download

Lines Matching refs:baseFileName

27 void QuickFixManager::RegisterQuickFixQueryFunc(const std::function<bool(std::string baseFileName,  in RegisterQuickFixQueryFunc()  argument
45 CString baseFileName = baseFile->GetJSPandaFileDesc(); in LoadPatchIfNeeded() local
46 bool needLoadPatch = callBack_(baseFileName.c_str(), patchFileName, &patchBuffer, patchSize); in LoadPatchIfNeeded()
48 LOG_ECMA(INFO) << "Do not need load patch of: " << baseFileName; in LoadPatchIfNeeded()
52 if (methodInfos_.find(baseFileName) != methodInfos_.end()) { in LoadPatchIfNeeded()
53 LOG_ECMA(DEBUG) << "Cannot repeat load patch of: " << baseFileName; in LoadPatchIfNeeded()
60 LOG_ECMA(ERROR) << "load patch jsPandafile failed of: " << baseFileName; in LoadPatchIfNeeded()
67 LOG_ECMA(ERROR) << "Load patch fail of: " << baseFileName; in LoadPatchIfNeeded()
71 methodInfos_.emplace(baseFileName, patchInfo); in LoadPatchIfNeeded()
75 const std::string &baseFileName) in LoadPatch() argument
77 LOG_ECMA(INFO) << "Load patch, patch: " << patchFileName << ", base:" << baseFileName; in LoadPatch()
78 if (methodInfos_.find(baseFileName.c_str()) != methodInfos_.end()) { in LoadPatch()
84 JSPandaFileManager::GetInstance()->LoadJSPandaFile(thread, baseFileName.c_str(), ""); in LoadPatch()
105 methodInfos_.emplace(baseFileName.c_str(), patchInfo); in LoadPatch()
112 … const std::string &baseFileName, const void *baseBuffer, size_t baseSize) in LoadPatch() argument
114 LOG_ECMA(INFO) << "Load patch, patch: " << patchFileName << ", base:" << baseFileName; in LoadPatch()
115 if (methodInfos_.find(baseFileName.c_str()) != methodInfos_.end()) { in LoadPatch()
121 thread, baseFileName.c_str(), "", baseBuffer, baseSize); in LoadPatch()
141 methodInfos_.emplace(baseFileName.c_str(), patchInfo); in LoadPatch()
149 CString baseFileName; in UnloadPatch() local
152 baseFileName = item.first; in UnloadPatch()
155 if (baseFileName.empty()) { in UnloadPatch()
160 PatchInfo &patchInfo = methodInfos_.find(baseFileName)->second; in UnloadPatch()
161 …auto ret = PatchLoader::UnloadPatchInternal(thread, patchFileName.c_str(), baseFileName.c_str(), p… in UnloadPatch()
167 methodInfos_.erase(baseFileName.c_str()); in UnloadPatch()