Home
last modified time | relevance | path

Searched refs:methodInfos_ (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/patch/
Dquick_fix_manager.cpp24 methodInfos_.clear(); in ~QuickFixManager()
52 if (methodInfos_.find(baseFileName) != methodInfos_.end()) { in LoadPatchIfNeeded()
71 methodInfos_.emplace(baseFileName, patchInfo); in LoadPatchIfNeeded()
78 if (methodInfos_.find(baseFileName.c_str()) != methodInfos_.end()) { in LoadPatch()
105 methodInfos_.emplace(baseFileName.c_str(), patchInfo); in LoadPatch()
115 if (methodInfos_.find(baseFileName.c_str()) != methodInfos_.end()) { in LoadPatch()
141 methodInfos_.emplace(baseFileName.c_str(), patchInfo); in LoadPatch()
150 for (const auto &item : methodInfos_) { in UnloadPatch()
160 PatchInfo &patchInfo = methodInfos_.find(baseFileName)->second; in UnloadPatch()
167 methodInfos_.erase(baseFileName.c_str()); in UnloadPatch()
[all …]
Dquick_fix_manager.h53 CMap<CString, PatchInfo> methodInfos_ {};
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_info.cpp619 auto result = methodInfos_.find(methodId); in AddMethod()
620 if (result != methodInfos_.end()) { in AddMethod()
631 methodInfos_.emplace(methodId, info); in AddMethod()
686 …for (auto iter = methodInfos->methodInfos_.begin(); iter != methodInfos->methodInfos_.end(); iter+… in Merge()
690 auto result = methodInfos_.find(methodId); in Merge()
691 if (result != methodInfos_.end()) { in Merge()
700 methodInfos_.emplace(methodId, newMethodInfo); in Merge()
743 methodInfos_.emplace(info->GetMethodId(), info); in ParseFromBinary()
757 return !methodInfos_.empty(); in ParseFromBinary()
765 for (auto iter = methodInfos_.begin(); iter != methodInfos_.end(); iter++) { in ProcessToBinary()
[all …]
Dpgo_profiler_info.h834 methodInfos_.clear(); in Clear()
854 return methodInfos_; in GetMethodInfos()
863 CMap<PGOMethodId, PGOMethodInfo *> methodInfos_; variable