Home
last modified time | relevance | path

Searched refs:length (Results 1 – 2 of 2) sorted by relevance

/php-uv/
H A DREADME.md2182 ### void uv_fs_read(resource $loop, zval $fd, long $offset, long $length, callable $callback)
2196 *long $length*: the length in bytes that should be read starting at position *$offset*.
2717 ### void uv_fs_sendfile(resource $loop, zval $in_fd, zval $out_fd, long $offset, long $length, call…
2733 *long $length*:
H A Dphp_uv.c1050 zend_long length; local
1054 …_FS_PARSE_PARAMETERS_EX(3, Z_PARAM_RESOURCE(zstream) Z_PARAM_LONG(offset) Z_PARAM_LONG(length), 1);
1055 if (length <= 0) {
1056 length = 0;
1066 uv->buffer = (char*) emalloc(length);
1067 buf = uv_buf_init(uv->buffer, length);
1076 zend_long offset, length = 0; local
1078 …ARAM_RESOURCE(z_instream) Z_PARAM_RESOURCE(z_outstream) Z_PARAM_LONG(offset) Z_PARAM_LONG(length));
1087 PHP_UV_FS_ASYNC(loop, sendfile, in_fd, out_fd, offset, length);
3183 ZEND_ARG_INFO(0, length)

Completed in 24 milliseconds