Home
last modified time | relevance | path

Searched refs:rb_eSystemCallError (Results 1 – 9 of 9) sorted by relevance

/dports/lang/ruby26/ruby-2.6.9/
H A Derror.c891 VALUE rb_eSystemCallError; variable
1895 error = rb_define_class_under(rb_mErrno, name, rb_eSystemCallError); in set_syserr()
1958 if (klass == rb_eSystemCallError) { in syserr_initialize()
2021 if (!rb_obj_is_kind_of(exc, rb_eSystemCallError)) { in syserr_eqq()
2024 else if (self == rb_eSystemCallError) return Qtrue; in syserr_eqq()
2497 rb_eSystemCallError = rb_define_class("SystemCallError", rb_eStandardError); in Init_Exception()
2498 rb_define_method(rb_eSystemCallError, "initialize", syserr_initialize, -1); in Init_Exception()
2499 rb_define_method(rb_eSystemCallError, "errno", syserr_errno, 0); in Init_Exception()
2500 rb_define_singleton_method(rb_eSystemCallError, "===", syserr_eqq, 1); in Init_Exception()
H A Drandom.c1245 rb_exc_raise(rb_class_new_instance(1, &error, rb_eSystemCallError)); in domain_error()
H A Dfile.c2647 rb_exc_raise(rb_class_new_instance(2, e, rb_eSystemCallError)); in utime_failed()
H A Dio.c8266 rb_exc_raise(rb_class_new_instance(1, &error, rb_eSystemCallError)); in rb_io_initialize()
/dports/lang/ruby26/ruby-2.6.9/spec/ruby/optional/capi/
H A Dconstants_spec.rb240 @s.rb_eSystemCallError.should == SystemCallError
/dports/lang/ruby26/ruby-2.6.9/spec/ruby/optional/capi/ext/
H A Dconstants_spec.c322 return rb_eSystemCallError; in constants_spec_rb_eSystemCallError()
/dports/sysutils/watchman/watchman-4.5.0/ruby/ruby-watchman/ext/ruby-watchman/
H A Dwatchman.c668 errorClass = rb_eSystemCallError; in RubyWatchman_query()
/dports/sysutils/py-pywatchman/watchman-4.9.0/ruby/ruby-watchman/ext/ruby-watchman/
H A Dwatchman.c668 errorClass = rb_eSystemCallError;
/dports/lang/ruby26/ruby-2.6.9/include/ruby/
H A Druby.h2034 RUBY_EXTERN VALUE rb_eSystemCallError; variable