Searched refs:stream (Results 1 – 11 of 11) sorted by relevance
/php-uv/examples/ |
H A D | pipe_bind_connect.php | 11 uv_listen($a, 8192, function($stream) { 13 uv_accept($stream,$pipe); 14 uv_read_start($pipe,function($pipe, $buffer) use ($stream) { 17 uv_close($stream, function(){ 25 uv_write($pipe, "Hello", function($stream, $status) { 26 uv_close($stream);
|
H A D | fs.php | 3 uv_fs_read(uv_default_loop(),$r,function($stream, $data) { 9 uv_fs_close(uv_default_loop(), $stream, function(){
|
H A D | udp_bind.php | 6 uv_udp_recv_start($udp,function($stream, $buffer){ 9 uv_close($stream);
|
/php-uv/tests/ |
H A D | 600-pipe_bind.phpt | 10 uv_listen($a, 8192, function($stream) { 12 uv_accept($stream, $pipe); 13 uv_read_start($pipe,function($pipe, $data) use ($stream) { 20 uv_close($stream, function() { 28 uv_write($pipe, "Hello", function($stream, $stat) { 29 uv_close($stream);
|
H A D | 300-fs.phpt | 8 uv_fs_read(uv_default_loop(), $r, $offset = 0, $len = 32, function($stream, $data) { 14 uv_fs_close(uv_default_loop(), $stream, function() { }); 23 uv_fs_read(uv_default_loop(), $r, $offset = 1, $len = 32, function($stream, $data) { 29 uv_fs_close(uv_default_loop(), $stream, function() { });
|
H A D | 500-udp_bind.phpt | 8 uv_udp_recv_start($udp, function($stream, $buffer) { 11 uv_close($stream);
|
H A D | 500-udp_bind6.phpt | 8 uv_udp_recv_start($udp,function($stream, $buffer) { 11 uv_close($stream);
|
H A D | 005-uv_listen_cb-not-destroyed.phpt | 52 …uv_tcp_connect($c, uv_ip4_addr('0.0.0.0', 9876), function ($stream, $stat) use (&$closed, $tcpServ… 54 uv_close($stream);
|
/php-uv/ |
H A D | php_uv.h | 163 uv_stream_t stream; member 211 zval stream; member
|
H A D | README.md | 49 uv_write($stream,"Hello",function($stream, $stat){ 50 uv_close($stream); 1037 uv_udp_recv_start($udp,function($stream, $nread, $buffer){ 1040 uv_close($stream); 1084 uv_close($stream); 1126 uv_close($stream); 1272 uv_close($stream); 1317 uv_close($stream); 1467 uv_write($b,"Hello", function($stream,$stat){ 1468 uv_close($stream); [all …]
|
H A D | php_uv.c | 423 php_stream *stream; local 434 …stream->wrapper && !strcmp((char *)stream->wrapper->wops->label, "PHP") && (!stream->orig_path || … 441 if (stream->wrapper && !strcmp((char *)stream->wrapper->wops->label, "plainfile")) { 476 php_stream *stream; local 2623 *table = &stdio->stream; 2678 ZVAL_UNDEF(&stdio->stream); 2960 ZEND_ARG_INFO(0, stream) 2965 ZEND_ARG_INFO(0, stream) 3876 r = uv_accept(&server->uv.stream, &client->uv.stream); 4858 php_stream *stream; local [all …]
|
Completed in 34 milliseconds