Home
last modified time | relevance | path

Searched defs:message (Results 1 – 25 of 115) sorted by relevance

12345

/arkcompiler/toolchain/websocket/test/
Dframe_builder_test.cpp45 auto message = frameBuilder.Build(); variable
58 auto message = frameBuilder variable
77 auto message = frameBuilder variable
99 auto message = frameBuilder variable
122 auto message = frameBuilder variable
143 auto message = frameBuilder.Build(); variable
156 auto message = frameBuilder variable
/arkcompiler/ets_runtime/test/fuzztest/exceptionclass_fuzzer/
Dexceptionclass_fuzzer.cpp35 Local<StringRef> message = StringRef::NewFromUtf8(vm, (char*)data, (int)size); in ExpectionErrorFuzzTest() local
49 Local<StringRef> message = StringRef::NewFromUtf8(vm, (char*)data, (int)size); in ExpectionRangeErrorFuzzTest() local
63 Local<StringRef> message = StringRef::NewFromUtf8(vm, (char*)data, (int)size); in ReferenceErrorFuzzTest() local
77 Local<StringRef> message = StringRef::NewFromUtf8(vm, (char*)data, (int)size); in SYNTexErrorFuzzTest() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
Dinterop_common.cpp21 [[noreturn]] void InteropFatal(const char *message) in InteropFatal()
27 [[noreturn]] void InteropFatal(const std::string &message) in InteropFatal()
33 [[noreturn]] void InteropFatal(const char *message, napi_status status) in InteropFatal()
/arkcompiler/toolchain/websocket/
Dframe_builder.cpp51 std::string message; in Build() local
57 void ServerFrameBuilder::PushFullHeader(std::string& message, size_t additionalReservedMem) const in PushFullHeader()
78 void ServerFrameBuilder::PushHeader(std::string& message, uint8_t payloadLenField) const in PushHeader()
92 void ServerFrameBuilder::PushPayloadLength(std::string& message, uint8_t payloadLenField) const in PushPayloadLength()
121 void ClientFrameBuilder::PushFullHeader(std::string& message, size_t additionalReservedMem) const in PushFullHeader()
/arkcompiler/ets_runtime/ecmascript/
Decma_macros.h179 #define DASSERT_PRINT(cond, message) \ argument
186 #define DASSERT_PRINT(cond, message) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument
192 #define RASSERT_PRINT(cond, message) \ argument
317 #define THROW_ERROR(thread, type, message) \ argument
329 #define THROW_UNCATCHABLE_ERROR(thread, type, message) \ argument
348 #define THROW_NEW_ERROR_AND_RETURN_HANDLE(thread, errorType, type, message) \ argument
360 #define THROW_NEW_ERROR_WITH_MSG_AND_RETURN_VALUE(thread, errorType, message, value) \ argument
372 #define THROW_TYPE_ERROR_AND_RETURN(thread, message, value) \ argument
376 #define THROW_RANGE_ERROR_AND_RETURN(thread, message, value) \ argument
380 #define THROW_URI_ERROR_AND_RETURN(thread, message, value) \ argument
[all …]
/arkcompiler/toolchain/tooling/client/domain/
Dheapprofiler_client.cpp70 std::string message = request->Stringify(); in HeapDumpCommand() local
91 std::string message = request->Stringify(); in AllocationTrackCommand() local
112 std::string message = request->Stringify(); in AllocationTrackStopCommand() local
132 std::string message = request->Stringify(); in Enable() local
152 std::string message = request->Stringify(); in Disable() local
173 std::string message = request->Stringify(); in Samping() local
193 std::string message = request->Stringify(); in SampingStop() local
213 std::string message = request->Stringify(); in CollectGarbage() local
Druntime_client.cpp60 std::string message = request->Stringify(); in HeapusageCommand() local
80 std::string message = request->Stringify(); in RuntimeEnableCommand() local
100 std::string message = request->Stringify(); in RuntimeDisableCommand() local
120 std::string message = request->Stringify(); in RunIfWaitingForDebuggerCommand() local
146 std::string message = request->Stringify(); in GetPropertiesCommand() local
170 std::string message = request->Stringify(); in GetPropertiesCommand2() local
Ddebugger_client.cpp85 std::string message = request->Stringify(); in BreakCommand() local
111 std::string message = request->Stringify(); in DeleteCommand() local
130 std::string message = request->Stringify(); in DisableCommand() local
154 std::string message = request->Stringify(); in EnableCommand() local
243 std::string message = request->Stringify(); in ResumeCommand() local
262 std::string message = request->Stringify(); in StepIntoCommand() local
281 std::string message = request->Stringify(); in StepOutCommand() local
300 std::string message = request->Stringify(); in StepOverCommand() local
Dprofiler_client.cpp63 std::string message = request->Stringify(); in CpuprofileEnableCommand() local
83 std::string message = request->Stringify(); in CpuprofileDisableCommand() local
103 std::string message = request->Stringify(); in CpuprofileCommand() local
123 std::string message = request->Stringify(); in CpuprofileStopCommand() local
144 std::string message = request->Stringify(); in SetSamplingIntervalCommand() local
Dtest_client.cpp55 std::string message = request->Stringify(); in SuccessCommand() local
74 std::string message = request->Stringify(); in FailCommand() local
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/quickfix/multi_file/patch/
Dindex.js32 get message() { getter in A
36 set message(newValue) { setter in A
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/quickfix/multi_file/base/
Dindex.js31 get message() { getter in A
35 set message(newValue) { setter in A
/arkcompiler/ets_frontend/arkguard/test/grammar/target/
DnewTargetFunction_2.js21 constructor(message, cause) { argument
26 static new_kntr_k$(message, cause) { argument
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dthrow_error.ts21 message: string = ""; property in A1
27 message: string = ""; property in A2
/arkcompiler/toolchain/test/fuzztest/connectserver_fuzzer/
Dconnectserver_fuzzer.cpp25 void TestFun([[maybe_unused]]std::string &&message) in TestFun()
38 std::string message(data, data + size); in ConnectServerFuzzTest() local
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/
Dthrow_error.ts21 message: string = ""; property in A1
27 message: string = ""; property in A2
/arkcompiler/toolchain/tooling/client/manager/
Dmessage_manager.h35 void MessagePush(uint32_t sessionId, std::string& message) in MessagePush()
42 bool MessagePop(uint32_t& sessionId, std::string& message) in MessagePop()
/arkcompiler/runtime_core/static_core/dprof/libdprof/dprof/ipc/
Dipc_message.cpp21 bool SendMessage(int fd, const Message &message) in SendMessage()
43 int RecvMessage(int fd, Message &message) in RecvMessage()
/arkcompiler/toolchain/test/fuzztest/wsserver_fuzzer/
Dwsserver_fuzzer.cpp25 void TestFun([[maybe_unused]]std::string &&message) in TestFun()
43 std::string message(data, data + size); in WsServerFuzzTest() local
/arkcompiler/toolchain/inspector/
Dconnect_inspector.cpp45 void OnMessage(const std::string& message) in OnMessage()
169 void StoreMessage(int32_t instanceId, const std::string& message) in StoreMessage()
199 void SendLayoutMessage(const std::string& message) in SendLayoutMessage()
207 void SendMessage(const std::string& message) in SendMessage()
Dws_server.cpp85 std::string message = webSocket_->Decode(); in RunServer() local
131 std::string message = "{\"id\":0, \"method\":\"Debugger.clientDisconnect\", \"params\":{}}"; in NotifyDisconnectEvent() local
/arkcompiler/ets_runtime/test/fuzztest/jsvaluereftobigint_fuzzer/
Djsvaluereftobigint_fuzzer.cpp38 Local<JSValueRef> message = StringRef::NewFromUtf8(vm, input, (int)size); in JSValueRefToBigIntFuzztest() local
59 Local<JSValueRef> message = StringRef::NewFromUtf8(vm, input, (int)size); in JSValueRefTypeofFuzztest() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_core_String.cpp155 …std::string message = "Got error in process of normalization: '" + std::string(u_errorName(errorCo… in StringNormalize() local
169 … std::string message = "Cannot get NFC normalizer: '" + std::string(u_errorName(errorCode)) + "'"; in StdCoreStringNormalizeNFC() local
181 … std::string message = "Cannot get NFD normalizer: '" + std::string(u_errorName(errorCode)) + "'"; in StdCoreStringNormalizeNFD() local
193 … std::string message = "Cannot get NFKC normalizer: '" + std::string(u_errorName(errorCode)) + "'"; in StdCoreStringNormalizeNFKC() local
205 … std::string message = "Cannot get NFKD normalizer: '" + std::string(u_errorName(errorCode)) + "'"; in StdCoreStringNormalizeNFKD() local
299 …auto message = "Language tag '" + ConvertToString(langTag->GetCoreType()) + "' is invalid or not s… in StdCoreStringToLocaleUpperCase() local
313 …auto message = "Language tag '" + ConvertToString(langTag->GetCoreType()) + "' is invalid or not s… in StdCoreStringToLocaleLowerCase() local
327 …auto message = "Language tag '" + ConvertToString(langTag->GetCoreType()) + "' is invalid or not s… in StdCoreStringLocaleCmp() local
/arkcompiler/ets_runtime/test/fuzztest/jsnapiexceptions_fuzzer/
Djsnapiexceptions_fuzzer.cpp34 Local<StringRef> message = StringRef::NewFromUtf8(vm, (char *)data, (int)size); in JSNApiGetAndClearUncaughtExceptionFuzzTest() local
62 Local<StringRef> message = StringRef::NewFromUtf8(vm, (char *)data, (int)size); in JSNApiThrowExceptionFuzzTest() local
/arkcompiler/ets_runtime/test/moduletest/regexpcallthrow/
Dregexpcallthrow.js22 function Test262Error(message) { argument

12345