Ruby  2.1.10p492(2016-04-01revision54464)
Data Structures | Macros | Functions | Variables
error.c File Reference
#include "ruby/ruby.h"
#include "ruby/st.h"
#include "ruby/encoding.h"
#include "internal.h"
#include "vm_core.h"
#include <stdio.h>
#include <stdarg.h>
#include <errno.h>
#include "known_errors.inc"

Go to the source code of this file.

Data Structures

struct  bug_reporters
 

Macros

#define EXIT_SUCCESS   0
 
#define WIFEXITED(status)   1
 
#define WEXITSTATUS(status)   (status)
 
#define defined_error(name, num)   if (err == (num)) return (name);
 
#define undefined_error(name)
 
#define MAX_BUG_REPORTERS   0x100
 
#define write_or_abort(fd, str, len)   (write((fd), (str), (len)) < 0 ? abort() : (void)0)
 
#define WRITE_CONST(fd, str)   write_or_abort((fd),(str),sizeof(str) - 1)
 
#define builtin_class_name   rb_builtin_class_name
 
#define NAME_ERR_MESG_COUNT   3
 
#define name_err_mesg_free   RUBY_TYPED_DEFAULT_FREE
 
#define defined_error(name, num)   set_syserr((num), (name));
 
#define undefined_error(name)   set_syserr(0, (name));
 

Functions

static const char * rb_strerrno (int err)
 
static int err_position_0 (char *buf, long len, const char *file, int line)
 
static VALUE compile_snprintf (rb_encoding *enc, const char *pre, const char *file, int line, const char *fmt, va_list args)
 
static void compile_err_append (VALUE mesg)
 
void rb_compile_error_with_enc (const char *file, int line, void *enc, const char *fmt,...)
 
void rb_compile_error (const char *file, int line, const char *fmt,...)
 
void rb_compile_error_append (const char *fmt,...)
 
static void compile_warn_print (const char *file, int line, const char *fmt, va_list args)
 
void rb_compile_warn (const char *file, int line, const char *fmt,...)
 
void rb_compile_warning (const char *file, int line, const char *fmt,...)
 
static void warn_print (const char *fmt, va_list args)
 
void rb_warn (const char *fmt,...)
 
void rb_warning (const char *fmt,...)
 
static VALUE rb_warn_m (int argc, VALUE *argv, VALUE exc)
 
int rb_bug_reporter_add (void(*func)(FILE *, void *), void *data)
 
static void report_bug (const char *file, int line, const char *fmt, va_list args)
 
void rb_bug (const char *fmt,...)
 
void rb_bug_errno (const char *mesg, int errno_arg)
 
void rb_async_bug_errno (const char *mesg, int errno_arg)
 
void rb_compile_bug (const char *file, int line, const char *fmt,...)
 
const char * rb_builtin_type_name (int t)
 
const char * rb_builtin_class_name (VALUE x)
 
void rb_check_type (VALUE x, int t)
 
int rb_typeddata_inherited_p (const rb_data_type_t *child, const rb_data_type_t *parent)
 
int rb_typeddata_is_kind_of (VALUE obj, const rb_data_type_t *data_type)
 
void * rb_check_typeddata (VALUE obj, const rb_data_type_t *data_type)
 
VALUE rb_exc_new (VALUE etype, const char *ptr, long len)
 
VALUE rb_exc_new_cstr (VALUE etype, const char *s)
 
VALUE rb_exc_new_str (VALUE etype, VALUE str)
 
static VALUE exc_initialize (int argc, VALUE *argv, VALUE exc)
 
static VALUE exc_exception (int argc, VALUE *argv, VALUE self)
 
static VALUE exc_to_s (VALUE exc)
 
static VALUE exc_message (VALUE exc)
 
static VALUE exc_inspect (VALUE exc)
 
static VALUE exc_backtrace (VALUE exc)
 
static VALUE exc_backtrace_locations (VALUE exc)
 
VALUE rb_check_backtrace (VALUE bt)
 
static VALUE exc_set_backtrace (VALUE exc, VALUE bt)
 
VALUE rb_exc_set_backtrace (VALUE exc, VALUE bt)
 
VALUE exc_cause (VALUE exc)
 
static VALUE try_convert_to_exception (VALUE obj)
 
static VALUE exc_equal (VALUE exc, VALUE obj)
 
static VALUE exit_initialize (int argc, VALUE *argv, VALUE exc)
 
static VALUE exit_status (VALUE exc)
 
static VALUE exit_success_p (VALUE exc)
 
void rb_name_error (ID id, const char *fmt,...)
 
void rb_name_error_str (VALUE str, const char *fmt,...)
 
static VALUE name_err_initialize (int argc, VALUE *argv, VALUE self)
 
static VALUE name_err_name (VALUE self)
 
static VALUE nometh_err_initialize (int argc, VALUE *argv, VALUE self)
 
static void name_err_mesg_mark (void *p)
 
static size_t name_err_mesg_memsize (const void *p)
 
VALUE rb_name_err_mesg_new (VALUE obj, VALUE mesg, VALUE recv, VALUE method)
 
static VALUE name_err_mesg_equal (VALUE obj1, VALUE obj2)
 
static VALUE name_err_mesg_to_str (VALUE obj)
 
static VALUE name_err_mesg_dump (VALUE obj, VALUE limit)
 
static VALUE name_err_mesg_load (VALUE klass, VALUE str)
 
static VALUE nometh_err_args (VALUE self)
 
void rb_invalid_str (const char *str, const char *type)
 
static VALUE set_syserr (int n, const char *name)
 
static VALUE get_syserr (int n)
 
static VALUE syserr_initialize (int argc, VALUE *argv, VALUE self)
 
static VALUE syserr_errno (VALUE self)
 
static VALUE syserr_eqq (VALUE self, VALUE exc)
 
void Init_Exception (void)
 
void rb_enc_raise (rb_encoding *enc, VALUE exc, const char *fmt,...)
 
void rb_raise (VALUE exc, const char *fmt,...)
 
 NORETURN (static void raise_loaderror(VALUE path, VALUE mesg))
 
static void raise_loaderror (VALUE path, VALUE mesg)
 
void rb_loaderror (const char *fmt,...)
 
void rb_loaderror_with_path (VALUE path, const char *fmt,...)
 
void rb_notimplement (void)
 
void rb_fatal (const char *fmt,...)
 
static VALUE make_errno_exc (const char *mesg)
 
static VALUE make_errno_exc_str (VALUE mesg)
 
VALUE rb_syserr_new (int n, const char *mesg)
 
VALUE rb_syserr_new_str (int n, VALUE arg)
 
void rb_syserr_fail (int e, const char *mesg)
 
void rb_syserr_fail_str (int e, VALUE mesg)
 
void rb_sys_fail (const char *mesg)
 
void rb_sys_fail_str (VALUE mesg)
 
void rb_mod_sys_fail (VALUE mod, const char *mesg)
 
void rb_mod_sys_fail_str (VALUE mod, VALUE mesg)
 
void rb_mod_syserr_fail (VALUE mod, int e, const char *mesg)
 
void rb_mod_syserr_fail_str (VALUE mod, int e, VALUE mesg)
 
void rb_sys_warning (const char *fmt,...)
 
void rb_load_fail (VALUE path, const char *err)
 
void rb_error_frozen (const char *what)
 
void rb_check_frozen (VALUE obj)
 
void rb_error_untrusted (VALUE obj)
 
void rb_check_trusted (VALUE obj)
 
void rb_check_copyable (VALUE obj, VALUE orig)
 
void Init_syserr (void)
 

Variables

VALUE rb_eEAGAIN
 
VALUE rb_eEWOULDBLOCK
 
VALUE rb_eEINPROGRESS
 
const char ruby_description []
 
static const char REPORTBUG_MSG []
 
static struct bug_reporters bug_reporters [MAX_BUG_REPORTERS]
 
static int bug_reporters_size
 
static const char builtin_types [][10]
 
VALUE rb_eException
 
VALUE rb_eSystemExit
 
VALUE rb_eInterrupt
 
VALUE rb_eSignal
 
VALUE rb_eFatal
 
VALUE rb_eStandardError
 
VALUE rb_eRuntimeError
 
VALUE rb_eTypeError
 
VALUE rb_eArgError
 
VALUE rb_eIndexError
 
VALUE rb_eKeyError
 
VALUE rb_eRangeError
 
VALUE rb_eNameError
 
VALUE rb_eEncodingError
 
VALUE rb_eEncCompatError
 
VALUE rb_eNoMethodError
 
VALUE rb_eSecurityError
 
VALUE rb_eNotImpError
 
VALUE rb_eNoMemError
 
VALUE rb_cNameErrorMesg
 
VALUE rb_eScriptError
 
VALUE rb_eSyntaxError
 
VALUE rb_eLoadError
 
VALUE rb_eSystemCallError
 
VALUE rb_mErrno
 
static VALUE rb_eNOERROR
 
static const rb_data_type_t name_err_mesg_data_type
 
static st_tablesyserr_tbl
 

Macro Definition Documentation

◆ builtin_class_name

#define builtin_class_name   rb_builtin_class_name

Definition at line 449 of file error.c.

Referenced by rb_check_type(), and rb_check_typeddata().

◆ defined_error [1/2]

#define defined_error (   name,
  num 
)    if (err == (num)) return (name);

◆ defined_error [2/2]

#define defined_error (   name,
  num 
)    set_syserr((num), (name));

◆ EXIT_SUCCESS

#define EXIT_SUCCESS   0

◆ MAX_BUG_REPORTERS

#define MAX_BUG_REPORTERS   0x100

Definition at line 272 of file error.c.

Referenced by rb_bug_reporter_add().

◆ NAME_ERR_MESG_COUNT

#define NAME_ERR_MESG_COUNT   3

◆ name_err_mesg_free

