Home
last modified time | relevance | path

Searched refs:patchMethodLiterals (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp446 …onst CUnorderedMap<PatchMethodIndex, MethodLiteral*, PatchMethodIndex::Hash> &patchMethodLiterals = in FindSameMethod() local
447 patchInfo.patchMethodLiterals; in FindSameMethod()
459 auto methodIter = patchMethodLiterals.find(patchMethodIndex); in FindSameMethod()
460 if (methodIter == patchMethodLiterals.end()) { in FindSameMethod()
484 CUnorderedMap<PatchMethodIndex, MethodLiteral*, PatchMethodIndex::Hash> patchMethodLiterals; in GeneratePatchInfo() local
507 if (patchMethodLiterals.find(patchMethodIndex) == patchMethodLiterals.end()) { in GeneratePatchInfo()
508 patchMethodLiterals.emplace(patchMethodIndex, methodLiteral); in GeneratePatchInfo()
513 patchInfo.patchMethodLiterals = std::move(patchMethodLiterals); in GeneratePatchInfo()
Dquick_fix_manager.cpp252 …std::unordered_map<uint32_t, MethodLiteral *> patchMethodLiterals = patchFile->GetMethodLiteralMap… in IsQuickFixCausedException() local
253 for (const auto &item : patchMethodLiterals) { in IsQuickFixCausedException()
Dpatch_loader.h92 CUnorderedMap<PatchMethodIndex, MethodLiteral*, PatchMethodIndex::Hash> patchMethodLiterals; member