Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:errCode
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_runtime/compiler_service/interface/
H
A
D
aot_compiler_interface_stub.cpp
67
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
D
aot_compiler_interface_proxy.cpp
63
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
D
map.cpp
46
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
D
aot_compiler_error_utils.cpp
33
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
D
aot_compiler_error_utils.h
41
static std::string GetErrorMessage(int32_t
errCode
);
Completed in 3 milliseconds