#define name_err_mesg_free   RUBY_TYPED_DEFAULT_FREE

Definition at line 1058 of file error.c.

◆ undefined_error [1/2]

#define undefined_error (   name)

◆ undefined_error [2/2]

#define undefined_error (   name)    set_syserr(0, (name));

◆ WEXITSTATUS

#define WEXITSTATUS (   status)    (status)

Definition at line 37 of file error.c.

Referenced by exit_success_p().

◆ WIFEXITED

#define WIFEXITED (   status)    1

Definition at line 33 of file error.c.

Referenced by exit_success_p().

◆ WRITE_CONST

#define WRITE_CONST (   fd,
  str 
)    write_or_abort((fd),(str),sizeof(str) - 1)

Definition at line 368 of file error.c.

Referenced by rb_async_bug_errno().

◆ write_or_abort

#define write_or_abort (   fd,
  str,
  len 
)    (write((fd), (str), (len)) < 0 ? abort() : (void)0)

Definition at line 367 of file error.c.

Referenced by rb_async_bug_errno().

Function Documentation

◆ compile_err_append()

static void compile_err_append ( VALUE  mesg)
static

◆ compile_snprintf()

static VALUE compile_snprintf ( rb_encoding enc,
const char *  pre,
const char *  file,
int  line,
const char *  fmt,
va_list  args 
)
static

◆ compile_warn_print()

static void compile_warn_print ( const char *  file,
int  line,
const char *  fmt,
va_list  args 
)
static

◆ err_position_0()

static int err_position_0 ( char *  buf,
long  len,
const char *  file,
int  line 
)
static

Definition at line 70 of file error.c.

References buf, and snprintf.

Referenced by report_bug().

◆ exc_backtrace()

static VALUE exc_backtrace ( VALUE  exc)
static

Definition at line 728 of file error.c.

References CONST_ID, rb_attr_get(), rb_backtrace_p(), and rb_backtrace_to_str_ary().

Referenced by exc_equal(), and Init_Exception().

◆ exc_backtrace_locations()

static VALUE exc_backtrace_locations ( VALUE  exc)
static

Definition at line 755 of file error.c.

References CONST_ID, NIL_P, rb_attr_get(), and rb_backtrace_to_location_ary().

Referenced by Init_Exception().

◆ exc_cause()

VALUE exc_cause ( VALUE  exc)

Definition at line 813 of file error.c.

References CONST_ID, and rb_attr_get().

Referenced by Init_Exception().

◆ exc_equal()

static VALUE exc_equal ( VALUE  exc,
VALUE  obj 
)
static

◆ exc_exception()

static VALUE exc_exception ( int  argc,
VALUE argv,
VALUE  self 
)
static

Definition at line 625 of file error.c.

References argc, argv, exc_initialize(), and rb_obj_clone().

Referenced by Init_Exception().

◆ exc_initialize()

static VALUE exc_initialize ( int  argc,
VALUE argv,
VALUE  exc 
)
static

Definition at line 600 of file error.c.

References argc, argv, Qnil, rb_iv_set(), and rb_scan_args().

Referenced by exc_exception(), and Init_Exception().

◆ exc_inspect()

static VALUE exc_inspect ( VALUE  exc)
static

◆ exc_message()

static VALUE exc_message ( VALUE  exc)
static

Definition at line 665 of file error.c.

References rb_funcall(), and rb_intern.

Referenced by Init_Exception().

◆ exc_set_backtrace()

static VALUE exc_set_backtrace ( VALUE  exc,
VALUE  bt 
)
static

Definition at line 801 of file error.c.

References rb_check_backtrace(), and rb_iv_set().

Referenced by Init_Exception(), and rb_exc_set_backtrace().

◆ exc_to_s()

static VALUE exc_to_s ( VALUE  exc)
static

Definition at line 646 of file error.c.

References CLASS_OF, NIL_P, rb_attr_get(), rb_class_name(), rb_intern, and rb_String().

Referenced by Init_Exception().

◆ exit_initialize()

static VALUE exit_initialize ( int  argc,
VALUE argv,
VALUE  exc 
)
static

Definition at line 888 of file error.c.

References argc, argv, EXIT_FAILURE, EXIT_SUCCESS, INT2FIX, NIL_P, Qfalse, Qtrue, rb_call_super(), rb_check_to_int(), and rb_iv_set().

Referenced by Init_Exception().

◆ exit_status()

static VALUE exit_status ( VALUE  exc)
static

Definition at line 938 of file error.c.

References rb_attr_get(), and rb_intern.

Referenced by Init_Exception().

◆ exit_success_p()

static VALUE exit_success_p ( VALUE  exc)
static

Definition at line 952 of file error.c.

References EXIT_SUCCESS, NIL_P, NUM2INT, Qfalse, Qtrue, rb_attr_get(), rb_intern, WEXITSTATUS, and WIFEXITED.

Referenced by Init_Exception().

◆ get_syserr()

static VALUE get_syserr ( int  n)
static

Definition at line 1265 of file error.c.

References name, set_syserr(), snprintf, st_data_t, st_lookup(), and syserr_tbl.

Referenced by rb_syserr_new_str().

◆ Init_Exception()

void Init_Exception ( void  )

◆ Init_syserr()

void Init_syserr ( void  )

Definition at line 2115 of file error.c.

References rb_eNOERROR, and set_syserr().

◆ make_errno_exc()

static VALUE make_errno_exc ( const char *  mesg)
static

Definition at line 1924 of file error.c.

References errno, rb_bug(), and rb_syserr_new().

Referenced by rb_mod_sys_fail(), and rb_sys_fail().

◆ make_errno_exc_str()

static VALUE make_errno_exc_str ( VALUE  mesg)
static

Definition at line 1936 of file error.c.

References errno, NIL_P, Qnil, rb_bug(), rb_syserr_new_str(), and RSTRING_PTR.

Referenced by rb_mod_sys_fail_str(), and rb_sys_fail_str().

◆ name_err_initialize()

static VALUE name_err_initialize ( int  argc,
VALUE argv,
VALUE  self 
)
static

Definition at line 1006 of file error.c.

References argc, argv, name, Qnil, rb_call_super(), and rb_iv_set().

Referenced by Init_Exception(), and nometh_err_initialize().

◆ name_err_mesg_dump()

static VALUE name_err_mesg_dump ( VALUE  obj,
VALUE  limit 
)
static

Definition at line 1163 of file error.c.

References name_err_mesg_to_str().

Referenced by Init_Exception().

◆ name_err_mesg_equal()

static VALUE name_err_mesg_equal ( VALUE  obj1,
VALUE  obj2 
)
static

◆ name_err_mesg_load()

static VALUE name_err_mesg_load ( VALUE  klass,
VALUE  str 
)
static

Definition at line 1170 of file error.c.

Referenced by Init_Exception().

◆ name_err_mesg_mark()

static void name_err_mesg_mark ( void *  p)
static

Definition at line 1052 of file error.c.

References NAME_ERR_MESG_COUNT, and rb_gc_mark_locations.

◆ name_err_mesg_memsize()

static size_t name_err_mesg_memsize ( const void *  p)
static

Definition at line 1061 of file error.c.

References NAME_ERR_MESG_COUNT.

◆ name_err_mesg_to_str()

static VALUE name_err_mesg_to_str ( VALUE  obj)
static

◆ name_err_name()

static VALUE name_err_name ( VALUE  self)
static

Definition at line 1024 of file error.c.

References rb_attr_get(), and rb_intern.

Referenced by Init_Exception().

◆ nometh_err_args()

static VALUE nometh_err_args ( VALUE  self)
static

Definition at line 1184 of file error.c.

References rb_attr_get(), and rb_intern.

Referenced by Init_Exception().

◆ nometh_err_initialize()

static VALUE nometh_err_initialize ( int  argc,
VALUE argv,
VALUE  self 
)
static

Definition at line 1040 of file error.c.

References argc, argv, name_err_initialize(), Qnil, and rb_iv_set().

Referenced by Init_Exception().

◆ NORETURN()

NORETURN ( static void   raise_loaderrorVALUE path, VALUE mesg)

◆ raise_loaderror()

static void raise_loaderror ( VALUE  path,
VALUE  mesg 
)
static

◆ rb_async_bug_errno()

void rb_async_bug_errno ( const char *  mesg,
int  errno_arg 
)

Definition at line 371 of file error.c.

References rb_strerrno(), REPORTBUG_MSG, ruby_description, strlen(), WRITE_CONST, and write_or_abort.

◆ rb_bug()

void rb_bug ( const char *  fmt,
  ... 
)

Definition at line 327 of file error.c.

References GET_THREAD(), NULL, rb_sourcefile, rb_sourceline(), and report_bug().

