Home
last modified time | relevance | path

Searched refs:patchMethodIndex (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.h58 std::size_t operator()(const PatchMethodIndex &patchMethodIndex) const in operator()
60 return std::hash<CString>{}(patchMethodIndex.recordName) ^ in operator()
61 …std::hash<CString>{}(patchMethodIndex.className) ^ std::hash<CString>{}(patchMethodIndex.methodNam… in operator()
65 bool operator==(const PatchMethodIndex &patchMethodIndex) const
67 … return recordName == patchMethodIndex.recordName && className == patchMethodIndex.className &&
68 methodName == patchMethodIndex.methodName;
Dpatch_loader.cpp445 PatchMethodIndex patchMethodIndex = {baseRecordName, baseClassName, baseMethodName}; in FindSameMethod() local
446 auto methodIter = patchMethodLiterals.find(patchMethodIndex); in FindSameMethod()
493 PatchMethodIndex patchMethodIndex = {recordName, className, methodName}; in GeneratePatchInfo() local
494 if (patchMethodLiterals.find(patchMethodIndex) == patchMethodLiterals.end()) { in GeneratePatchInfo()
495 patchMethodLiterals.emplace(patchMethodIndex, methodLiteral); in GeneratePatchInfo()