Lines Matching defs:message
19 v8::Local<v8::Message> message,
22 [[noreturn]] void FatalError(const char* location, const char* message);
23 [[noreturn]] void OnFatalError(const char* location, const char* message);
29 // `node::ERR_INVALID_ARG_TYPE(isolate, "message")` returning
30 // a `Local<Value>` containing the TypeError with proper code and message
98 std::string message = SPrintF(format, std::forward<Args>(args)...); \
101 OneByteString(isolate, message.c_str(), message.length()); \
143 V(ERR_CRYPTO_INVALID_MESSAGELEN, "Invalid message length") \
166 "A message object could not be deserialized successfully in the target " \
169 "Object that needs transfer was found in message but not listed " \
185 #define V(code, message) \
187 return code(isolate, message); \
190 isolate->ThrowException(code(isolate, message)); \
201 std::ostringstream message;
202 message << "Script execution timed out after ";
203 message << timeout << "ms";
204 THROW_ERR_SCRIPT_EXECUTION_TIMEOUT(env, message.str().c_str());
208 char message[128];
209 snprintf(message, sizeof(message),
212 return ERR_BUFFER_TOO_LARGE(isolate, message);
216 char message[128];
217 snprintf(message, sizeof(message),
220 return ERR_STRING_TOO_LONG(isolate, message);
268 v8::Local<v8::Message> message,
272 void PerIsolateMessageListener(v8::Local<v8::Message> message,