Referenced by add_opt_method(), backtrace_collect(), big2str_find_n1(), BigDecimalCmp(), catch_type(), check_env_value(), check_gen_consistency(), check_match(), classname(), compile_array_(), cont_free(), dump_node(), econv_convert(), econv_finish(), encodes(), error_handle(), eval_queue_handler(), exception_type2symbol(), fiber_store(), fiber_switch(), garbage_collect_body(), gc_finalize_deferred_register(), gc_mark_children(), gc_mark_stacked_objects(), gc_page_sweep(), gc_prof_setup_new_record(), gc_verify_internal_consistency(), get_dyna_var_idx(), get_local_var_idx(), glob_helper(), heap_page_allocate(), insn_set_specialized_instruction(), ip_rb_threadUpdateCommand(), ip_rbUpdateCommand(), ip_rbVwaitCommand(), is_markable_object(), iseq_compile_each(), iseq_data_to_ary(), iseq_set_arguments(), iseq_set_sequence(), location_absolute_path(), location_base_label(), location_label(), location_lineno(), location_path(), location_to_str(), make_errno_exc(), make_errno_exc_str(), mutex_free(), negate_lit(), newobj_of(), obj_free(), obj_memsize_of(), objspace_malloc_increase(), power_cache_get_power(), rb_add_method(), rb_ary_set_len(), rb_bug_errno(), rb_check_deadlock(), rb_check_type(), rb_dlhandle_initialize(), rb_dlptr_aref(), rb_dlptr_aset(), rb_dlptr_s_malloc(), rb_dlptr_to_s(), rb_dlptr_to_str(), rb_econv_open_opts(), rb_enc_from_encoding_index(), rb_fiber_start(), rb_fiddle_handle_initialize(), rb_fiddle_ptr_aref(), rb_fiddle_ptr_aset(), rb_fiddle_ptr_s_malloc(), rb_fiddle_ptr_to_s(), rb_fiddle_ptr_to_str(), rb_gc_writebarrier(), rb_gc_writebarrier_unprotect_promoted(), rb_hash_method_definition(), rb_insn_operand_intern(), rb_iseq_compile_node(), rb_maygvl_fd_fix_cloexec(), rb_memsearch_ss(), rb_method_definition_eq(), rb_method_entry_min_max_arity(), rb_postponed_job_register(), rb_postponed_job_register_one(), rb_readwrite_sys_fail(), rb_str_set_len(), rb_struct_eql(), rb_struct_equal(), rb_thread_call_with_gvl(), rb_thread_terminate_all(), rb_threadptr_unlock_all_locking_mutexes(), rb_tracearg_object(), rb_tracearg_raised_exception(), rb_tracearg_return_value(), rb_trans_conv(), rb_update_max_fd(), rb_vm_get_cref(), rb_vm_make_proc(), reachable_object_from_root_i(), rgengc_remember(), rsock_s_recvfrom(), rsock_s_recvfrom_nonblock(), ruby_node_name(), RVALUE_DEMOTE_FROM_OLD(), RVALUE_PROMOTE_INFANT(), setup_args(), singleton_class_of(), tcl_protect(), thread_free(), thread_start_func_2(), type2sym(), verify_list(), vm_base_ptr(), vm_call0_body(), vm_call0_cfunc_with_frame(), vm_call_cfunc_with_frame(), vm_call_method(), vm_call_super(), vm_exec_core(), vm_get_cvar_base(), vm_getspecial(), vm_make_env_each(), vm_make_proc_with_iseq(), vm_method_cfunc_entry(), vm_throw(), VpDivd(), vtable_add(), and warn_unused_var().

◆ rb_bug_errno()

void rb_bug_errno ( const char *  mesg,
int  errno_arg 
)

Definition at line 350 of file error.c.

References rb_bug(), rb_strerrno(), and strerror().

◆ rb_bug_reporter_add()

int rb_bug_reporter_add ( void(*)(FILE *, void *)  func,
void *  data 
)

◆ rb_builtin_class_name()

const char* rb_builtin_class_name ( VALUE  x)

Definition at line 451 of file error.c.

References FIXNUM_P, NIL_P, rb_obj_classname(), RB_TYPE_P, SYMBOL_P, T_FALSE, and T_TRUE.

Referenced by enum_to_h_i(), rb_ary_to_h(), and rb_hash_s_create().

◆ rb_builtin_type_name()

const char* rb_builtin_type_name ( int  t)

Definition at line 440 of file error.c.

References builtin_types, name, numberof, and t().

Referenced by rb_check_type(), and w_object().

◆ rb_check_backtrace()

VALUE rb_check_backtrace ( VALUE  bt)

◆ rb_check_copyable()

void rb_check_copyable ( VALUE  obj,
VALUE  orig 
)

◆ rb_check_frozen()

void rb_check_frozen ( VALUE  obj)

Definition at line 2084 of file error.c.

References rb_check_frozen_internal.

◆ rb_check_trusted()

void rb_check_trusted ( VALUE  obj)

Definition at line 2096 of file error.c.

◆ rb_check_type()

void rb_check_type ( VALUE  x,
int  t 
)

◆ rb_check_typeddata()

void* rb_check_typeddata ( VALUE  obj,
const rb_data_type_t data_type 
)

◆ rb_compile_bug()

void rb_compile_bug ( const char *  file,
int  line,
const char *  fmt,
  ... 
)

Definition at line 395 of file error.c.

References report_bug().

◆ rb_compile_error()

void rb_compile_error ( const char *  file,
int  line,
const char *  fmt,
  ... 
)

◆ rb_compile_error_append()

void rb_compile_error_append ( const char *  fmt,
  ... 
)

Definition at line 157 of file error.c.

References enumerator::args, compile_err_append(), and rb_vsprintf().

Referenced by parser_yyerror().

◆ rb_compile_error_with_enc()

void rb_compile_error_with_enc ( const char *  file,
int  line,
void *  enc,
const char *  fmt,
  ... 
)

Definition at line 133 of file error.c.

References enumerator::args, compile_err_append(), compile_snprintf(), and NULL.

Referenced by parser_yyerror().

◆ rb_compile_warn()

void rb_compile_warn ( const char *  file,
int  line,
const char *  fmt,
  ... 
)

◆ rb_compile_warning()

void rb_compile_warning ( const char *  file,
int  line,
const char *  fmt,
  ... 
)

◆ rb_enc_raise()

void rb_enc_raise ( rb_encoding enc,
VALUE  exc,
const char *  fmt,
  ... 
)

Definition at line 1844 of file error.c.

References rb_enc_vsprintf(), rb_exc_new3, and rb_exc_raise().

Referenced by rb_file_expand_path_internal(), and rb_str_format().

◆ rb_error_frozen()

void rb_error_frozen ( const char *  what)

◆ rb_error_untrusted()

void rb_error_untrusted ( VALUE  obj)

Definition at line 2090 of file error.c.

◆ rb_exc_new()

VALUE rb_exc_new ( VALUE  etype,
const char *  ptr,
long  len 
)

Definition at line 573 of file error.c.

References rb_funcall(), rb_intern, and rb_str_new().

Referenced by rb_exc_new_cstr(), rb_threadptr_raise(), and setup_exception().

◆ rb_exc_new_cstr()

VALUE rb_exc_new_cstr ( VALUE  etype,
const char *  s 
)

Definition at line 579 of file error.c.

References rb_exc_new(), and strlen().

Referenced by exc_setup_cause().

◆ rb_exc_new_str()

VALUE rb_exc_new_str ( VALUE  etype,
VALUE  str 
)

Definition at line 585 of file error.c.

References rb_funcall(), rb_intern, and StringValue.

Referenced by create_ip_exc(), ole_raise(), raise_from_check(), and raise_zlib_error().

◆ rb_exc_set_backtrace()

VALUE rb_exc_set_backtrace ( VALUE  exc,
VALUE  bt 
)

Definition at line 807 of file error.c.

References exc_set_backtrace().

Referenced by set_backtrace().

◆ rb_fatal()

void rb_fatal ( const char *  fmt,
  ... 
)

◆ rb_invalid_str()

void rb_invalid_str ( const char *  str,
const char *  type 
)

Definition at line 1190 of file error.c.

References PRIsVALUE, rb_eArgError, rb_raise(), rb_str_new2, and type.

Referenced by rb_cstr_to_dbl(), rb_cstr_to_inum(), and str2big_scan_digits().

◆ rb_load_fail()

void rb_load_fail ( VALUE  path,
const char *  err 
)

Definition at line 2068 of file error.c.

References err, raise_loaderror(), rb_str_append(), rb_str_buf_new_cstr(), and rb_str_cat2().

Referenced by load_failed(), and load_file_internal().

◆ rb_loaderror()

void rb_loaderror ( const char *  fmt,
  ... 
)

◆ rb_loaderror_with_path()

void rb_loaderror_with_path ( VALUE  path,
const char *  fmt,
  ... 
)

Definition at line 1891 of file error.c.

References raise_loaderror(), rb_enc_vsprintf(), and rb_locale_encoding().

◆ rb_mod_sys_fail()

void rb_mod_sys_fail ( VALUE  mod,
const char *  mesg 
)

Definition at line 2016 of file error.c.

References make_errno_exc(), mod, rb_exc_raise(), and rb_extend_object().

◆ rb_mod_sys_fail_str()

void rb_mod_sys_fail_str ( VALUE  mod,
VALUE  mesg 
)

Definition at line 2024 of file error.c.

References make_errno_exc_str(), mod, rb_exc_raise(), and rb_extend_object().

Referenced by rb_readwrite_sys_fail().

◆ rb_mod_syserr_fail()

void rb_mod_syserr_fail ( VALUE  mod,
int  e,
const char *  mesg 
)

Definition at line 2032 of file error.c.

References mod, rb_exc_raise(), rb_extend_object(), and rb_syserr_new().

◆ rb_mod_syserr_fail_str()

void rb_mod_syserr_fail_str ( VALUE  mod,
int  e,
VALUE  mesg 
)

Definition at line 2040 of file error.c.

References mod, rb_exc_raise(), rb_extend_object(), and rb_syserr_new_str().

◆ rb_name_err_mesg_new()

VALUE rb_name_err_mesg_new ( VALUE  obj,
VALUE  mesg,
VALUE  recv,
VALUE  method 
)

◆ rb_name_error()

void rb_name_error ( ID  id,
const char *  fmt,
  ... 
)

◆ rb_name_error_str()

void rb_name_error_str ( VALUE  str,
const char *  fmt,
  ... 
)

◆ rb_notimplement()

void rb_notimplement ( void  )

◆ rb_raise()

void rb_raise ( VALUE  exc,
const char *  fmt,
  ... 
)

Definition at line 1857 of file error.c.

References rb_exc_new3, rb_exc_raise(), and rb_vsprintf().

