Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_namespace.cpp338 CString moduleStr = ConvertToString(moduleName.GetTaggedValue()); in SetModuleDeregisterProcession() local
339 int srcLength = strlen(moduleStr.c_str()) + 1; in SetModuleDeregisterProcession()
341 if (memcpy_s(moduleNameData, srcLength, moduleStr.c_str(), srcLength) != EOK) { in SetModuleDeregisterProcession()
/arkcompiler/ets_runtime/ecmascript/
Decma_vm.h391 inline bool IsMockModule(const CString &moduleStr) const in IsMockModule() argument
396 auto it = mockModuleList_.find(moduleStr); in IsMockModule()
459 bool IsHmsModule(const CString &moduleStr) const;
Decma_vm.cpp804 bool EcmaVM::IsHmsModule(const CString &moduleStr) const in IsHmsModule()
809 auto it = hmsModuleList_.find(moduleStr); in IsHmsModule()
Djs_object.cpp2272 const CString &moduleStr = method->GetRecordNameStr(); in ExtractConstructorAndRecordName() local
2274 if (!moduleStr.empty()) { in ExtractConstructorAndRecordName()
2275 result.append(moduleStr); in ExtractConstructorAndRecordName()
2285 result.append(moduleStr).append(" JSObject(line:").append(std::to_string(line)).append(")"); in ExtractConstructorAndRecordName()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_snapshot.cpp1085 const CString &moduleStr = method->GetRecordNameStr(); in ParseFunctionName() local
1087 if (!moduleStr.empty()) { in ParseFunctionName()
1088 result.append(moduleStr).append(" "); in ParseFunctionName()
1094 return result.append(moduleStr).append(" anonymous"); in ParseFunctionName()
1097 …return result.append(moduleStr).append(" anonymous(line:").append(std::to_string(line)).append(")"… in ParseFunctionName()