Lines Matching defs:message
34 * Incoming message: next message of string data.
38 uint8_t type; /**< type of the message */
42 * The number of message types in the debugger should reflect the
100 jerry_debugger_send (size_t message_length) /**< message length in bytes */
334 * It will copies the given scope values type, length and value into the outgoing message string.
344 size_t *buffer_pos) /**< string data position of the message */
589 ecma_value_t message = result;
599 message = ecma_op_object_find (ecma_get_object_from_value (result),
602 if (!ecma_is_value_string (message)
603 || ecma_string_is_empty (ecma_get_string_from_value (message)))
605 ecma_free_value (message);
624 message = ecma_make_string_value (str_p);
630 ecma_string_t *string_p = ecma_get_string_from_value (message);
636 ecma_free_value (message);
648 JERRY_ERROR_MSG ("Invalid message size\n"); \
688 * Receive message from the client.
690 * @return true - if message is processed successfully
695 uint32_t message_size, /**< message size */
697 uint8_t *expected_message_type_p, /**< message type */
698 jerry_debugger_uint8_data_t **message_data_p) /**< custom message data */
700 /* Process the received message. */
724 JERRY_ERROR_MSG ("Unexpected message\n");
734 JERRY_ERROR_MSG ("Invalid message size\n");
746 JERRY_ERROR_MSG ("Invalid message size\n");
988 JERRY_ERROR_MSG ("Invalid message size\n");
1002 JERRY_ERROR_MSG ("Invalid message size\n");
1038 JERRY_ERROR_MSG ("Invalid message size\n");
1060 JERRY_ERROR_MSG ("Invalid message size\n");
1131 JERRY_ERROR_MSG ("Unexpected message.");
1139 * Receive message from the client.
1213 jerry_debugger_breakpoint_hit (uint8_t message_type) /**< message type */
1259 jerry_debugger_send_type (jerry_debugger_header_type_t type) /**< message type */
1277 jerry_debugger_send_configuration (uint8_t max_message_size) /**< maximum message size */
1311 jerry_debugger_send_data (jerry_debugger_header_type_t type, /**< message type */
1332 jerry_debugger_send_string (uint8_t message_type, /**< message type */
1386 jerry_debugger_send_function_cp (jerry_debugger_header_type_t type, /**< message type */