Referenced by addrinfo_initialize(), addrinfo_ip_address(), addrinfo_ip_port(), addrinfo_ip_unpack(), addrinfo_mdump(), addrinfo_mload(), advice_arg_check(), alloc_event_hook(), argf_fileno(), argf_rewind(), argf_seek_m(), argf_set_encoding(), argf_set_pos(), argf_tell(), argf_write_io(), ary2safe_array_index(), ary_ensure_room_for_push(), ary_ensure_room_for_unshift(), ary_join_1(), ary_new(), ary_new_dim(), ary_take_first_or_last(), big2str_alloc(), big2str_base_poweroftwo(), big2str_find_n1(), big2str_generic(), big2ulong(), big_shift2(), big_shift3(), BigDecimal_DoDivmod(), BigDecimal_limit(), BigDecimal_load(), BigDecimal_mode(), BigDecimal_new(), BigDecimal_power(), BigDecimal_to_i(), BigMath_s_exp(), BigMath_s_log(), bsock_close_read(), bsock_close_write(), bsock_shutdown(), bubblebabble_str_new(), call_getaddrinfo(), callback(), cbsubst_def_attr_aliases(), cbsubst_get_subst_arg(), cbsubst_table_setup(), check_autoload_required(), check_dump_arg(), check_econv(), check_exec_env_i(), check_exec_fds(), check_exec_fds_1(), check_exec_options_i(), check_exec_redirect(), check_exec_redirect_fd(), check_funcall_respond_to(), check_gid_switch(), check_load_arg(), check_match(), check_modifiable(), check_path_encoding(), check_rounding_mode(), check_setter_id(), check_type_val2variant(), check_uid_switch(), check_ushort(), chunk_ii(), class2path(), class_init_copy_check(), class_or_module_required(), closed_dbm(), closed_sdbm(), coerce_failed(), constant_arg(), convert_encoding(), convert_type(), convert_UTF8_to_JSON(), convert_UTF8_to_JSON_ASCII(), copy_stream_body(), copy_stream_fallback(), copy_stream_finalize(), count_nodes(), count_objects(), count_objects_size(), count_tdata_objects(), cParser_initialize(), cParser_parse_quirks_mode(), cParser_parse_strict(), create_dummy_encoding_for_tk_core(), create_encoding_table_core(), cState_generate(), cState_init_copy(), d_lite_initialize_copy(), d_lite_marshal_load(), d_lite_minus(), d_lite_plus(), d_lite_rshift(), d_lite_step(), d_new_by_frags(), date_s__parse_internal(), date_s__strptime_internal(), date_s_civil(), date_s_commercial(), date_s_ordinal(), date_strftime_internal(), datetime_s_civil(), datetime_s_commercial(), datetime_s_jd(), datetime_s_ordinal(), dbl2big(), default_proc_arity_check(), dir_closed(), dir_s_chdir(), divmodv(), dlhandle_sym(), do_coerce(), do_writeconv(), dt_new_by_frags(), dump_disasm_list(), dump_output(), each_attr_def(), econv_convert(), econv_get_replacement(), econv_init(), econv_insert_output(), econv_opts(), econv_primitive_convert(), econv_set_replacement(), emit(), enc_check_duplication(), enc_inspect(), encoding_table_get_name_core(), enum_chunk(), enum_drop(), enum_each_cons(), enum_each_cons_size(), enum_each_slice(), enum_each_slice_size(), enum_sort_by(), enum_take(), enum_to_h_i(), enum_zip(), enumerator_feed(), enumerator_init(), enumerator_init_copy(), enumerator_ptr(), env_aset(), env_assoc(), env_delete(), env_fetch(), env_has_key(), errat_setter(), esignal_init(), etc_getgrgid(), etc_getgrnam(), etc_getpwnam(), etc_getpwuid(), ev_advise(), ev_on_event(), eval_string_with_cref(), exec_recursive(), extract_binmode(), extract_user_token(), f_round_common(), failed_load_conv51932(), fdbm_clear(), fdbm_delete(), fdbm_delete_if(), fdbm_fetch_m(), fdbm_store(), fev_off_event(), fgdbm_clear(), fgdbm_fetch_m(), fgdbm_initialize(), fgdbm_set_cachesize(), fgdbm_set_fastmode(), fgdbm_set_syncmode(), fgdbm_store(), fiber_switch(), fiber_t_alloc(), fiddle_handle_sym(), file_inspect_join(), flatten(), fole_initialize(), fole_method_help(), fole_missing(), fole_query_interface(), fole_respond_to(), fole_s_connect(), fole_s_const_load(), fole_s_create_guid(), fole_s_set_locale(), fole_s_show_help(), fole_type(), fole_typelib(), folemethod_initialize(), foleparam_initialize(), foletype_initialize(), foletypelib_initialize(), folevariant_ary_aref(), folevariant_ary_aset(), folevariant_initialize(), folevariant_s_array(), folevariant_set_value(), forbid_setid(), frame_get(), fsdbm_clear(), fsdbm_delete(), fsdbm_delete_if(), fsdbm_fetch_m(), fsdbm_store(), function_call(), gc_info_decode(), gc_latest_gc_info(), gc_stat(), gc_stat_internal(), generate_json_array(), generate_json_float(), generate_json_object(), generator_init(), generator_init_copy(), generator_initialize(), generator_ptr(), generic_to_value(), get_addrinfo(), get_array(), get_device_once(), get_digest_base_metadata(), get_exception_sym2type(), get_gzfile(), get_hash(), get_locked_safe_array(), get_new_timeval(), get_stat(), get_strio(), get_strpath(), get_timeval(), get_trace_arg(), get_zstream(), GetPositiveInt(), GetVpValueWithPrec(), gzfile_check_footer(), gzfile_fill(), gzfile_read_header(), gzfile_read_more(), gzfile_read_raw_until_zero(), gzfile_readpartial(), gzfile_s_open(), handle_interrupt_arg_check_i(), hash2named_arg(), hash_foreach_call(), hash_foreach_iter(), hexencode_str_new(), hist_delete_at(), hist_get(), host_str(), id2ref(), init_addrinfo(), init_copy(), Init_ossl_locks(), Init_tcltklib(), initialize(), initialize_params(), insn_data_to_s_detail(), int_chr(), int_to_ffi_type(), intern_str(), io_getc(), io_getpartial(), io_needed(), io_read(), io_reopen(), io_ungetbyte(), ip_allow_ruby_exit_p(), ip_allow_ruby_exit_set(), ip_cancel_eval_core(), ip_create_console(), ip_create_console_core(), ip_create_slave(), ip_init(), ip_invoke_with_position(), ip_is_safe_p(), ip_is_slave_of_p(), ip_make_menu_embeddable_core(), ip_make_safe(), ip_restart(), ip_ruby_cmd(), ip_ruby_eval(), is_popen_fork(), iseq_build_from_ary_body(), iseq_build_from_ary_exception(), iseq_build_load_iseq(), iseq_check(), iseq_load(), JSON_parse_array(), JSON_parse_object(), JSON_parse_value(), keyword_error(), lazy_drop(), lazy_drop_while(), lazy_flat_map(), lazy_initialize(), lazy_map(), lazy_reject(), lazy_select(), lazy_take(), lazy_take_while(), lazy_zip(), lexer_i(), lib_do_one_event_core(), lib_fromUTF8_core(), lib_get_reltype_name(), lib_mainloop_watchdog(), lib_restart(), lib_set_system_encoding(), lib_split_tklist_core(), lib_toUTF8_core(), long_toobig(), make_addrinfo(), make_clock_result(), make_compile_option(), make_exception(), marshal_load(), match_backref_number(), match_begin(), match_check(), match_end(), match_offset(), mod_using(), mSyslog_close(), mSyslog_log(), mSyslog_open(), mSyslog_set_mask(), must_be_ascii_compatible(), must_be_module(), must_encindex(), must_not_be_anonymous(), must_respond_to(), name_to_backref_error(), name_to_backref_number(), negative_size_allocation_error(), negative_size_allocation_error_with_gvl(), new_size(), no_new_key(), not_encoding(), nucomp_coerce(), nucomp_marshal_load(), nucomp_rationalize(), nucomp_real_check(), nucomp_s_convert(), nucomp_to_f(), nucomp_to_i(), nucomp_to_r(), num_exact(), num_init_copy(), num_members(), num_sadded(), num_step_scan_args(), nurat_coerce(), nurat_int_check(), nurat_marshal_load(), nurat_s_convert(), offset_to_sec(), old_to_new(), ole_cp2encoding(), ole_create_dcom(), ole_invoke(), ole_invoke2(), ole_set_byref(), ole_set_safe_array(), ole_val2olevariantdata(), ole_val_ary2variant_ary(), ole_variant2val(), ole_vstr2wc(), oleparam_ole_param_from_index(), onigenc_single_byte_code_to_mbc(), open_key_args(), opt_enc_index(), pack_unpack(), parse_keyword_arg_i(), parse_main(), path2class(), path_initialize(), permute0(), port_str(), prepare_getline_args(), proc_binding(), proc_new(), proc_options(), queue_do_pop(), queue_pop_should_block(), r_object0(), r_symbol(), r_symlink(), racc_yyparse(), raise_method_missing(), random_load(), range_bsearch(), range_each(), range_failed(), range_loader(), range_max(), range_step(), range_step_size(), rb_add_method_cfunc(), rb_alias(), rb_alias_variable(), rb_ary_bsearch(), rb_ary_combination(), rb_ary_drop(), rb_ary_fetch(), rb_ary_fill(), rb_ary_initialize(), rb_ary_product(), rb_ary_resize(), rb_ary_sample(), rb_ary_set_len(), rb_ary_shuffle_bang(), rb_ary_splice(), rb_ary_store(), rb_ary_take(), rb_ary_times(), rb_ary_to_h(), rb_ary_transpose(), rb_attr(), rb_autoload(), rb_big2long(), rb_big2str1(), rb_big2ulong(), rb_big_coerce(), rb_big_mul_karatsuba(), rb_big_mul_toom3(), rb_block_arity(), rb_check_argv(), rb_check_backtrace(), rb_check_convert_type(), rb_check_copyable(), rb_check_id(), rb_check_inheritable(), rb_check_safe_str(), rb_check_type(), rb_check_typeddata(), rb_class_inherited_p(), rb_class_initialize(), rb_class_superclass(), rb_cmperr(), rb_const_set(), rb_cont_call(), rb_convert_to_integer(), rb_convert_type(), rb_coverage_result(), rb_cstr_to_dbl(), rb_cstr_to_inum(), rb_cstr_to_rat(), rb_declare_transcoder(), rb_default_home_dir(), rb_define_class(), rb_define_class_id_under(), rb_define_module(), rb_define_module_id_under(), rb_digest_base_alloc(), rb_digest_class_s_digest(), rb_digest_instance_method_unimpl(), rb_dlcfunc2ptr(), rb_dlcfunc_call(), rb_dlhandle_close(), rb_dlhandle_initialize(), rb_dlhandle_sym(), rb_dlptr2cptr(), rb_dlptr_aref(), rb_dlptr_aset(), rb_dlptr_s_to_ptr(), rb_econv_append(), rb_econv_init_by_convpath(), rb_econv_prepare_options(), rb_enc_associate_index(), rb_enc_check(), rb_enc_codelen(), rb_enc_codepoint_len(), rb_enc_cr_str_buf_cat(), rb_enc_find_index(), rb_enc_register(), rb_enc_set_default_external(), rb_enc_str_new_cstr(), rb_enc_uint_chr(), rb_enc_vsprintf(), rb_eof_error(), rb_error_frozen(), rb_execarg_addopt(), rb_f_at_exit(), rb_f_autoload(), rb_f_getenv(), rb_f_kill(), rb_f_test(), rb_f_trace_var(), rb_fiber_resume(), rb_fiddle_handle_close(), rb_fiddle_handle_initialize(), rb_fiddle_handle_sym(), rb_fiddle_ptr2cptr(), rb_fiddle_ptr_aref(), rb_fiddle_ptr_aset(), rb_fiddle_ptr_s_to_ptr(), rb_file_expand_path_internal(), rb_file_initialize(), rb_file_join(), rb_find_file_ext_safe(), rb_find_file_safe(), rb_fix2str(), rb_Float(), rb_gdbm_delete(), rb_gdbm_fatal(), rb_gzfile_set_comment(), rb_gzfile_set_mtime(), rb_gzfile_set_orig_name(), rb_gzreader_read(), rb_gzreader_readbyte(), rb_gzreader_readchar(), rb_gzreader_readline(), rb_gzreader_readpartial(), rb_Hash(), rb_hash_fetch_m(), rb_hash_rehash(), rb_hash_s_create(), rb_hash_set_default_proc(), rb_home_dir_of(), rb_include_module(), rb_insecure_operation(), rb_inspect(), rb_integer_unpack(), rb_interrupt(), rb_invalid_str(), rb_io_check_byte_readable(), rb_io_check_char_readable(), rb_io_check_closed(), rb_io_check_initialized(), rb_io_check_writable(), rb_io_close_read(), rb_io_close_write(), rb_io_each_codepoint(), rb_io_each_line(), rb_io_extract_modeenc(), rb_io_fmode_modestr(), rb_io_initialize(), rb_io_modestr_fmode(), rb_io_oflags_modestr(), rb_io_readlines(), rb_io_reopen(), rb_io_s_popen(), rb_io_sysread(), rb_io_sysseek(), rb_io_ungetc(), rb_io_wait_readable(), rb_io_wait_writable(), rb_ioctl(), rb_iseq_line_trace_specify(), rb_marshal_define_compat(), rb_method_call_status(), rb_method_call_with_block(), rb_method_entry_make(), rb_mod_const_defined(), rb_mod_const_get(), rb_mod_define_method(), rb_mod_ge(), rb_mod_modfunc(), rb_mod_refine(), rb_must_asciicompat(), rb_mutex_lock(), rb_mutex_synchronize_m(), rb_mutex_unlock(), rb_nkf_convert(), rb_notimplement(), rb_num2dbl(), rb_num2fix(), rb_num2long(), rb_num2ulong_internal(), rb_num_zerodiv(), rb_obj_alloc(), rb_obj_clone(), rb_obj_dup(), rb_obj_encoding(), rb_obj_init_copy(), rb_out_of_short(), rb_path_to_class(), rb_prepend_module(), rb_provide_feature(), rb_random_real(), rb_random_ulong_limited(), rb_range_beg_len(), rb_reg_check(), rb_reg_initialize(), rb_reg_prepare_enc(), rb_reg_prepare_re(), rb_reg_preprocess_dregexp(), rb_reg_raise(), rb_reg_regsub(), rb_reg_s_union(), rb_register_transcoder(), rb_search_method_entry(), rb_secure(), rb_set_errinfo(), rb_set_safe_level(), rb_str2big_karatsuba(), rb_str2big_normal(), rb_str2big_poweroftwo(), rb_str_aset(), rb_str_buf_cat(), rb_str_cat(), rb_str_check_dummy_enc(), rb_str_concat(), rb_str_crypt(), rb_str_ellipsize(), rb_str_format(), rb_str_index_m(), rb_str_justify(), rb_str_match(), rb_str_modify_expand(), rb_str_new_cstr(), rb_str_partition(), rb_str_resize(), rb_str_rindex_m(), rb_str_rpartition(), rb_str_set_len(), rb_str_setbyte(), rb_str_setter(), rb_str_splice(), rb_str_split_m(), rb_str_sub_bang(), rb_str_subpat_set(), rb_str_times(), rb_str_to_dbl(), rb_str_to_i(), rb_str_unlocktmp(), rb_string_value_cstr(), rb_struct_aref(), rb_struct_aset(), rb_struct_aset_id(), rb_struct_init_copy(), rb_struct_initialize_m(), rb_struct_members(), rb_struct_s_members(), rb_szqueue_initialize(), rb_szqueue_max_set(), rb_thread_pending_interrupt_p(), rb_thread_s_handle_interrupt(), rb_thread_shield_waiting_dec(), rb_thread_shield_waiting_inc(), rb_thread_stop(), rb_thread_wait_fd_rw(), rb_thread_wakeup(), rb_threadptr_pending_interrupt_check_mask(), rb_throw_obj(), rb_time_new(), rb_to_float(), rb_to_id(), rb_to_integer(), rb_tracearg_object(), rb_tracearg_raised_exception(), rb_tracearg_return_value(), rb_undef(), rb_undefined_alloc(), rb_uv_to_utf8(), rb_vm_cbase(), rb_vm_make_binding(), rb_waitpid(), rb_yield_splat(), rcombinate0(), readable(), readline_readline(), readline_s_set_completion_proc(), recursive_join(), reduce0(), reg_enc_error(), remain_size(), return_fiber(), ripper_token2eventid(), rollback_ensure_stack(), rpermute0(), rscheck(), rsock_getaddrinfo(), rsock_io_socket_addrinfo(), rsock_raise_socket_error(), rsock_revlookup_flag(), rsock_s_recvfrom(), rsock_s_recvfrom_nonblock(), ruby__sfvextra(), ruby__sfvwrite(), RUBY_ALIAS_FUNCTION(), ruby_sized_xrealloc2(), safe_setter(), security(), send_internal(), set_arg0(), set_eventloop_tick(), set_eventloop_weight(), set_max_block_time(), set_no_event_wait(), set_ole_codepage(), set_option_encoding_once(), set_trace_func(), should_be_callable(), should_be_finalizable(), sig_trap(), singleton_class_of(), sock_s_gethostbyaddr(), sock_s_getnameinfo(), sock_s_getservbyname(), sock_s_getservbyport(), sock_s_unpack_sockaddr_in(), sock_sockaddr(), sockopt_bool(), sockopt_byte(), sockopt_int(), sockopt_ipv4_multicast_loop(), sockopt_ipv4_multicast_ttl(), sockopt_linger(), sort_by_cmp(), sort_by_i(), sort_reentered(), st_foreach_safe(), start_document(), str_buf_cat(), str_compat_and_valid(), str_find_encindex(), str_gsub(), str_mod_check(), str_modifiable(), str_new0(), str_to_encindex(), str_transcode0(), string_to_c_strict(), string_to_r(), string_to_r_strict(), strio_close(), strio_close_read(), strio_close_write(), strio_each(), strio_read(), strio_readlines(), strio_seek(), strio_size(), strscan_do_scan(), strscan_set_pos(), strscan_unscan(), sym_call(), sym_check_asciionly(), symbol2event_flag(), syserr_initialize(), syslog_write(), take_items(), tcl_stubs_check(), thgroup_add(), thread_add_trace_func(), thread_create_core(), thread_initialize(), thread_join(), thread_s_new(), time_fixoff(), time_gmtime(), time_localtime(), time_mdump(), time_mload(), time_overflow_p(), time_plus(), time_round(), time_strftime(), time_timespec(), timegmw(), timelocalw(), timew2timespec(), tk_conv_args(), tk_hash_kv(), tkstr_invalid_numstr(), too_short(), top_using(), tracepoint_new_s(), transcode_loop(), transcode_restartable0(), trap_handler(), trap_signm(), trnext(), umethod_bind(), undumpable(), unknown_keyword_error(), update_i(), uscore_get(), using_module_recursive(), utc_offset_arg(), utf8_to_uv(), val2variant_ptr(), validate_enc_binmode(), validate_integer_pack_format(), validate_utc_offset(), validate_vtm(), value_to_generic(), value_to_id(), vm_backtrace_to_ary(), vm_call_method(), vm_call_opt_send(), vm_caller_setup_args(), vm_check_if_namespace(), vm_define_method(), vm_get_cvar_base(), vm_search_super_method(), vm_set_top_stack(), vm_stat(), vm_super_outside(), VpException(), w_extended(), w_long(), w_object(), w_symbol(), wdivmod(), writable(), wv2timet(), xmalloc2_size(), yielder_init(), and yielder_ptr().

