Home
last modified time | relevance | path

Searched full:message (Results 1 – 25 of 192) sorted by relevance

12345678

/arkcompiler/runtime_core/verification/
Dmessages.yaml23 message: ( type is '${type}' )
29 message: ( constructor is '${constructor}' )
34 message: ( constructor is array constructor )
40 message: ( field is '${field}' )
46 message: Field is '${field}'.
52 message: ( method is '${method}' )
58 message: result = '${result}'
64 message: ${prefix} { ${registers} }
70 message: >
78 message: Verification of method '${method}'.
[all …]
/arkcompiler/runtime_core/cmake/
DDefinitions.cmake44 message(FATAL_ERROR "Platform ${CMAKE_SYSTEM_NAME} is not supported")
67 message(FATAL_ERROR "Only one PANDA_TARGET_ARM32_ABI_* should be set.
72 message(FATAL_ERROR "PANDA_TARGET_ARM32_ABI_* is not set")
75 message(FATAL_ERROR "Processor ${CMAKE_SYSTEM_PROCESSOR} is not supported")
83 message(FATAL_ERROR "Unknown bitness of the target platform")
87 message(STATUS "Track internal allocations")
125 message(FATAL_ERROR "PGO supported only for aarch64")
146 message(FATAL_ERROR "MOBILE_NATIVE_LIBS_SOURCE_PATH is not set")
222 message(FATAL_ERROR "PANDA_RELEASE_BUILD must be run with the Release build type only!")
294 message(STATUS "set ${PANDA_HOST_TOOLS_TARGET_ARCH}")
[all …]
/arkcompiler/runtime_core/dprof/libdprof/dprof/ipc/
Dipc_message.cpp21 bool SendMessage(int fd, const Message &message) in SendMessage() argument
23 Message::Id messageId = message.GetId(); in SendMessage()
25 PLOG(ERROR, DPROF) << "Cannot send message id"; in SendMessage()
29 uint32_t size = message.GetSize(); in SendMessage()
35 if (size != 0 && !SendAll(fd, message.GetData(), message.GetSize())) { in SendMessage()
36 PLOG(ERROR, DPROF) << "Cannot send message data, size=" << message.GetSize(); in SendMessage()
43 int RecvMessage(int fd, Message &message) in RecvMessage() argument
47 Message::Id messageId; in RecvMessage()
64 if (size > Message::MAX_DATA_SIZE) { in RecvMessage()
72 LOG(ERROR, DPROF) << "Canot get message data"; in RecvMessage()
[all …]
Dipc_message.h25 class Message {
36 Message() = default;
37 DEFAULT_MOVE_SEMANTIC(Message);
40 Message(Id id, T &&data) : id_(id), data_(std::forward<T>(data)) in Message() function
44 ~Message() = default;
65 NO_COPY_SEMANTIC(Message);
68 bool SendMessage(int fd, const Message &message);
69 int RecvMessage(int fd, Message &message);
/arkcompiler/runtime_core/pandastdlib/
Dpandastdlib.pa29 panda.String message
34 panda.String message
39 panda.String message
44 panda.String message
49 panda.String message
54 panda.String message
59 panda.String message
64 panda.String message
69 panda.String message
74 panda.String message
[all …]
/arkcompiler/ets_frontend/merge_abc/
DHowToWriteProtoForAssemblyStuff.md7 message Test // message为关键字,作用为定义一种消息类型
26 message Test
38 message Test
43 message TestArr
73 |message | object of class | 自定义的消息类型
99 message Test // message为关键字,作用为定义一种消息类型
113 message Test // message为关键字,作用为定义一种消息类型
121 message 包含许多可选字段,并且最多只能同时设置其中一个字段,则可以使用 oneof 功能强制执行此行为并节省内存
142 message DebuginfoIns {
193 message Value {
[all …]
/arkcompiler/toolchain/connect_server/
Dconnect_inspector.cpp34 void OnMessage(const std::string& message) in OnMessage() argument
37 if (message.empty()) { in OnMessage()
38 LOGE("message is empty"); in OnMessage()
42 LOGI("ConnectServer OnMessage: %{public}s", message.c_str()); in OnMessage()
44 g_inspector->ideMsgQueue_.push(message); in OnMessage()
49 if (message.find(checkMessage, 0) != std::string::npos) { in OnMessage()
55 if (message.find(openMessage, 0) != std::string::npos) { in OnMessage()
61 if (message.find(closeMessage, 0) != std::string::npos) { in OnMessage()
67 if (message.find(requestMessage, 0) != std::string::npos) { in OnMessage()
114 void StoreMessage(int32_t instanceId, const std::string& message) in StoreMessage() argument
[all …]
Dconnect_server.cpp40 std::string message = webSocket_->Decode(); in RunServer() local
41 if (!message.empty()) { in RunServer()
42 wsOnMessage_(std::move(message)); in RunServer()
59 void ConnectServer::SendMessage(const std::string& message) const in SendMessage()
66 LOGI("ConnectServer SendReply: %{public}s", message.c_str()); in SendMessage()
67 webSocket_->SendReply(message); in SendMessage()
/arkcompiler/ets_frontend/merge_abc/protos/
Dmeta.proto22 message Metadata {
24 message Attributes {
31 message AnnotationMetadata {
36 message ItemMetadata {
41 message RecordMetadata {
45 message FieldMetadata {
51 message FunctionMetadata {
55 message ParamMetadata {
DassemblyFunction.proto27 message CatchBlock {
36 message TryCatchInfo {
37 message TryCatchLabel {
41 message TryCatchMap {
50 message Parameter {
55 message Function {
56 message LabelTable {
DassemblyProgram.proto24 message Program {
25 message RecordTable {
29 message FunctionTable {
33 message FunctionSynnoyms {
37 message LiteralArrayTable {
Dannotation.proto21 message Value {
25 message ScalarValue {
46 message ArrayValue {
52 message AnnotationElement {
65 message AnnotationData {
/arkcompiler/ets_frontend/ts2panda/templates/
Ddiagnostic.ts.erb33 let message = ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
36 LOGE(`${diagnostic.file.fileName} (${line + 1},${character + 1})`, `${message}`);
38 LOGE("Error",message);
43 export function createDiagnosticOnFirstToken(file:ts.SourceFile, node: ts.Node ,message: ts.Diagnos…
45 let diagnostic = jshelpers.createFileDiagnostic(file,span.start,span.length,message,...args);
49 export function createFileDiagnostic(node: ts.Node, message: ts.DiagnosticMessage, ...args: (string…
55 …c = jshelpers.createFileDiagnostic(soureceFile, span.start, span.length, message, ts.idText(<ts.Id…
58 …c = jshelpers.createFileDiagnostic(soureceFile, span.start, span.length, message, ts.idText(<ts.Pr…
61 diagnostic = createDiagnosticOnFirstToken(soureceFile, node, message, ...args);
64 diagnostic = jshelpers.createDiagnosticForNode(node, message, ...args);
[all …]
/arkcompiler/runtime_core/compiler/cmake/
Dtarget.cmake38 message(ERROR "Unimplemented multi-build aarch32 on aarch64-target")
41 message(ERROR "Unimplemented multi-build aarch32 on x86-build-target")
51 message(ERROR "Unimplemented multi-build aarch64 on aarch32-target")
54 message(ERROR "Unimplemented multi-build aarch64 on x86-build-target")
58 message(STATUS "Compiler backends status:")
59 message(STATUS "PANDA_COMPILER_MULTI_TARGET = ${PANDA_COMPILER_MULTI_TARGET}")
60 message(STATUS "PANDA_COMPILER_TARGET: X86=${PANDA_COMPILER_TARGET_X86} X86_64=${PANDA_COMPILER_TAR…
/arkcompiler/runtime_core/templates/
Dmessages.rb16 Message = Struct.new(:name, :component, :number, :level, :args, :short_message, :message, keyword_i… constant
30 msg = is_short ? "#{component} #{level} #{number}: #{short_message}" : message
41 raise "Message template '#{msg}' has a '${' not followed by a '}'"
61 raise "Message name '#{string}' is not in UpperCamelCase"
77 Message.new(
84 message: msg_data.message&.strip
/arkcompiler/runtime_core/runtime/tooling/inspector/
Dendpoint.cpp24 void EndpointBase::HandleMessage(const std::string &message) in HandleMessage() argument
26 JsonObject request(message); in HandleMessage()
28 LOG(INFO, DEBUGGER) << "Invalid request: " << message; in HandleMessage()
32 LOG(DEBUG, DEBUGGER) << "Received " << message; in HandleMessage()
47 LOG(WARNING, DEBUGGER) << "Unsupported method: " << message; in HandleMessage()
51 LOG(INFO, DEBUGGER) << "Response object with no \"id\": " << message; in HandleMessage()
/arkcompiler/toolchain/inspector/
Dws_server.cpp70 std::string message = webSocket_->Decode(); in RunServer() local
71 if (!message.empty()) { in RunServer()
72 LOGI("WsServer OnMessage: %{public}s", message.c_str()); in RunServer()
73 wsOnMessage_(std::move(message)); in RunServer()
97 void WsServer::SendReply(const std::string& message) const in SendReply()
104 LOGI("WsServer SendReply: %{public}s", message.c_str()); in SendReply()
105 webSocket_->SendReply(message); in SendReply()
/arkcompiler/ets_runtime/ecmascript/
Decma_macros.h156 #define DASSERT_PRINT(cond, message) \ argument
158 std::cerr << (message) << std::endl; \
163 #define DASSERT_PRINT(cond, message) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument
169 #define RASSERT_PRINT(cond, message) \ argument
171 std::cerr << message << std::endl; \
287 #define THROW_ERROR(thread, type, message) \ argument
293 JSHandle<JSObject> _error = _factory->GetJSError(type, message); \
314 #define THROW_NEW_ERROR_AND_RETURN_HANDLE(thread, errorType, type, message) \ argument
320 JSHandle<JSObject> _error = _factory->GetJSError(errorType, message); \
329 #define THROW_NEW_ERROR_WITH_MSG_AND_RETURN_VALUE(thread, errorType, message, value) \ argument
[all …]
Dlog.cpp84 int32_t Log::PrintLogger(int32_t, int32_t level, const char *, const char *, const char *message) in PrintLogger() argument
88 LOG_ECMA(VERBOSE) << message; in PrintLogger()
91 LOG_ECMA(DEBUG) << message; in PrintLogger()
94 LOG_ECMA(INFO) << message; in PrintLogger()
97 LOG_ECMA(WARN) << message; in PrintLogger()
100 LOG_ECMA(ERROR) << message; in PrintLogger()
103 LOG_ECMA(FATAL) << message; in PrintLogger()
106 LOG_ECMA(DEBUG) << message; in PrintLogger()
/arkcompiler/runtime_core/runtime/tooling/inspector/tests/
Dtest_logger.cpp43 … ON_CALL(*this, LogLineInternal).WillByDefault([this](auto level, auto component, auto &message) { in TestLogger() argument
45 std::cout << " " << FormatLogLine(level, component, message) << '\n' << std::flush; in TestLogger()
49 log_ << " " << FormatLogLine(level, component, message) << '\n'; in TestLogger()
53 … ASSERT_NE(level, Level::ERROR) << "Log line: " << FormatLogLine(level, component, message); in TestLogger()
71 …estLogger::FormatLogLine(Level level, Component /* component */, const std::string &message) const in FormatLogLine()
99 logLine << ": " << message; in FormatLogLine()
/arkcompiler/runtime_core/dprof/libdprof/dprof/
Dprofiling_data.cpp49 ipc::Message msgVersion(ipc::Message::Id::VERSION, std::move(versionData)); in DumpAndResetFeatures()
59 ipc::Message msgAppInfo(ipc::Message::Id::APP_INFO, std::move(appInfoData)); in DumpAndResetFeatures()
74 ipc::Message msgFeatureData(ipc::Message::Id::FEATURE_DATA, std::move(featureData)); in DumpAndResetFeatures()
/arkcompiler/runtime_core/plugins/
DCMakeLists.txt22 message(FATAL_ERROR "ecmascript plugin is missing")
28 message(FATAL_ERROR "accord plugin is missing")
34 message(FATAL_ERROR "cangjie plugin is missing")
40 message(FATAL_ERROR "java plugin is missing")
/arkcompiler/runtime_core/dprof/daemon/
Dmain.cpp36 ipc::Message msg; in CheckVersion()
38 LOG(ERROR, DPROF) << "Cannot read message"; in CheckVersion()
41 if (msg.GetId() != ipc::Message::Id::VERSION) { in CheckVersion()
42 … LOG(ERROR, DPROF) << "Incorrect first message id, id=" << static_cast<uint32_t>(msg.GetId()); in CheckVersion()
47 LOG(ERROR, DPROF) << "Cannot convert data to version message"; in CheckVersion()
66 ipc::Message msg; in ProcessingConnect()
68 LOG(ERROR, DPROF) << "Cannot read message"; in ProcessingConnect()
71 if (msg.GetId() != ipc::Message::Id::APP_INFO) { in ProcessingConnect()
72 … LOG(ERROR, DPROF) << "Incorrect second message id, id=" << static_cast<uint32_t>(msg.GetId()); in ProcessingConnect()
76 LOG(ERROR, DPROF) << "Cannot convert data to a app info message"; in ProcessingConnect()
[all …]
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
DCMakeLists.txt38 message(STATUS "Encoder: Build amd64 target")
42 message(STATUS "Encoder: Build x86 target")
46 message(STATUS "Encoder: Build aarch64 target")
51message(ERROR "Undefined ABI for aarch32 architecture - please set PANDA_TARGET_ARM32_ABI_SOFT or …
53 message(STATUS "Encoder: Build aarch32 target")
/arkcompiler/runtime_core/cross_values/
DCMakeLists.txt64message(STATUS " Configuring subproject in ${CMAKE_CURRENT_BINARY_DIR}/${PANDA_AUX_BINARY_DIR} vi…
77 message(FATAL_ERROR
86message(STATUS " Building `asm_defines` in ${CMAKE_CURRENT_BINARY_DIR}/${PANDA_AUX_BINARY_DIR} vi…
97 message(FATAL_ERROR
157 message(STATUS "Generating cross-values for X86_64")
165 message(STATUS "Generating cross-values for AARCH64")
173 message(STATUS "Generating cross-values for ARM")
182 message(STATUS "Generating cross-values for AARCH64")
187 message(FATAL_ERROR "Cross-compiling is supported for AMD64 only")
190 message(STATUS "Generating cross-values for ARM")
[all …]

12345678