Lines Matching refs:err_code

10005 DUK_INTERNAL_DECL void duk_debug_write_error_eom(duk_hthread *thr, duk_small_uint_t err_code, const…
10737 …INTERNAL_DECL duk_hobject *duk_error_prototype_from_code(duk_hthread *thr, duk_errcode_t err_code);
29171 DUK_EXTERNAL duk_idx_t duk_push_error_object_va_raw(duk_hthread *thr, duk_errcode_t err_code, const… in duk_push_error_object_va_raw() argument
29185 if (err_code & DUK_ERRCODE_FLAG_NOBLAME_FILELINE) { in duk_push_error_object_va_raw()
29189 err_code = err_code & (~DUK_ERRCODE_FLAG_NOBLAME_FILELINE); in duk_push_error_object_va_raw()
29192 proto = duk_error_prototype_from_code(thr, err_code); in duk_push_error_object_va_raw()
29210 duk_push_int(thr, err_code); in duk_push_error_object_va_raw()
29225 DUK_EXTERNAL duk_idx_t duk_push_error_object_raw(duk_hthread *thr, duk_errcode_t err_code, const ch… in duk_push_error_object_raw() argument
29232 ret = duk_push_error_object_va_raw(thr, err_code, filename, line, fmt, ap); in duk_push_error_object_raw()
29238 DUK_EXTERNAL duk_idx_t duk_push_error_object_stash(duk_hthread *thr, duk_errcode_t err_code, const … in duk_push_error_object_stash() argument
29249 ret = duk_push_error_object_va_raw(thr, err_code, filename, line, fmt, ap); in duk_push_error_object_stash()
30162 DUK_EXTERNAL void duk_error_va_raw(duk_hthread *thr, duk_errcode_t err_code, const char *filename, … in duk_error_va_raw() argument
30165 duk_push_error_object_va_raw(thr, err_code, filename, line, fmt, ap); in duk_error_va_raw()
30170 DUK_EXTERNAL void duk_error_raw(duk_hthread *thr, duk_errcode_t err_code, const char *filename, duk… in duk_error_raw() argument
30176 duk_push_error_object_va_raw(thr, err_code, filename, line, fmt, ap); in duk_error_raw()
30189 …L_DECL void duk__throw_error_from_stash(duk_hthread *thr, duk_errcode_t err_code, const char *fmt,…
30191 DUK_LOCAL void duk__throw_error_from_stash(duk_hthread *thr, duk_errcode_t err_code, const char *fm… in duk__throw_error_from_stash() argument
30202 duk_push_error_object_va_raw(thr, err_code, filename, line, fmt, ap); in duk__throw_error_from_stash()
30215 DUK_EXTERNAL duk_ret_t duk_error_stash(duk_hthread *thr, duk_errcode_t err_code, const char *fmt, .… in duk_error_stash() argument
30217 DUK__ERROR_STASH_SHARED(err_code); in duk_error_stash()
51771 DUK_INTERNAL void duk_debug_write_error_eom(duk_hthread *thr, duk_small_uint_t err_code, const char… argument
51774 duk_debug_write_int(thr, (duk_int32_t) err_code);