◆ rb_strerrno()

static const char* rb_strerrno ( int  err)
static

Definition at line 59 of file error.c.

References NULL.

Referenced by rb_async_bug_errno(), and rb_bug_errno().

◆ rb_sys_fail()

void rb_sys_fail ( const char *  mesg)

Definition at line 1976 of file error.c.

References make_errno_exc(), and rb_exc_raise().

Referenced by bsock_getpeername(), bsock_getsockname(), bsock_local_address(), bsock_remote_address(), bsock_shutdown(), console_echo_p(), console_iflush(), console_ioflush(), console_oflush(), console_set_cooked(), console_set_echo(), console_set_raw(), copy_stream_body(), copy_stream_finalize(), date_s_today(), date_strftime_alloc(), datetime_s_now(), dir_read(), establishShell(), fdbm_store(), fgdbm_store(), flush_before_seek(), fsdbm_store(), initialize(), io_reopen(), io_wait_readable(), io_wait_writable(), io_write_nonblock(), ip_addr(), ip_peeraddr(), make_fd_nonblock(), ossl_obj2bio(), ossl_ssl_read_internal(), ossl_ssl_write_internal(), ossl_start_ssl(), p_gid_change_privilege(), p_gid_exchange(), p_gid_switch(), p_uid_change_privilege(), p_uid_exchange(), p_uid_switch(), pipe_open(), proc_wait(), proc_waitall(), pty_getpty(), raise_zlib_error(), rb_clock_getres(), rb_clock_gettime(), rb_f_exec(), rb_f_kill(), rb_f_spawn(), rb_f_system(), rb_fdopen(), rb_io_check_char_readable(), rb_io_flush_raw(), rb_io_initialize(), rb_io_reopen(), rb_io_s_pipe(), rb_setegid_core(), rb_seteuid_core(), rb_str_crypt(), rb_strftime_alloc(), rb_thread_wait_fd_rw(), readline_s_set_input(), readline_s_set_output(), remain_size(), rsock_bsock_send(), rsock_fd_socket_addrinfo(), rsock_init_sock(), rsock_raise_socket_error(), rsock_s_accept(), rsock_s_accept_nonblock(), rsock_s_recvfrom(), rsock_s_recvfrom_nonblock(), rsock_sock_listen(), ruby_dup(), ruby_getcwd(), ruby_kill(), select_internal(), sock_initialize(), strio_init(), time_init_0(), ttymode(), and udp_init().

