From adfc16dd3a051c7c53dbb607a138295c50d02747 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 27 Jun 2018 16:20:24 +0200 Subject: add upstream patches for PHP 7.3 and patch from https://github.com/bwoebi/php-uv/pull/60/files --- 2ba4d96379a826050d91b039775e9d1e148d5ef2.patch | 22 + 60.patch | 30 + 880d84cd838f334d88adb888f8a3b744194560d3.patch | 357 ++ PHPINFO | 7 + REFLECTION | 7507 ++++++++++++------------ fc685d1cb58746a8865fc4b86a38f90219de90ed.patch | 47 + php-pecl-uv.spec | 18 +- 7 files changed, 4242 insertions(+), 3746 deletions(-) create mode 100644 2ba4d96379a826050d91b039775e9d1e148d5ef2.patch create mode 100644 60.patch create mode 100644 880d84cd838f334d88adb888f8a3b744194560d3.patch create mode 100644 PHPINFO create mode 100644 fc685d1cb58746a8865fc4b86a38f90219de90ed.patch diff --git a/2ba4d96379a826050d91b039775e9d1e148d5ef2.patch b/2ba4d96379a826050d91b039775e9d1e148d5ef2.patch new file mode 100644 index 0000000..4ce967e --- /dev/null +++ b/2ba4d96379a826050d91b039775e9d1e148d5ef2.patch @@ -0,0 +1,22 @@ +From 2ba4d96379a826050d91b039775e9d1e148d5ef2 Mon Sep 17 00:00:00 2001 +From: Joel Wurtz +Date: Fri, 22 Dec 2017 21:56:25 +0100 +Subject: [PATCH] Remove dependency on PHP version for GC_ADDREF macro + +--- + php_uv.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/php_uv.c b/php_uv.c +index 564722c..12052b7 100644 +--- a/php_uv.c ++++ b/php_uv.c +@@ -44,7 +44,7 @@ ZEND_TSRMLS_CACHE_DEFINE() + + ZEND_DECLARE_MODULE_GLOBALS(uv); + +-#if PHP_VERSION_ID < 70300 ++#ifndef GC_ADDREF + #define GC_ADDREF(ref) ++GC_REFCOUNT(ref) + #endif + diff --git a/60.patch b/60.patch new file mode 100644 index 0000000..b4e0893 --- /dev/null +++ b/60.patch @@ -0,0 +1,30 @@ +From b1b5729f4da87117ce07cdf091b38225b296ae58 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Wed, 27 Jun 2018 16:14:08 +0200 +Subject: [PATCH] relax tests for 7.3 + +--- + tests/300-fs_close.phpt | 2 +- + tests/330-poll-fd.phpt | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/tests/300-fs_close.phpt b/tests/300-fs_close.phpt +index 1f85500..d21ccc7 100644 +--- a/tests/300-fs_close.phpt ++++ b/tests/300-fs_close.phpt +@@ -16,4 +16,4 @@ uv_fs_open(uv_default_loop(), FIXTURE_PATH, UV::O_RDONLY, 0, function($r){ + + uv_run(); + --EXPECTF-- +-Warning: uv_fs_close() expects parameter 2 to be resource, integer given in %s on line %d ++Warning: uv_fs_close() expects parameter 2 to be resource, in%s given in %s on line %d +diff --git a/tests/330-poll-fd.phpt b/tests/330-poll-fd.phpt +index ea2e3a2..3b80eec 100644 +--- a/tests/330-poll-fd.phpt ++++ b/tests/330-poll-fd.phpt +@@ -21,4 +21,4 @@ Warning: uv_poll_init(): invalid resource passed, this resource is not supported + + Warning: uv_poll_init(): uv_poll_init failed in %s on line %d + +-Warning: uv_poll_start() expects parameter 1 to be UVPoll, boolean given in %s on line %d ++Warning: uv_poll_start() expects parameter 1 to be UVPoll, boo%s given in %s on line %d diff --git a/880d84cd838f334d88adb888f8a3b744194560d3.patch b/880d84cd838f334d88adb888f8a3b744194560d3.patch new file mode 100644 index 0000000..8863fc2 --- /dev/null +++ b/880d84cd838f334d88adb888f8a3b744194560d3.patch @@ -0,0 +1,357 @@ +From 880d84cd838f334d88adb888f8a3b744194560d3 Mon Sep 17 00:00:00 2001 +From: Bob Weinand +Date: Mon, 30 Oct 2017 14:37:56 +0100 +Subject: [PATCH] PHP 7.3 compatibility + +--- + php_uv.c | 78 ++++++++++++++++++++++++++++++++++------------------------------ + 1 file changed, 41 insertions(+), 37 deletions(-) + +diff --git a/php_uv.c b/php_uv.c +index df41fc9..564722c 100644 +--- a/php_uv.c ++++ b/php_uv.c +@@ -44,6 +44,10 @@ ZEND_TSRMLS_CACHE_DEFINE() + + ZEND_DECLARE_MODULE_GLOBALS(uv); + ++#if PHP_VERSION_ID < 70300 ++ #define GC_ADDREF(ref) ++GC_REFCOUNT(ref) ++#endif ++ + #if PHP_VERSION_ID < 70100 + #define uv_zend_wrong_parameter_class_error(throw, ...) zend_wrong_paramer_class_error(__VA_ARGS__) + #elif PHP_VERSION_ID < 70200 +@@ -498,7 +502,7 @@ static php_uv_cb_t* php_uv_cb_init_dynamic(php_uv_t *uv, zend_fcall_info *fci, z + if (ZEND_FCI_INITIALIZED(*fci)) { + Z_TRY_ADDREF(cb->fci.function_name); + if (fci->object) { +- GC_REFCOUNT(cb->fci.object)++; ++ GC_ADDREF(cb->fci.object); + } + } + +@@ -528,7 +532,7 @@ static void php_uv_cb_init(php_uv_cb_t **result, php_uv_t *uv, zend_fcall_info * + if (ZEND_FCI_INITIALIZED(*fci)) { + Z_TRY_ADDREF(cb->fci.function_name); + if (fci->object) { +- GC_REFCOUNT(cb->fci.object)++; ++ GC_ADDREF(cb->fci.object); + } + } + +@@ -1250,7 +1254,7 @@ void static destruct_uv(zend_object *obj) + + if (!php_uv_closeable_type(uv)) { + if (uv_cancel(&uv->uv.req) == UV_EBUSY) { +- ++GC_REFCOUNT(obj); ++ GC_ADDREF(obj); + } + clean_uv_handle(uv); + } else { +@@ -1546,7 +1550,7 @@ static void php_uv_listen_cb(uv_stream_t* server, int status) + TSRMLS_FETCH_FROM_CTX(uv->thread_ctx); + + ZVAL_OBJ(¶ms[0], &uv->std); +- ++GC_REFCOUNT(&uv->std); ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_listen_cb, uv); + ZVAL_LONG(¶ms[1], status); + +@@ -1589,7 +1593,7 @@ static void php_uv_read_cb(uv_stream_t* handle, ssize_t nread, const uv_buf_t* b + + ZVAL_OBJ(¶ms[0], &uv->std); + if (nread > 0) { // uv disables itself when it reaches EOF/error +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_read_cb, uv); + } + +@@ -1626,7 +1630,7 @@ static void php_uv_read2_cb(uv_pipe_t* handle, ssize_t nread, uv_buf_t buf, uv_h + + ZVAL_OBJ(¶ms[0], &uv->std); + if (nread > 0) { // uv disables itself when it reaches EOF/error +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_read2_cb, uv); + } + ZVAL_LONG(¶ms[1], nread); +@@ -1663,7 +1667,7 @@ static void php_uv_prepare_cb(uv_prepare_t* handle) + PHP_UV_DEBUG_PRINT("prepare_cb\n"); + + ZVAL_OBJ(¶ms[0], &uv->std); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_prepare_cb, uv); + + php_uv_do_callback2(&retval, uv, params, 1, PHP_UV_PREPARE_CB TSRMLS_CC); +@@ -1684,7 +1688,7 @@ static void php_uv_check_cb(uv_check_t* handle) + PHP_UV_DEBUG_PRINT("check_cb\n"); + + ZVAL_OBJ(¶ms[0], &uv->std); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_check_cb, uv); + + php_uv_do_callback2(&retval, uv, params, 1, PHP_UV_CHECK_CB TSRMLS_CC); +@@ -1706,7 +1710,7 @@ static void php_uv_async_cb(uv_async_t* handle) + PHP_UV_DEBUG_PRINT("async_cb\n"); + + ZVAL_OBJ(¶ms[0], &uv->std); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_async_cb, uv); + + php_uv_do_callback2(&retval, uv, params, 1, PHP_UV_ASYNC_CB TSRMLS_CC); +@@ -1909,7 +1913,7 @@ static void php_uv_fs_event_cb(uv_fs_event_t* req, const char* filename, int eve + PHP_UV_DEBUG_PRINT("fs_event_cb: %s, %d\n", filename, status); + + ZVAL_OBJ(¶ms[0], &uv->std); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_fs_event_cb, uv); + if (filename) { + ZVAL_STRING(¶ms[1], filename); +@@ -1964,7 +1968,7 @@ static void php_uv_fs_poll_cb(uv_fs_poll_t* handle, int status, const uv_stat_t* + TSRMLS_FETCH_FROM_CTX(uv->thread_ctx); + + ZVAL_OBJ(¶ms[0], &uv->std); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_fs_poll_cb, uv); + ZVAL_LONG(¶ms[1], status); + params[2] = php_uv_stat_to_zval(prev); +@@ -1990,7 +1994,7 @@ static void php_uv_poll_cb(uv_poll_t* handle, int status, int events) + + ZVAL_OBJ(¶ms[0], &uv->std); + if (status == 0) { +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + } + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_poll_cb, uv); + ZVAL_LONG(¶ms[1], status); +@@ -2022,7 +2026,7 @@ static void php_uv_udp_recv_cb(uv_udp_t* handle, ssize_t nread, const uv_buf_t* + TSRMLS_FETCH_FROM_CTX(uv->thread_ctx); + + ZVAL_OBJ(¶ms[0], &uv->std); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_udp_recv_cb, uv); + ZVAL_LONG(¶ms[1], nread); + ZVAL_STRINGL(¶ms[2], buf->base, nread); +@@ -2081,7 +2085,7 @@ static void php_uv_close(php_uv_t *uv) { + ZEND_ASSERT(!uv_is_closing(&uv->uv.handle)); + + if (!php_uv_is_handle_referenced(uv)) { +- ++GC_REFCOUNT(&uv->std); ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(php_uv_close, uv); + } + +@@ -2099,7 +2103,7 @@ static void php_uv_idle_cb(uv_timer_t *handle) + TSRMLS_FETCH_FROM_CTX(uv->thread_ctx); + + ZVAL_OBJ(¶ms[0], &uv->std); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(php_uv_idle_cb, uv); + + php_uv_do_callback2(&retval, uv, params, 1, PHP_UV_IDLE_CB TSRMLS_CC); +@@ -2167,7 +2171,7 @@ static void php_uv_timer_cb(uv_timer_t *handle) + ZVAL_OBJ(¶ms[0], &uv->std); + + if (handle->repeat) { +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(php_uv_timer_cb, uv); + } + +@@ -2187,7 +2191,7 @@ static void php_uv_signal_cb(uv_signal_t *handle, int sig_num) + TSRMLS_FETCH_FROM_CTX(uv->thread_ctx); + + ZVAL_OBJ(¶ms[0], &uv->std); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(php_uv_signal_cb, uv); + ZVAL_LONG(¶ms[1], sig_num); + +@@ -2347,7 +2351,7 @@ static void php_uv_udp_send(int type, INTERNAL_FUNCTION_PARAMETERS) + Z_PARAM_FUNC_EX(fci, fcc, 1, 0) + ZEND_PARSE_PARAMETERS_END(); + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_udp_send, uv); + + PHP_UV_INIT_SEND_REQ(w, uv, data->val, data->len); +@@ -2376,7 +2380,7 @@ static void php_uv_tcp_connect(enum php_uv_socket_type type, INTERNAL_FUNCTION_P + Z_PARAM_FUNC_EX(fci, fcc, 1, 0) + ZEND_PARSE_PARAMETERS_END(); + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_tcp_connect, uv); + + PHP_UV_INIT_CONNECT(req, uv) +@@ -3499,7 +3503,7 @@ PHP_FUNCTION(uv_signal_start) + RETURN_FALSE; + } + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_signal_start, uv); + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_SIGNAL_CB); +@@ -3613,7 +3617,7 @@ PHP_FUNCTION(uv_write) + php_uv_free_write_req(w); + php_error_docref(NULL, E_WARNING, "write failed"); + } else { +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_write, uv); + } + } +@@ -3646,7 +3650,7 @@ PHP_FUNCTION(uv_write2) + php_uv_free_write_req(w); + php_error_docref(NULL, E_ERROR, "write2 failed"); + } else { +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_write2, uv); + } + } +@@ -3714,7 +3718,7 @@ PHP_FUNCTION(uv_shutdown) + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_SHUTDOWN_CB); + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_shutdown, uv); + shutdown = emalloc(sizeof(uv_shutdown_t)); + shutdown->data = uv; +@@ -3777,7 +3781,7 @@ PHP_FUNCTION(uv_read_start) + return; + } + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_read_start, uv); + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_READ_CB); +@@ -3810,7 +3814,7 @@ PHP_FUNCTION(uv_read2_start) + Z_PARAM_FUNC(fci, fcc) + ZEND_PARSE_PARAMETERS_END(); + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_read2_start, uv); + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_READ2_CB); +@@ -3902,7 +3906,7 @@ PHP_FUNCTION(uv_listen) + Z_PARAM_FUNC(fci, fcc) + ZEND_PARSE_PARAMETERS_END(); + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_listen, uv); + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_LISTEN_CB); + +@@ -3986,7 +3990,7 @@ PHP_FUNCTION(uv_timer_start) + RETURN_FALSE; + } + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_timer_start, uv); + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_TIMER_CB); + +@@ -4035,7 +4039,7 @@ PHP_FUNCTION(uv_timer_again) + RETURN_FALSE; + } + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_timer_again, uv); + + uv_timer_again(&uv->uv.timer); +@@ -4114,7 +4118,7 @@ PHP_FUNCTION(uv_idle_start) + RETURN_FALSE; + } + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_idle_start, uv); + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_IDLE_CB); +@@ -4232,7 +4236,7 @@ PHP_FUNCTION(uv_tcp_open) + PHP_FUNCTION(uv_default_loop) + { + php_uv_loop_t *loop = php_uv_default_loop(); +- ++GC_REFCOUNT(&loop->std); ++ GC_ADDREF(&loop->std); + RETURN_OBJ(&loop->std); + } + /* }}} */ +@@ -4309,7 +4313,7 @@ PHP_FUNCTION(uv_udp_recv_start) + RETURN_FALSE; + } + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_udp_recv_start, uv); + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_RECV_CB); +@@ -4631,7 +4635,7 @@ PHP_FUNCTION(uv_pipe_connect) + Z_PARAM_FUNC(fci, fcc) + ZEND_PARSE_PARAMETERS_END(); + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_pipe_connect, uv); + + req = (uv_connect_t *) emalloc(sizeof(uv_connect_t)); +@@ -5093,7 +5097,7 @@ PHP_FUNCTION(uv_spawn) + RETVAL_LONG(ret); + } else { + php_uv_cb_init(&cb, proc, &fci, &fcc, PHP_UV_PROC_CLOSE_CB); +- ++GC_REFCOUNT(&proc->std); ++ GC_ADDREF(&proc->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_spawn, proc); + RETVAL_OBJ(&proc->std); + } +@@ -5344,7 +5348,7 @@ PHP_FUNCTION(uv_prepare_start) + RETURN_FALSE; + } + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_prepare_start, uv); + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_PREPARE_CB); +@@ -5421,7 +5425,7 @@ PHP_FUNCTION(uv_check_start) + RETURN_FALSE; + } + +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_check_start, uv); + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_CHECK_CB); +@@ -5993,7 +5997,7 @@ PHP_FUNCTION(uv_poll_start) + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_POLL_CB); + if (!uv_is_active(&uv->uv.handle)) { + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_poll_start, uv); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + } + + error = uv_poll_start(&uv->uv.poll, events, php_uv_poll_cb); +@@ -6064,7 +6068,7 @@ PHP_FUNCTION(uv_fs_poll_start) + ZEND_PARSE_PARAMETERS_END(); + + php_uv_cb_init(&cb, uv, &fci, &fcc, PHP_UV_FS_POLL_CB); +- GC_REFCOUNT(&uv->std)++; ++ GC_ADDREF(&uv->std); + PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(uv_fs_poll_start, uv); + + error = uv_fs_poll_start(&uv->uv.fs_poll, php_uv_fs_poll_cb, (const char*)path->val, interval); diff --git a/PHPINFO b/PHPINFO new file mode 100644 index 0000000..4c58e4c --- /dev/null +++ b/PHPINFO @@ -0,0 +1,7 @@ + +uv +PHP libuv Extension + +libuv Support => enabled +Version => 0.2.2 +libuv Version => 1.14 diff --git a/REFLECTION b/REFLECTION index 37de139..8336eb1 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #147 uv version 0.2.2 ] { +Extension [ extension #160 uv version 0.2.2 ] { - Functions { Function [ function uv_update_time ] { @@ -975,203 +975,204 @@ Extension [ extension #147 uv version 0.2.2 ] { - Classes [25] { Class [ class UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -1189,203 +1190,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVTcp extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -1403,203 +1405,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVUdp extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -1617,203 +1620,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVPipe extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -1831,203 +1835,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVIdle extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -2045,203 +2050,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVTimer extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -2259,203 +2265,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVAsync extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -2473,203 +2480,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVStream extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -2687,203 +2695,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVAddrinfo extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -2901,203 +2910,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVProcess extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -3115,203 +3125,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVPrepare extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -3329,203 +3340,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVCheck extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -3543,203 +3555,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVWork extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -3757,203 +3770,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVFs extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -3971,203 +3985,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVFsEvent extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -4185,203 +4200,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVTty extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -4399,203 +4415,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVFSPoll extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -4613,203 +4630,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVPoll extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { @@ -4827,203 +4845,204 @@ Extension [ extension #147 uv version 0.2.2 ] { Class [ final class UVSignal extends UV ] { - - Constants [196] { - Constant [ integer RUN_DEFAULT ] { 0 } - Constant [ integer RUN_ONCE ] { 1 } - Constant [ integer RUN_NOWAIT ] { 2 } - Constant [ integer CHANGE ] { 2 } - Constant [ integer RENAME ] { 1 } - Constant [ integer READABLE ] { 1 } - Constant [ integer WRITABLE ] { 2 } - Constant [ integer O_RDONLY ] { 0 } - Constant [ integer O_WRONLY ] { 1 } - Constant [ integer O_RDWR ] { 2 } - Constant [ integer O_CREAT ] { 64 } - Constant [ integer O_EXCL ] { 128 } - Constant [ integer O_TRUNC ] { 512 } - Constant [ integer O_APPEND ] { 1024 } - Constant [ integer S_IFDIR ] { 16384 } - Constant [ integer S_IFREG ] { 32768 } - Constant [ integer O_NOCTTY ] { 256 } - Constant [ integer S_IRWXU ] { 448 } - Constant [ integer S_IRUSR ] { 256 } - Constant [ integer S_IWUSR ] { 128 } - Constant [ integer S_IXUSR ] { 64 } - Constant [ integer S_IRWXG ] { 56 } - Constant [ integer S_IRGRP ] { 32 } - Constant [ integer S_IWGRP ] { 16 } - Constant [ integer S_IXGRP ] { 8 } - Constant [ integer S_IRWXO ] { 7 } - Constant [ integer S_IROTH ] { 4 } - Constant [ integer S_IWOTH ] { 2 } - Constant [ integer S_IXOTH ] { 1 } - Constant [ integer SIG_IGN ] { 1 } - Constant [ integer SIG_DFL ] { 0 } - Constant [ integer SIG_ERR ] { -1 } - Constant [ integer SIGHUP ] { 1 } - Constant [ integer SIGINT ] { 2 } - Constant [ integer SIGQUIT ] { 3 } - Constant [ integer SIGILL ] { 4 } - Constant [ integer SIGTRAP ] { 5 } - Constant [ integer SIGABRT ] { 6 } - Constant [ integer SIGIOT ] { 6 } - Constant [ integer SIGBUS ] { 7 } - Constant [ integer SIGFPE ] { 8 } - Constant [ integer SIGKILL ] { 9 } - Constant [ integer SIGUSR1 ] { 10 } - Constant [ integer SIGSEGV ] { 11 } - Constant [ integer SIGUSR2 ] { 12 } - Constant [ integer SIGPIPE ] { 13 } - Constant [ integer SIGALRM ] { 14 } - Constant [ integer SIGTERM ] { 15 } - Constant [ integer SIGSTKFLT ] { 16 } - Constant [ integer SIGCLD ] { 17 } - Constant [ integer SIGCHLD ] { 17 } - Constant [ integer SIGCONT ] { 18 } - Constant [ integer SIGSTOP ] { 19 } - Constant [ integer SIGTSTP ] { 20 } - Constant [ integer SIGTTIN ] { 21 } - Constant [ integer SIGTTOU ] { 22 } - Constant [ integer SIGURG ] { 23 } - Constant [ integer SIGXCPU ] { 24 } - Constant [ integer SIGXFSZ ] { 25 } - Constant [ integer SIGVTALRM ] { 26 } - Constant [ integer SIGPROF ] { 27 } - Constant [ integer SIGWINCH ] { 28 } - Constant [ integer SIGPOLL ] { 29 } - Constant [ integer SIGIO ] { 29 } - Constant [ integer SIGPWR ] { 30 } - Constant [ integer SIGSYS ] { 31 } - Constant [ integer SIGBABY ] { 31 } - Constant [ integer AF_INET ] { 2 } - Constant [ integer AF_INET6 ] { 10 } - Constant [ integer AF_UNSPEC ] { 0 } - Constant [ integer LEAVE_GROUP ] { 0 } - Constant [ integer JOIN_GROUP ] { 1 } - Constant [ integer IS_UV_TCP ] { 0 } - Constant [ integer IS_UV_UDP ] { 1 } - Constant [ integer IS_UV_PIPE ] { 2 } - Constant [ integer IS_UV_IDLE ] { 3 } - Constant [ integer IS_UV_TIMER ] { 4 } - Constant [ integer IS_UV_ASYNC ] { 5 } - Constant [ integer IS_UV_LOOP ] { 6 } - Constant [ integer IS_UV_HANDLE ] { 7 } - Constant [ integer IS_UV_STREAM ] { 8 } - Constant [ integer IS_UV_ADDRINFO ] { 9 } - Constant [ integer IS_UV_PROCESS ] { 10 } - Constant [ integer IS_UV_PREPARE ] { 11 } - Constant [ integer IS_UV_CHECK ] { 12 } - Constant [ integer IS_UV_WORK ] { 13 } - Constant [ integer IS_UV_FS ] { 14 } - Constant [ integer IS_UV_FS_EVENT ] { 15 } - Constant [ integer IS_UV_TTY ] { 16 } - Constant [ integer IS_UV_FS_POLL ] { 17 } - Constant [ integer IS_UV_POLL ] { 18 } - Constant [ integer UNKNOWN_HANDLE ] { 0 } - Constant [ integer FILE ] { 17 } - Constant [ integer ASYNC ] { 1 } - Constant [ integer CHECK ] { 2 } - Constant [ integer FS_EVENT ] { 3 } - Constant [ integer FS_POLL ] { 4 } - Constant [ integer HANDLE ] { 5 } - Constant [ integer IDLE ] { 6 } - Constant [ integer NAMED_PIPE ] { 7 } - Constant [ integer POLL ] { 8 } - Constant [ integer PREPARE ] { 9 } - Constant [ integer PROCESS ] { 10 } - Constant [ integer STREAM ] { 11 } - Constant [ integer TCP ] { 12 } - Constant [ integer TIMER ] { 13 } - Constant [ integer TTY ] { 14 } - Constant [ integer UDP ] { 15 } - Constant [ integer SIGNAL ] { 16 } - Constant [ integer HANDLE_TYPE_MAX ] { 18 } - Constant [ integer IGNORE ] { 0 } - Constant [ integer CREATE_PIPE ] { 1 } - Constant [ integer INHERIT_FD ] { 2 } - Constant [ integer INHERIT_STREAM ] { 4 } - Constant [ integer READABLE_PIPE ] { 16 } - Constant [ integer WRITABLE_PIPE ] { 32 } - Constant [ integer PROCESS_SETUID ] { 1 } - Constant [ integer PROCESS_SETGID ] { 2 } - Constant [ integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } - Constant [ integer PROCESS_DETACHED ] { 8 } - Constant [ integer E2BIG ] { -7 } - Constant [ integer EACCES ] { -13 } - Constant [ integer EADDRINUSE ] { -98 } - Constant [ integer EADDRNOTAVAIL ] { -99 } - Constant [ integer EAFNOSUPPORT ] { -97 } - Constant [ integer EAGAIN ] { -11 } - Constant [ integer EAI_ADDRFAMILY ] { -3000 } - Constant [ integer EAI_AGAIN ] { -3001 } - Constant [ integer EAI_BADFLAGS ] { -3002 } - Constant [ integer EAI_BADHINTS ] { -3013 } - Constant [ integer EAI_CANCELED ] { -3003 } - Constant [ integer EAI_FAIL ] { -3004 } - Constant [ integer EAI_FAMILY ] { -3005 } - Constant [ integer EAI_MEMORY ] { -3006 } - Constant [ integer EAI_NODATA ] { -3007 } - Constant [ integer EAI_NONAME ] { -3008 } - Constant [ integer EAI_OVERFLOW ] { -3009 } - Constant [ integer EAI_PROTOCOL ] { -3014 } - Constant [ integer EAI_SERVICE ] { -3010 } - Constant [ integer EAI_SOCKTYPE ] { -3011 } - Constant [ integer EALREADY ] { -114 } - Constant [ integer EBADF ] { -9 } - Constant [ integer EBUSY ] { -16 } - Constant [ integer ECANCELED ] { -125 } - Constant [ integer ECHARSET ] { -4080 } - Constant [ integer ECONNABORTED ] { -103 } - Constant [ integer ECONNREFUSED ] { -111 } - Constant [ integer ECONNRESET ] { -104 } - Constant [ integer EDESTADDRREQ ] { -89 } - Constant [ integer EEXIST ] { -17 } - Constant [ integer EFAULT ] { -14 } - Constant [ integer EFBIG ] { -27 } - Constant [ integer EHOSTUNREACH ] { -113 } - Constant [ integer EINTR ] { -4 } - Constant [ integer EINVAL ] { -22 } - Constant [ integer EIO ] { -5 } - Constant [ integer EISCONN ] { -106 } - Constant [ integer EISDIR ] { -21 } - Constant [ integer ELOOP ] { -40 } - Constant [ integer EMFILE ] { -24 } - Constant [ integer EMSGSIZE ] { -90 } - Constant [ integer ENAMETOOLONG ] { -36 } - Constant [ integer ENETDOWN ] { -100 } - Constant [ integer ENETUNREACH ] { -101 } - Constant [ integer ENFILE ] { -23 } - Constant [ integer ENOBUFS ] { -105 } - Constant [ integer ENODEV ] { -19 } - Constant [ integer ENOENT ] { -2 } - Constant [ integer ENOMEM ] { -12 } - Constant [ integer ENONET ] { -64 } - Constant [ integer ENOPROTOOPT ] { -92 } - Constant [ integer ENOSPC ] { -28 } - Constant [ integer ENOSYS ] { -38 } - Constant [ integer ENOTCONN ] { -107 } - Constant [ integer ENOTDIR ] { -20 } - Constant [ integer ENOTEMPTY ] { -39 } - Constant [ integer ENOTSOCK ] { -88 } - Constant [ integer ENOTSUP ] { -95 } - Constant [ integer EPERM ] { -1 } - Constant [ integer EPIPE ] { -32 } - Constant [ integer EPROTO ] { -71 } - Constant [ integer EPROTONOSUPPORT ] { -93 } - Constant [ integer EPROTOTYPE ] { -91 } - Constant [ integer ERANGE ] { -34 } - Constant [ integer EROFS ] { -30 } - Constant [ integer ESHUTDOWN ] { -108 } - Constant [ integer ESPIPE ] { -29 } - Constant [ integer ESRCH ] { -3 } - Constant [ integer ETIMEDOUT ] { -110 } - Constant [ integer ETXTBSY ] { -26 } - Constant [ integer EXDEV ] { -18 } - Constant [ integer UNKNOWN ] { -4094 } - Constant [ integer EOF ] { -4095 } - Constant [ integer ENXIO ] { -6 } - Constant [ integer EMLINK ] { -31 } - Constant [ integer EHOSTDOWN ] { -112 } + - Constants [197] { + Constant [ public integer RUN_DEFAULT ] { 0 } + Constant [ public integer RUN_ONCE ] { 1 } + Constant [ public integer RUN_NOWAIT ] { 2 } + Constant [ public integer CHANGE ] { 2 } + Constant [ public integer RENAME ] { 1 } + Constant [ public integer READABLE ] { 1 } + Constant [ public integer WRITABLE ] { 2 } + Constant [ public integer O_RDONLY ] { 0 } + Constant [ public integer O_WRONLY ] { 1 } + Constant [ public integer O_RDWR ] { 2 } + Constant [ public integer O_CREAT ] { 64 } + Constant [ public integer O_EXCL ] { 128 } + Constant [ public integer O_TRUNC ] { 512 } + Constant [ public integer O_APPEND ] { 1024 } + Constant [ public integer S_IFDIR ] { 16384 } + Constant [ public integer S_IFREG ] { 32768 } + Constant [ public integer O_NOCTTY ] { 256 } + Constant [ public integer S_IRWXU ] { 448 } + Constant [ public integer S_IRUSR ] { 256 } + Constant [ public integer S_IWUSR ] { 128 } + Constant [ public integer S_IXUSR ] { 64 } + Constant [ public integer S_IRWXG ] { 56 } + Constant [ public integer S_IRGRP ] { 32 } + Constant [ public integer S_IWGRP ] { 16 } + Constant [ public integer S_IXGRP ] { 8 } + Constant [ public integer S_IRWXO ] { 7 } + Constant [ public integer S_IROTH ] { 4 } + Constant [ public integer S_IWOTH ] { 2 } + Constant [ public integer S_IXOTH ] { 1 } + Constant [ public integer SIG_IGN ] { 1 } + Constant [ public integer SIG_DFL ] { 0 } + Constant [ public integer SIG_ERR ] { -1 } + Constant [ public integer SIGHUP ] { 1 } + Constant [ public integer SIGINT ] { 2 } + Constant [ public integer SIGQUIT ] { 3 } + Constant [ public integer SIGILL ] { 4 } + Constant [ public integer SIGTRAP ] { 5 } + Constant [ public integer SIGABRT ] { 6 } + Constant [ public integer SIGIOT ] { 6 } + Constant [ public integer SIGBUS ] { 7 } + Constant [ public integer SIGFPE ] { 8 } + Constant [ public integer SIGKILL ] { 9 } + Constant [ public integer SIGUSR1 ] { 10 } + Constant [ public integer SIGSEGV ] { 11 } + Constant [ public integer SIGUSR2 ] { 12 } + Constant [ public integer SIGPIPE ] { 13 } + Constant [ public integer SIGALRM ] { 14 } + Constant [ public integer SIGTERM ] { 15 } + Constant [ public integer SIGSTKFLT ] { 16 } + Constant [ public integer SIGCLD ] { 17 } + Constant [ public integer SIGCHLD ] { 17 } + Constant [ public integer SIGCONT ] { 18 } + Constant [ public integer SIGSTOP ] { 19 } + Constant [ public integer SIGTSTP ] { 20 } + Constant [ public integer SIGTTIN ] { 21 } + Constant [ public integer SIGTTOU ] { 22 } + Constant [ public integer SIGURG ] { 23 } + Constant [ public integer SIGXCPU ] { 24 } + Constant [ public integer SIGXFSZ ] { 25 } + Constant [ public integer SIGVTALRM ] { 26 } + Constant [ public integer SIGPROF ] { 27 } + Constant [ public integer SIGWINCH ] { 28 } + Constant [ public integer SIGPOLL ] { 29 } + Constant [ public integer SIGIO ] { 29 } + Constant [ public integer SIGPWR ] { 30 } + Constant [ public integer SIGSYS ] { 31 } + Constant [ public integer SIGBABY ] { 31 } + Constant [ public integer AF_INET ] { 2 } + Constant [ public integer AF_INET6 ] { 10 } + Constant [ public integer AF_UNSPEC ] { 0 } + Constant [ public integer LEAVE_GROUP ] { 0 } + Constant [ public integer JOIN_GROUP ] { 1 } + Constant [ public integer IS_UV_TCP ] { 0 } + Constant [ public integer IS_UV_UDP ] { 1 } + Constant [ public integer IS_UV_PIPE ] { 2 } + Constant [ public integer IS_UV_IDLE ] { 3 } + Constant [ public integer IS_UV_TIMER ] { 4 } + Constant [ public integer IS_UV_ASYNC ] { 5 } + Constant [ public integer IS_UV_LOOP ] { 6 } + Constant [ public integer IS_UV_HANDLE ] { 7 } + Constant [ public integer IS_UV_STREAM ] { 8 } + Constant [ public integer IS_UV_ADDRINFO ] { 9 } + Constant [ public integer IS_UV_PROCESS ] { 10 } + Constant [ public integer IS_UV_PREPARE ] { 11 } + Constant [ public integer IS_UV_CHECK ] { 12 } + Constant [ public integer IS_UV_WORK ] { 13 } + Constant [ public integer IS_UV_FS ] { 14 } + Constant [ public integer IS_UV_FS_EVENT ] { 15 } + Constant [ public integer IS_UV_TTY ] { 16 } + Constant [ public integer IS_UV_FS_POLL ] { 17 } + Constant [ public integer IS_UV_POLL ] { 18 } + Constant [ public integer UNKNOWN_HANDLE ] { 0 } + Constant [ public integer FILE ] { 17 } + Constant [ public integer ASYNC ] { 1 } + Constant [ public integer CHECK ] { 2 } + Constant [ public integer FS_EVENT ] { 3 } + Constant [ public integer FS_POLL ] { 4 } + Constant [ public integer HANDLE ] { 5 } + Constant [ public integer IDLE ] { 6 } + Constant [ public integer NAMED_PIPE ] { 7 } + Constant [ public integer POLL ] { 8 } + Constant [ public integer PREPARE ] { 9 } + Constant [ public integer PROCESS ] { 10 } + Constant [ public integer STREAM ] { 11 } + Constant [ public integer TCP ] { 12 } + Constant [ public integer TIMER ] { 13 } + Constant [ public integer TTY ] { 14 } + Constant [ public integer UDP ] { 15 } + Constant [ public integer SIGNAL ] { 16 } + Constant [ public integer HANDLE_TYPE_MAX ] { 18 } + Constant [ public integer IGNORE ] { 0 } + Constant [ public integer CREATE_PIPE ] { 1 } + Constant [ public integer INHERIT_FD ] { 2 } + Constant [ public integer INHERIT_STREAM ] { 4 } + Constant [ public integer READABLE_PIPE ] { 16 } + Constant [ public integer WRITABLE_PIPE ] { 32 } + Constant [ public integer PROCESS_SETUID ] { 1 } + Constant [ public integer PROCESS_SETGID ] { 2 } + Constant [ public integer PROCESS_WINDOWS_VERBATIM_ARGUMENTS ] { 4 } + Constant [ public integer PROCESS_DETACHED ] { 8 } + Constant [ public integer E2BIG ] { -7 } + Constant [ public integer EACCES ] { -13 } + Constant [ public integer EADDRINUSE ] { -98 } + Constant [ public integer EADDRNOTAVAIL ] { -99 } + Constant [ public integer EAFNOSUPPORT ] { -97 } + Constant [ public integer EAGAIN ] { -11 } + Constant [ public integer EAI_ADDRFAMILY ] { -3000 } + Constant [ public integer EAI_AGAIN ] { -3001 } + Constant [ public integer EAI_BADFLAGS ] { -3002 } + Constant [ public integer EAI_BADHINTS ] { -3013 } + Constant [ public integer EAI_CANCELED ] { -3003 } + Constant [ public integer EAI_FAIL ] { -3004 } + Constant [ public integer EAI_FAMILY ] { -3005 } + Constant [ public integer EAI_MEMORY ] { -3006 } + Constant [ public integer EAI_NODATA ] { -3007 } + Constant [ public integer EAI_NONAME ] { -3008 } + Constant [ public integer EAI_OVERFLOW ] { -3009 } + Constant [ public integer EAI_PROTOCOL ] { -3014 } + Constant [ public integer EAI_SERVICE ] { -3010 } + Constant [ public integer EAI_SOCKTYPE ] { -3011 } + Constant [ public integer EALREADY ] { -114 } + Constant [ public integer EBADF ] { -9 } + Constant [ public integer EBUSY ] { -16 } + Constant [ public integer ECANCELED ] { -125 } + Constant [ public integer ECHARSET ] { -4080 } + Constant [ public integer ECONNABORTED ] { -103 } + Constant [ public integer ECONNREFUSED ] { -111 } + Constant [ public integer ECONNRESET ] { -104 } + Constant [ public integer EDESTADDRREQ ] { -89 } + Constant [ public integer EEXIST ] { -17 } + Constant [ public integer EFAULT ] { -14 } + Constant [ public integer EFBIG ] { -27 } + Constant [ public integer EHOSTUNREACH ] { -113 } + Constant [ public integer EINTR ] { -4 } + Constant [ public integer EINVAL ] { -22 } + Constant [ public integer EIO ] { -5 } + Constant [ public integer EISCONN ] { -106 } + Constant [ public integer EISDIR ] { -21 } + Constant [ public integer ELOOP ] { -40 } + Constant [ public integer EMFILE ] { -24 } + Constant [ public integer EMSGSIZE ] { -90 } + Constant [ public integer ENAMETOOLONG ] { -36 } + Constant [ public integer ENETDOWN ] { -100 } + Constant [ public integer ENETUNREACH ] { -101 } + Constant [ public integer ENFILE ] { -23 } + Constant [ public integer ENOBUFS ] { -105 } + Constant [ public integer ENODEV ] { -19 } + Constant [ public integer ENOENT ] { -2 } + Constant [ public integer ENOMEM ] { -12 } + Constant [ public integer ENONET ] { -64 } + Constant [ public integer ENOPROTOOPT ] { -92 } + Constant [ public integer ENOSPC ] { -28 } + Constant [ public integer ENOSYS ] { -38 } + Constant [ public integer ENOTCONN ] { -107 } + Constant [ public integer ENOTDIR ] { -20 } + Constant [ public integer ENOTEMPTY ] { -39 } + Constant [ public integer ENOTSOCK ] { -88 } + Constant [ public integer ENOTSUP ] { -95 } + Constant [ public integer EPERM ] { -1 } + Constant [ public integer EPIPE ] { -32 } + Constant [ public integer EPROTO ] { -71 } + Constant [ public integer EPROTONOSUPPORT ] { -93 } + Constant [ public integer EPROTOTYPE ] { -91 } + Constant [ public integer ERANGE ] { -34 } + Constant [ public integer EROFS ] { -30 } + Constant [ public integer ESHUTDOWN ] { -108 } + Constant [ public integer ESPIPE ] { -29 } + Constant [ public integer ESRCH ] { -3 } + Constant [ public integer ETIMEDOUT ] { -110 } + Constant [ public integer ETXTBSY ] { -26 } + Constant [ public integer EXDEV ] { -18 } + Constant [ public integer UNKNOWN ] { -4094 } + Constant [ public integer EOF ] { -4095 } + Constant [ public integer ENXIO ] { -6 } + Constant [ public integer EMLINK ] { -31 } + Constant [ public integer EHOSTDOWN ] { -112 } + Constant [ public integer EREMOTEIO ] { -121 } } - Static properties [0] { diff --git a/fc685d1cb58746a8865fc4b86a38f90219de90ed.patch b/fc685d1cb58746a8865fc4b86a38f90219de90ed.patch new file mode 100644 index 0000000..831347e --- /dev/null +++ b/fc685d1cb58746a8865fc4b86a38f90219de90ed.patch @@ -0,0 +1,47 @@ +From fc685d1cb58746a8865fc4b86a38f90219de90ed Mon Sep 17 00:00:00 2001 +From: Bob Weinand +Date: Wed, 28 Feb 2018 02:50:51 +0100 +Subject: [PATCH] Fix build for newest php-src master + +--- + php_uv.c | 12 ++++++++++-- + 1 file changed, 10 insertions(+), 2 deletions(-) + +diff --git a/php_uv.c b/php_uv.c +index 12052b7..b150fc4 100644 +--- a/php_uv.c ++++ b/php_uv.c +@@ -50,7 +50,7 @@ ZEND_DECLARE_MODULE_GLOBALS(uv); + + #if PHP_VERSION_ID < 70100 + #define uv_zend_wrong_parameter_class_error(throw, ...) zend_wrong_paramer_class_error(__VA_ARGS__) +-#elif PHP_VERSION_ID < 70200 ++#elif PHP_VERSION_ID < 70200 || PHP_VERSION_ID >= 70300 + #define uv_zend_wrong_parameter_class_error(throw, ...) zend_wrong_parameter_class_error(__VA_ARGS__) + #else + #define uv_zend_wrong_parameter_class_error(...) zend_wrong_parameter_class_error(__VA_ARGS__) +@@ -230,7 +230,11 @@ static int uv_parse_arg_object(zval *arg, zval **dest, int check_null, zend_clas + ZVAL_UNDEF(&uv->fs_fd_alt); \ + } + +-#define PHP_UV_SKIP_DTOR(uv) do { GC_FLAGS(&uv->std) |= IS_OBJ_DESTRUCTOR_CALLED; } while (0) ++#if PHP_VERSION_ID < 70300 ++ #define PHP_UV_SKIP_DTOR(uv) do { GC_FLAGS(&uv->std) |= IS_OBJ_DESTRUCTOR_CALLED; } while (0) ++#else ++ #define PHP_UV_SKIP_DTOR(uv) do { GC_ADD_FLAGS(&uv->std, IS_OBJ_DESTRUCTOR_CALLED); } while (0) ++#endif + #define PHP_UV_IS_DTORED(uv) (GC_FLAGS(&uv->std) & IS_OBJ_DESTRUCTOR_CALLED) + + #define PHP_UV_SOCKADDR_IPV4_INIT(sockaddr) PHP_UV_INIT_GENERIC(sockaddr, php_uv_sockaddr_t, uv_sockaddr_ipv4_ce); +@@ -3548,7 +3552,11 @@ PHP_FUNCTION(uv_loop_delete) + ZEND_PARSE_PARAMETERS_END(); + + if (loop != UV_G(default_loop)) { ++#if PHP_VERSION_ID < 70300 + GC_FLAGS(&loop->std) |= IS_OBJ_DESTRUCTOR_CALLED; ++#else ++ GC_ADD_FLAGS(&loop->std, IS_OBJ_DESTRUCTOR_CALLED); ++#endif + destruct_uv_loop(&loop->std); + } + } diff --git a/php-pecl-uv.spec b/php-pecl-uv.spec index 1d8f205..690b3cd 100644 --- a/php-pecl-uv.spec +++ b/php-pecl-uv.spec @@ -1,6 +1,6 @@ # remirepo spec file for php-pecl-uv # -# Copyright (c) 2016-2017 Remi Collet +# Copyright (c) 2016-2018 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -25,6 +25,12 @@ Group: Development/Languages URL: http://pecl.php.net/package/%{pecl_name} Source0: http://pecl.php.net/get/%{pecl_name}-%{version}%{?prever}.tgz +Patch0: https://github.com/bwoebi/php-uv/commit/880d84cd838f334d88adb888f8a3b744194560d3.patch +Patch1: https://github.com/bwoebi/php-uv/commit/2ba4d96379a826050d91b039775e9d1e148d5ef2.patch +Patch2: https://github.com/bwoebi/php-uv/commit/fc685d1cb58746a8865fc4b86a38f90219de90ed.patch +Patch3: https://patch-diff.githubusercontent.com/raw/bwoebi/php-uv/pull/60.patch + +BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel > 7 BuildRequires: %{?scl_prefix}php-pear BuildRequires: pkgconfig(libuv) >= 1.0.0 @@ -81,6 +87,10 @@ sed -e 's/role="test"/role="src"/' \ -i package.xml cd NTS +%patch0 -p1 -b .up0 +%patch1 -p1 -b .up1 +%patch2 -p1 -b .up2 +%patch3 -p1 -b .pr60 # Sanity check, really often broken extver=$(sed -n '/define PHP_UV_VERSION/{s/.* "//;s/".*$//;p}' php_uv.h) @@ -148,7 +158,7 @@ do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i done -%if 0%{?fedora} < 24 +%if 0%{?fedora} < 24 && 0%{?rhel} < 8 # when pear installed alone, after us %triggerin -- %{?scl_prefix}php-pear if [ -x %{__pecl} ] ; then @@ -226,6 +236,10 @@ REPORT_EXIT_STATUS=1 \ %changelog +* Wed Jun 27 2018 Remi Collet - 0.2.2-3 +- add upstream patches for PHP 7.3 and patch from + https://github.com/bwoebi/php-uv/pull/60/files + * Tue Jul 18 2017 Remi Collet - 0.2.2-2 - rebuild for PHP 7.2.0beta1 new API -- cgit