Home
last modified time | relevance | path

Searched refs:errCode (Results 1 - 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/compiler_service/interface/
H A Daot_compiler_interface_stub.cpp67 ErrCode errCode = AotCompiler(argsMap, sigData); in CommandAOTCompiler() local
68 if (!reply.WriteInt32(errCode)) { in CommandAOTCompiler()
72 if (SUCCEEDED(errCode)) { in CommandAOTCompiler()
90 ErrCode errCode = StopAotCompiler(); in CommandStopAOTCompiler() local
91 if (!reply.WriteInt32(errCode)) { in CommandStopAOTCompiler()
101 ErrCode errCode = GetAOTVersion(sigData); in CommandGetAOTVersion() local
102 if (!reply.WriteInt32(errCode)) { in CommandGetAOTVersion()
106 if (SUCCEEDED(errCode)) { in CommandGetAOTVersion()
118 ErrCode errCode = NeedReCompile(regs, sigData); in CommandNeedReCompile() local
119 if (!reply.WriteInt32(errCode)) { in CommandNeedReCompile()
[all...]
H A Daot_compiler_interface_proxy.cpp63 ErrCode errCode = reply.ReadInt32(); in AotCompiler() local
64 if (FAILED(errCode)) { in AotCompiler()
66 return errCode; in AotCompiler()
104 ErrCode errCode = reply.ReadInt32(); in StopAotCompiler() local
105 if (FAILED(errCode)) { in StopAotCompiler()
107 return errCode; in StopAotCompiler()
136 ErrCode errCode = reply.ReadInt32(); in GetAOTVersion() local
137 if (FAILED(errCode)) { in GetAOTVersion()
139 return errCode; in GetAOTVersion()
172 ErrCode errCode in NeedReCompile() local
[all...]
/arkcompiler/ets_runtime/ecmascript/platform/windows/
H A Dmap.cpp46 int errCode = GetLastError(); in PageMap() local
47 if (errCode == INSUFFICIENT_CONTINUOUS_MEM) { in PageMap()
51 LOG_ECMA(FATAL) << "PageMap "<< size << ", prot:" << prot << " fail, the error code is: " << errCode; in PageMap() local
63 int errCode = GetLastError(); in PageUnmap() local
64 LOG_ECMA(ERROR) << "PageUnmap failed, error code is " << errCode; in PageUnmap()
105 int errCode = GetLastError(); in PageProtect() local
107 ", change to " << prot << " failed, error code is " << errCode; in PageProtect() local
/arkcompiler/ets_runtime/compiler_service/src/
H A Daot_compiler_error_utils.cpp33 std::string AotCompilerErrorUtil::GetErrorMessage(int32_t errCode) in GetErrorMessage() argument
36 auto iter = ERR_MSG_MAP.find(errCode); in GetErrorMessage()
40 errMsg = "invalid errCode"; in GetErrorMessage()
/arkcompiler/ets_runtime/compiler_service/include/
H A Daot_compiler_error_utils.h41 static std::string GetErrorMessage(int32_t errCode);

Completed in 3 milliseconds