◆ rb_sys_fail_str()

void rb_sys_fail_str ( VALUE  mesg)

◆ rb_sys_warning()

void rb_sys_warning ( const char *  fmt,
  ... 
)

Definition at line 2048 of file error.c.

References buf, errno, RTEST, ruby_verbose, snprintf, strerror(), strlen(), and warn_print().

Referenced by sys_warning_1().

◆ rb_syserr_fail()

void rb_syserr_fail ( int  e,
const char *  mesg 
)

Definition at line 1964 of file error.c.

References rb_exc_raise(), and rb_syserr_new().

Referenced by init_inetsock_internal(), and rsock_syserr_fail_path().

◆ rb_syserr_fail_str()

void rb_syserr_fail_str ( int  e,
VALUE  mesg 
)

◆ rb_syserr_new()

VALUE rb_syserr_new ( int  n,
const char *  mesg 
)

Definition at line 1950 of file error.c.

References Qnil, rb_str_new2, and rb_syserr_new_str().

Referenced by make_errno_exc(), rb_mod_syserr_fail(), and rb_syserr_fail().

◆ rb_syserr_new_str()

VALUE rb_syserr_new_str ( int  n,
VALUE  arg 
)

◆ rb_typeddata_inherited_p()

int rb_typeddata_inherited_p ( const rb_data_type_t child,
const rb_data_type_t parent 
)

Definition at line 500 of file error.c.

References rb_data_type_struct::parent.

Referenced by rb_check_typeddata(), and rb_typeddata_is_kind_of().

◆ rb_typeddata_is_kind_of()

int rb_typeddata_is_kind_of ( VALUE  obj,
const rb_data_type_t data_type 
)

◆ rb_warn()

void rb_warn ( const char *  fmt,
  ... 
)

Definition at line 223 of file error.c.

References enumerator::args, NIL_P, ruby_verbose, and warn_print().

Referenced by _nativethread_consistency_check(), argf_bytes(), argf_chars(), argf_codepoints(), argf_lines(), argf_next_argv(), curry(), dir_s_chdir(), disable_option(), dump_option(), enable_option(), enum_count(), enum_find_index(), enumerator_initialize(), env_fetch(), env_index(), fdbm_index(), fgdbm_index(), fsdbm_index(), generator_initialize(), ignorecase_getter(), ignorecase_setter(), ip_eval_real(), ip_invoke_core(), kcode_getter(), kcode_setter(), marshal_load(), new_struct(), nucomp_expt(), nurat_expt(), onig_syntax_warn(), ossl_cipher_init(), ossl_make_error(), ossl_verify_cb(), path_check_0(), proc_new(), rb_ary_count(), rb_ary_fetch(), rb_ary_index(), rb_ary_initialize(), rb_ary_rindex(), rb_big_pow(), rb_const_get_0(), rb_const_set(), rb_define_class(), rb_define_class_id_under(), rb_define_const(), rb_enc_find_index(), rb_execarg_run_options(), rb_f_lambda(), rb_fdopen(), rb_gzreader_bytes(), rb_gzreader_lines(), rb_hash_fetch_m(), rb_hash_index(), rb_hash_reject(), rb_hash_s_create(), rb_io_bytes(), rb_io_chars(), rb_io_codepoints(), rb_io_extract_encoding_option(), rb_io_lines(), rb_io_reopen(), rb_io_s_new(), rb_io_sysseek(), rb_io_syswrite(), rb_method_entry_make(), rb_obj_respond_to(), rb_reg_initialize_m(), rb_reg_prepare_enc(), rb_str_enumerate_bytes(), rb_str_enumerate_chars(), rb_str_enumerate_codepoints(), rb_str_enumerate_lines(), rb_str_format(), rb_time_succ(), rb_undef(), re_warn(), register_init_ext(), remove_method(), ruby_gc_set_params(), strio_bytes(), strio_chars(), strio_codepoints(), strio_lines(), unsupported_encoding(), vm_get_cvar_base(), and VpCtoV().

◆ rb_warn_m()

static VALUE rb_warn_m ( int  argc,
VALUE argv,
VALUE  exc 
)
static

Definition at line 264 of file error.c.

References argc, argv, NIL_P, Qnil, rb_io_puts(), rb_stderr, and ruby_verbose.

Referenced by Init_Exception().

◆ rb_warning()

void rb_warning ( const char *  fmt,
  ... 
)

◆ report_bug()

static void report_bug ( const char *  file,
int  line,
const char *  fmt,
va_list  args 
)
static

◆ set_syserr()

static VALUE set_syserr ( int  n,
const char *  name 
)
static

◆ syserr_eqq()

static VALUE syserr_eqq ( VALUE  self,
VALUE  exc 
)
static

◆ syserr_errno()

static VALUE syserr_errno ( VALUE  self)
static

Definition at line 1352 of file error.c.

References rb_attr_get(), and rb_intern.

Referenced by Init_Exception().

◆ syserr_initialize()

static VALUE syserr_initialize ( int  argc,
VALUE argv,
VALUE  self 
)
static

◆ try_convert_to_exception()

static VALUE try_convert_to_exception ( VALUE  obj)
static

Definition at line 821 of file error.c.

References CONST_ID, and rb_check_funcall().

Referenced by exc_equal().

◆ warn_print()

static void warn_print ( const char *  fmt,
va_list  args 
)
static

Variable Documentation

◆ bug_reporters

◆ bug_reporters_size

int bug_reporters_size
static

Definition at line 279 of file error.c.

Referenced by rb_bug_reporter_add(), and report_bug().

◆ builtin_types

const char builtin_types[][10]
static

Definition at line 406 of file error.c.

Referenced by rb_builtin_type_name().

◆ name_err_mesg_data_type

const rb_data_type_t name_err_mesg_data_type
static
Initial value:
= {
"name_err_mesg",
{
},
}
#define RUBY_TYPED_FREE_IMMEDIATELY
Definition: ruby.h:1015
static size_t name_err_mesg_memsize(const void *p)
Definition: error.c:1061
#define name_err_mesg_free
Definition: error.c:1058
#define NULL
Definition: _sdbm.c:102
static void name_err_mesg_mark(void *p)
Definition: error.c:1052

Definition at line 1066 of file error.c.

Referenced by name_err_mesg_equal(), name_err_mesg_to_str(), and rb_name_err_mesg_new().

◆ rb_cNameErrorMesg

VALUE rb_cNameErrorMesg

Definition at line 560 of file error.c.

Referenced by Init_Exception(), name_err_mesg_equal(), and rb_name_err_mesg_new().

◆ rb_eArgError

VALUE rb_eArgError

Definition at line 549 of file error.c.

