Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/patch/
Dquick_fix_manager.cpp256 CString patchMethodName(MethodLiteral::GetMethodName(patchFile.get(), methodId)); in IsQuickFixCausedException() local
257 size_t index = patchMethodName.find_last_of('#'); // #...#functionName in IsQuickFixCausedException()
258 patchMethodName = patchMethodName.substr(index + 1); in IsQuickFixCausedException()
259 if (patchMethodName.find('^') != std::string::npos) { in IsQuickFixCausedException()
260 index = patchMethodName.find_last_of('^'); in IsQuickFixCausedException()
261 patchMethodName = patchMethodName.substr(0, index); // #...#functionName^1 in IsQuickFixCausedException()
264 if (std::strcmp(patchMethodName.data(), JSPandaFile::ENTRY_FUNCTION_NAME) != 0 && in IsQuickFixCausedException()
265 methodNames.find(CString(patchMethodName)) != methodNames.end()) { in IsQuickFixCausedException()