Searched refs:msg_p (Results 1 – 2 of 2) sorted by relevance
225 const lit_utf8_byte_t *msg_p) /**< error message */ in ecma_raise_standard_error() argument229 if (msg_p != NULL) in ecma_raise_standard_error()231 ecma_string_t *error_msg_p = ecma_new_ecma_string_from_utf8 (msg_p, in ecma_raise_standard_error()232 lit_zt_utf8_string_size (msg_p)); in ecma_raise_standard_error()340 ecma_raise_common_error (const char *msg_p) /**< error message */ in ecma_raise_common_error() argument342 return ecma_raise_standard_error (ECMA_ERROR_COMMON, (const lit_utf8_byte_t *) msg_p); in ecma_raise_common_error()354 ecma_raise_range_error (const char *msg_p) /**< error message */ in ecma_raise_range_error() argument356 return ecma_raise_standard_error (ECMA_ERROR_RANGE, (const lit_utf8_byte_t *) msg_p); in ecma_raise_range_error()368 ecma_raise_reference_error (const char *msg_p) /**< error message */ in ecma_raise_reference_error() argument370 return ecma_raise_standard_error (ECMA_ERROR_REFERENCE, (const lit_utf8_byte_t *) msg_p); in ecma_raise_reference_error()[all …]
57 …t ecma_raise_standard_error_with_format (ecma_standard_error_t error_type, const char *msg_p, ...);59 ecma_value_t ecma_raise_common_error (const char *msg_p);60 ecma_value_t ecma_raise_range_error (const char *msg_p);61 ecma_value_t ecma_raise_reference_error (const char *msg_p);62 ecma_value_t ecma_raise_syntax_error (const char *msg_p);63 ecma_value_t ecma_raise_type_error (const char *msg_p);64 ecma_value_t ecma_raise_uri_error (const char *msg_p);