Referenced by argf_fileno(), argf_rewind(), argf_seek_m(), argf_set_encoding(), argf_set_pos(), argf_tell(), ary2safe_array_index(), ary_join_1(), ary_new(), ary_take_first_or_last(), big2str_alloc(), big2str_base_poweroftwo(), big2str_generic(), big_shift3(), BigDecimal_limit(), BigDecimal_mode(), BigDecimal_new(), BigMath_s_exp(), BigMath_s_log(), bsock_shutdown(), cbsubst_def_attr_aliases(), cbsubst_get_subst_arg(), cbsubst_table_setup(), check_autoload_required(), check_exec_env_i(), check_exec_fds(), check_exec_fds_1(), check_exec_options_i(), check_exec_redirect(), check_exec_redirect_fd(), check_funcall_respond_to(), check_rounding_mode(), copy_stream_fallback(), cParser_initialize(), create_dummy_encoding_for_tk_core(), cState_init_copy(), d_lite_initialize_copy(), d_lite_marshal_load(), d_lite_rshift(), d_lite_step(), d_new_by_frags(), date_s__parse_internal(), date_s__strptime_internal(), date_s_civil(), date_s_commercial(), date_s_ordinal(), date_strftime_internal(), datetime_s_civil(), datetime_s_commercial(), datetime_s_jd(), datetime_s_ordinal(), dir_s_chdir(), do_writeconv(), dt_new_by_frags(), dump_output(), DupPrivPKeyPtr(), each_attr_def(), econv_convert(), econv_insert_output(), econv_opts(), econv_primitive_convert(), enc_check_duplication(), encoding_table_get_name_core(), enum_chunk(), enum_drop(), enum_each_cons(), enum_each_cons_size(), enum_each_slice(), enum_each_slice_size(), enum_take(), enum_to_h_i(), enumerator_init(), enumerator_init_copy(), enumerator_ptr(), env_aset(), env_assoc(), env_delete(), env_fetch(), env_has_key(), errat_setter(), esignal_init(), etc_getgrgid(), etc_getgrnam(), etc_getpwnam(), etc_getpwuid(), extract_binmode(), extract_user_token(), file_inspect_join(), flatten(), foletypelib_initialize(), folevariant_initialize(), frame_get(), function_call(), gc_info_decode(), gc_stat_internal(), generator_init(), generator_init_copy(), generator_ptr(), get_hash(), GetPositiveInt(), GetPrivPKeyPtr(), GetVpValueWithPrec(), gzfile_fill(), gzfile_readpartial(), gzfile_s_open(), handle_interrupt_arg_check_i(), host_str(), init_addrinfo(), Init_Exception(), io_getpartial(), io_read(), io_reopen(), ip_invoke_with_position(), ip_is_slave_of_p(), ip_make_menu_embeddable_core(), ip_ruby_cmd(), ip_ruby_eval(), keyword_error(), lazy_drop(), lazy_drop_while(), lazy_flat_map(), lazy_initialize(), lazy_map(), lazy_reject(), lazy_select(), lazy_take(), lazy_take_while(), lexer_i(), lib_fromUTF8_core(), lib_set_system_encoding(), lib_toUTF8_core(), make_clock_result(), mSyslog_log(), must_be_ascii_compatible(), must_be_module(), nucomp_marshal_load(), num_step_scan_args(), nurat_marshal_load(), old_to_new(), open_key_args(), ossl_bn_initialize(), ossl_bn_to_s(), ossl_cipher_update(), ossl_pkcs12_s_create(), ossl_pkcs7_initialize(), ossl_pkey_new_from_data(), ossl_pkey_sign(), ossl_ssl_session_initialize(), ossl_sslctx_flush_sessions(), ossl_sslctx_set_ssl_version(), pack_unpack(), parse_keyword_arg_i(), parse_main(), parser_set_encode(), path2class(), path_initialize(), port_str(), prepare_getline_args(), proc_binding(), proc_new(), queue_pop_should_block(), r_object0(), r_symbol(), r_symlink(), racc_yyparse(), raise_method_missing(), rand_random(), random_load(), range_failed(), range_step(), range_step_size(), rb_add_method_cfunc(), rb_arg_error_new(), rb_ary_drop(), rb_ary_fill(), rb_ary_initialize(), rb_ary_sample(), rb_ary_take(), rb_ary_times(), rb_ary_to_h(), rb_attr(), rb_autoload(), rb_big2str1(), rb_big_mul_karatsuba(), rb_big_mul_toom3(), rb_block_arity(), rb_check_argv(), rb_cmperr(), rb_convert_to_integer(), rb_cstr_to_dbl(), rb_cstr_to_inum(), rb_declare_transcoder(), rb_default_home_dir(), rb_digest_class_s_digest(), rb_econv_append(), rb_econv_init_by_convpath(), rb_econv_prepare_options(), rb_enc_associate_index(), rb_enc_codelen(), rb_enc_codepoint_len(), rb_enc_cr_str_buf_cat(), rb_enc_find_index(), rb_enc_register(), rb_enc_set_default_external(), rb_enc_str_new_cstr(), rb_enc_vsprintf(), rb_execarg_addopt(), rb_f_at_exit(), rb_f_getenv(), rb_f_kill(), rb_f_test(), rb_file_expand_path_internal(), rb_file_join(), rb_fix2str(), rb_gzreader_read(), rb_gzreader_readpartial(), rb_hash_s_create(), rb_home_dir_of(), rb_include_module(), rb_integer_unpack(), rb_invalid_str(), rb_io_each_codepoint(), rb_io_each_line(), rb_io_extract_modeenc(), rb_io_fmode_modestr(), rb_io_initialize(), rb_io_modestr_fmode(), rb_io_oflags_modestr(), rb_io_readlines(), rb_io_reopen(), rb_io_s_popen(), rb_ioctl(), rb_mod_const_defined(), rb_mod_const_get(), rb_mod_refine(), rb_nkf_convert(), rb_path_to_class(), rb_prepend_module(), rb_reg_prepare_enc(), rb_reg_prepare_re(), rb_reg_preprocess_dregexp(), rb_reg_s_union(), rb_register_transcoder(), rb_set_safe_level(), rb_str2big_karatsuba(), rb_str2big_normal(), rb_str2big_poweroftwo(), rb_str_buf_cat(), rb_str_cat(), rb_str_crypt(), rb_str_format(), rb_str_justify(), rb_str_modify_expand(), rb_str_new_cstr(), rb_str_resize(), rb_str_split_m(), rb_str_times(), rb_str_to_dbl(), rb_str_to_i(), rb_string_value_cstr(), rb_struct_initialize_m(), rb_szqueue_initialize(), rb_szqueue_max_set(), rb_thread_s_handle_interrupt(), rb_throw_obj(), rb_waitpid(), rb_yield_splat(), readline_s_set_completion_proc(), recursive_join(), rsock_revlookup_flag(), ruby_sized_xrealloc2(), safe_setter(), send_internal(), set_eventloop_tick(), set_eventloop_weight(), set_max_block_time(), set_no_event_wait(), should_be_callable(), should_be_finalizable(), sig_trap(), sock_s_getnameinfo(), sock_s_unpack_sockaddr_in(), str_buf_cat(), str_compat_and_valid(), str_find_encindex(), str_new0(), str_to_encindex(), str_transcode0(), string_to_c_strict(), string_to_r_strict(), strio_each(), strio_read(), strio_readlines(), sym_call(), symbol2event_flag(), syslog_write(), tcl2rb_num_or_str(), time_fixoff(), time_gmtime(), time_localtime(), time_mdump(), time_overflow_p(), time_round(), time_strftime(), time_timespec(), timegmw(), timelocalw(), timew2timespec(), tk_conv_args(), tk_hash_kv(), tkstr_invalid_numstr(), tkstr_rescue_float(), tkstr_to_number(), too_short(), transcode_loop(), trap_handler(), trap_signm(), trnext(), unknown_keyword_error(), update_i(), utc_offset_arg(), utf8_to_uv(), validate_enc_binmode(), validate_integer_pack_format(), validate_utc_offset(), validate_vtm(), vm_backtrace_to_ary(), vm_call_opt_send(), vm_stat(), w_object(), xmalloc2_size(), yielder_init(), and yielder_ptr().

◆ rb_eEAGAIN

VALUE rb_eEAGAIN

Definition at line 40 of file error.c.

Referenced by Init_IO(), and set_syserr().

◆ rb_eEINPROGRESS

VALUE rb_eEINPROGRESS

Definition at line 42 of file error.c.

Referenced by Init_IO(), and set_syserr().

◆ rb_eEncCompatError

VALUE rb_eEncCompatError

◆ rb_eEncodingError

VALUE rb_eEncodingError

Definition at line 554 of file error.c.

Referenced by Init_Exception(), Init_transcode(), must_encindex(), and sym_check_asciionly().

◆ rb_eEWOULDBLOCK

VALUE rb_eEWOULDBLOCK

Definition at line 41 of file error.c.

Referenced by Init_IO(), and set_syserr().

◆ rb_eException

VALUE rb_eException

◆ rb_eFatal

VALUE rb_eFatal

◆ rb_eIndexError

VALUE rb_eIndexError

◆ rb_eInterrupt

VALUE rb_eInterrupt

◆ rb_eKeyError

VALUE rb_eKeyError

Definition at line 551 of file error.c.

Referenced by env_fetch(), Init_Exception(), rb_hash_fetch_m(), and rb_str_format().

◆ rb_eLoadError

VALUE rb_eLoadError

◆ rb_eNameError

VALUE rb_eNameError

◆ rb_eNOERROR

VALUE rb_eNOERROR
static

Definition at line 568 of file error.c.

Referenced by Init_syserr().

◆ rb_eNoMemError

VALUE rb_eNoMemError

◆ rb_eNoMethodError

VALUE rb_eNoMethodError

◆ rb_eNotImpError

VALUE rb_eNotImpError

◆ rb_eRangeError

VALUE rb_eRangeError

◆ rb_eRuntimeError

VALUE rb_eRuntimeError

Definition at line 547 of file error.c.

