Searched refs:message_string_p (Results 1 – 5 of 5) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-helpers-error.c | 50 ecma_string_t *message_string_p = ecma_op_to_string (arguments_list_p[0]); in ecma_builtin_helper_error_dispatch_call() local 52 if (JERRY_UNLIKELY (message_string_p == NULL)) in ecma_builtin_helper_error_dispatch_call() 58 message_string_p); in ecma_builtin_helper_error_dispatch_call() 60 ecma_deref_ecma_string (message_string_p); in ecma_builtin_helper_error_dispatch_call()
|
/third_party/jerryscript/jerry-core/debugger/ |
D | debugger.c | 343 … jerry_debugger_send_string_t *message_string_p, /**< msg pointer */ in jerry_debugger_copy_variables_to_string_message() argument 374 message_string_p->string[*buffer_pos] = variable_type; in jerry_debugger_copy_variables_to_string_message() 390 message_string_p->string[*buffer_pos] = (uint8_t) str_size; in jerry_debugger_copy_variables_to_string_message() 402 memcpy (message_string_p->string + *buffer_pos, string_p, free_bytes); in jerry_debugger_copy_variables_to_string_message() 418 memcpy (message_string_p->string + *buffer_pos, string_p, str_size); in jerry_debugger_copy_variables_to_string_message() 478 JERRY_DEBUGGER_SEND_BUFFER_AS (jerry_debugger_send_string_t, message_string_p); in jerry_debugger_send_scope_variables() 479 message_string_p->type = JERRY_DEBUGGER_SCOPE_VARIABLES; in jerry_debugger_send_scope_variables() 505 message_string_p, in jerry_debugger_send_scope_variables() 523 message_string_p, in jerry_debugger_send_scope_variables() 537 message_string_p->type = JERRY_DEBUGGER_SCOPE_VARIABLES_END; in jerry_debugger_send_scope_variables() [all …]
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-exceptions.c | 201 ecma_string_t *message_string_p) /**< message string */ in ecma_new_standard_error_with_message() argument 211 ecma_ref_ecma_string (message_string_p); in ecma_new_standard_error_with_message() 212 prop_value_p->value = ecma_make_string_value (message_string_p); in ecma_new_standard_error_with_message()
|
D | ecma-exceptions.h | 55 …ew_standard_error_with_message (ecma_standard_error_t error_type, ecma_string_t *message_string_p);
|
/third_party/jerryscript/jerry-core/api/ |
D | jerry.c | 1519 ecma_string_t *message_string_p = ecma_new_ecma_string_from_utf8 ((lit_utf8_byte_t *) message_p, in jerry_create_error_sz() local 1523 message_string_p); in jerry_create_error_sz() 1525 ecma_deref_ecma_string (message_string_p); in jerry_create_error_sz()
|