Referenced by ary2safe_array_index(), ary_new_dim(), bubblebabble_str_new(), callback(), check_dump_arg(), check_gid_switch(), check_load_arg(), check_uid_switch(), chunk_ii(), closed_dbm(), create_dummy_encoding_for_tk_core(), create_encoding_table_core(), emit(), enum_sort_by(), error_print(), ev_advise(), eval_string_with_cref(), fiber_t_alloc(), flatten(), fole_each(), fole_method_help(), fole_missing(), fole_query_interface(), fole_s_const_load(), fole_s_create_guid(), fole_s_show_help(), fole_type(), fole_typelib(), folevariant_ary_aset(), folevariant_s_array(), generic_to_value(), get_device_once(), get_digest_base_metadata(), get_locked_safe_array(), get_trace_arg(), GetDigestPtr(), hash_foreach_call(), hash_foreach_iter(), hexencode_str_new(), Init_cparse(), Init_Exception(), Init_ossl_bn(), Init_ossl_locks(), Init_pty(), Init_win32ole(), initialize(), int_to_ffi_type(), intern_str(), ip_allow_ruby_exit_p(), ip_allow_ruby_exit_set(), ip_create_console(), ip_create_console_core(), ip_create_slave(), ip_create_slave_core(), ip_eval_real(), ip_get_variable2_core(), ip_init(), ip_invoke_core(), ip_is_safe_p(), ip_make_menu_embeddable_core(), ip_make_safe(), ip_make_safe_core(), ip_rb_threadTkWaitCommand(), ip_rb_threadUpdateCommand(), ip_rb_threadVwaitCommand(), ip_rbTkWaitCommand(), ip_rbUpdateCommand(), ip_rbVwaitCommand(), ip_restart(), ip_ruby_cmd(), ip_ruby_eval(), ip_set_variable2_core(), ip_unset_variable2_core(), lib_do_one_event_core(), lib_get_reltype_name(), lib_restart(), lib_restart_core(), lib_split_tklist_core(), make_exception(), mod_using(), mSyslog_close(), mSyslog_open(), mSyslog_set_mask(), new_size(), no_new_key(), ole_create_dcom(), ole_initialize(), ole_invoke(), ole_set_safe_array(), ole_val2olevariantdata(), ole_val_ary2variant_ary(), ole_variant2val(), oleparam_ole_param_from_index(), opt_enc_index(), ossl_cipher_initialize(), ossl_digest_alloc(), permute0(), proc_options(), rb_alias_variable(), rb_ary_combination(), rb_ary_product(), rb_ary_set_len(), rb_ary_shuffle_bang(), rb_cont_call(), rb_coverage_result(), rb_digest_instance_method_unimpl(), rb_error_frozen(), rb_file_initialize(), rb_hash_rehash(), rb_provide_feature(), rb_reg_regsub(), rb_str_set_len(), rb_str_unlocktmp(), rb_thread_shield_waiting_dec(), rb_thread_shield_waiting_inc(), rb_threadptr_raise(), rb_tracearg_object(), rb_tracearg_raised_exception(), rb_tracearg_return_value(), rb_vm_cbase(), rb_vm_make_binding(), rcombinate0(), ripper_token2eventid(), rollback_ensure_stack(), rpermute0(), rscheck(), rsock_s_recvfrom(), ruby__sfvextra(), ruby__sfvwrite(), RUBY_ALIAS_FUNCTION(), set_arg0(), set_option_encoding_once(), setup_exception(), sort_by_cmp(), sort_by_i(), sort_reentered(), st_foreach_safe(), start_document(), str_gsub(), str_mod_check(), str_modifiable(), syslog_write(), tcl_stubs_check(), tcltkip_init_tk(), top_using(), transcode_restartable0(), typeinfo_from_ole(), unlock_safe_array(), val2variant_ptr(), value_to_generic(), vm_search_super_method(), and w_object().

◆ rb_eScriptError

VALUE rb_eScriptError

Definition at line 562 of file error.c.

Referenced by Init_Exception().

◆ rb_eSecurityError

VALUE rb_eSecurityError

◆ rb_eSignal

VALUE rb_eSignal

◆ rb_eStandardError

VALUE rb_eStandardError

◆ rb_eSyntaxError

VALUE rb_eSyntaxError

◆ rb_eSystemCallError

VALUE rb_eSystemCallError

◆ rb_eSystemExit

VALUE rb_eSystemExit

◆ rb_eTypeError

VALUE rb_eTypeError

Definition at line 548 of file error.c.

Referenced by addrinfo_initialize(), addrinfo_mload(), advice_arg_check(), alloc_event_hook(), asn1integer_to_num(), asn1time_to_time(), BigDecimal_load(), BigDecimal_mode(), BigDecimal_power(), check_econv(), check_match(), check_setter_id(), check_type_val2variant(), class2path(), class_init_copy_check(), class_or_module_required(), coerce_failed(), convert_type(), count_nodes(), count_objects(), count_objects_size(), count_tdata_objects(), cParser_initialize(), d_lite_marshal_load(), d_lite_minus(), d_lite_plus(), default_proc_arity_check(), divmodv(), do_coerce(), econv_init(), enc_inspect(), enum_to_h_i(), enum_zip(), enumerator_feed(), enumerator_init_copy(), ev_advise(), ev_on_event(), exec_recursive(), extract_user_token(), f_round_common(), fev_off_event(), fole_respond_to(), fole_s_const_load(), fole_s_show_help(), folemethod_initialize(), foleparam_initialize(), gc_info_decode(), gc_latest_gc_info(), gc_stat(), gc_stat_internal(), generator_initialize(), get_addrinfo(), get_array(), get_locked_safe_array(), get_new_timeval(), get_stat(), get_strpath(), get_timeval(), GetBNPtr(), GetVpValueWithPrec(), hash2named_arg(), init_copy(), Init_Exception(), io_needed(), iseq_build_from_ary_body(), iseq_check(), iseq_load(), lazy_zip(), long_toobig(), make_compile_option(), make_exception(), marshal_load(), match_check(), mSyslog_log(), must_not_be_anonymous(), must_respond_to(), not_encoding(), nucomp_coerce(), nucomp_real_check(), nucomp_s_convert(), num_exact(), num_init_copy(), num_members(), num_sadded(), num_step_scan_args(), num_to_asn1integer(), nurat_coerce(), nurat_int_check(), nurat_s_convert(), obj_to_asn1bool(), offset_to_sec(), ole_invoke(), ole_invoke2(), ossl_bn_coerce(), ossl_dh_new(), ossl_dsa_new(), ossl_rsa_new(), r_object0(), range_bsearch(), range_each(), range_loader(), range_max(), range_step(), rb_alias(), rb_ary_bsearch(), rb_ary_to_h(), rb_big_coerce(), rb_check_backtrace(), rb_check_convert_type(), rb_check_id(), rb_check_inheritable(), rb_check_safe_str(), rb_check_type(), rb_check_typeddata(), rb_class_inherited_p(), rb_class_initialize(), rb_class_superclass(), rb_const_set(), rb_convert_to_integer(), rb_convert_type(), rb_define_class(), rb_define_class_id_under(), rb_define_module(), rb_define_module_id_under(), rb_dlcfunc2ptr(), rb_dlptr2cptr(), rb_f_autoload(), rb_fiddle_ptr2cptr(), rb_Float(), rb_Hash(), rb_hash_set_default_proc(), rb_iseq_line_trace_specify(), rb_marshal_define_compat(), rb_method_call_with_block(), rb_method_entry_make(), rb_mod_const_defined(), rb_mod_const_get(), rb_mod_define_method(), rb_mod_ge(), rb_mod_modfunc(), rb_num2dbl(), rb_num2long(), rb_num2ulong_internal(), rb_obj_alloc(), rb_obj_clone(), rb_obj_dup(), rb_obj_encoding(), rb_obj_init_copy(), rb_path_to_class(), rb_reg_check(), rb_reg_initialize(), rb_set_errinfo(), rb_str_index_m(), rb_str_match(), rb_str_partition(), rb_str_rindex_m(), rb_str_rpartition(), rb_str_setter(), rb_struct_aset_id(), rb_struct_init_copy(), rb_struct_members(), rb_struct_s_members(), rb_thread_pending_interrupt_p(), rb_to_float(), rb_to_id(), rb_to_integer(), rb_undef(), rb_undefined_alloc(), rsock_io_socket_addrinfo(), rsock_s_recvfrom(), set_trace_func(), singleton_class_of(), sock_s_getnameinfo(), sockopt_bool(), sockopt_byte(), sockopt_int(), sockopt_ipv4_multicast_loop(), sockopt_ipv4_multicast_ttl(), sockopt_linger(), syserr_initialize(), take_items(), thread_add_trace_func(), time_mload(), time_plus(), time_timespec(), umethod_bind(), undumpable(), uscore_get(), using_module_recursive(), value_to_id(), vm_caller_setup_args(), vm_check_if_namespace(), vm_define_method(), vm_get_cvar_base(), vm_search_super_method(), vm_set_top_stack(), vm_stat(), w_extended(), w_long(), w_object(), w_symbol(), and wdivmod().

◆ rb_mErrno

VALUE rb_mErrno

Definition at line 567 of file error.c.

Referenced by Init_Exception(), path_unlink(), and set_syserr().

◆ REPORTBUG_MSG

const char REPORTBUG_MSG[]
static
Initial value:
=
"[NOTE]\n"
"You may have encountered a bug in the Ruby interpreter"
" or extension libraries.\n"
"Bug reports are welcome.\n"
""
"For details: http://www.ruby-lang.org/bugreport.html\n\n"

Definition at line 46 of file error.c.

Referenced by rb_async_bug_errno(), and report_bug().

◆ ruby_description

const char ruby_description[]

Definition at line 32 of file version.c.

Referenced by rb_async_bug_errno(), and report_bug().

◆ syserr_tbl

st_table* syserr_tbl
static

Definition at line 1228 of file error.c.

Referenced by get_syserr(), Init_Exception(), set_syserr(), and syserr_initialize().