Searched refs:send (Results 1 – 25 of 107) sorted by relevance
12345
/PHP-7.4/Zend/tests/generators/ |
H A D | generator_send.phpt | 13 $gen->send("send bar"); 15 $gen->send("send foo"); 20 string(8) "send bar" 22 string(8) "send foo"
|
H A D | dangling_send_target.phpt | 2 Yield from does not leave a dangling send target 10 $gen->send(new stdClass); 17 $gen->send(new stdClass); 18 $gen->send(new stdClass);
|
H A D | send_after_close.phpt | 2 Calls to send() after close should do nothing 9 $gen->send('foo'); 10 $gen->send('bar');
|
H A D | send_returns_current.phpt | 2 $generator->send() returns the yielded value 14 var_dump($gen->send('foo')); 15 var_dump($gen->send('bar'));
|
H A D | yield_without_value.phpt | 14 $receiver->send(1); 16 $receiver->send(2); 18 $receiver->send(3);
|
H A D | yield_from_already_running.phpt | 10 ($gen = gen())->send($gen); 17 #1 %s(%d): Generator->send(Object(Generator))
|
H A D | yield_during_function_call.phpt | 11 $gen->send(10);
|
H A D | ignored_send_leak.phpt | 11 $gen->send(NULL);
|
H A D | bug75396.phpt | 17 $gen->send("x");
|
/PHP-7.4/Zend/tests/ |
H A D | bug69989_3.phpt | 20 $gen->send($gen); 30 $gen->send($gen); 38 $gen2->send([1, 2, 3]); 39 $gen->send($gen2);
|
H A D | bug76946.phpt | 19 $gen->send($gen); 22 $gen2->send($gen2);
|
H A D | bug69989_2.phpt | 13 $gen->send($gen); 37 $gen->send($gen);
|
H A D | bug69989_1.phpt | 10 $gen->send($gen);
|
H A D | bug68775.phpt | 15 $g->send(1);
|
/PHP-7.4/sapi/cli/tests/ |
H A D | bug64529.phpt | 31 send "echo 'hello world';\n" 32 send "\04" 49 send "<?php echo 'hello world';\n" 50 send "\04"
|
/PHP-7.4/ext/standard/tests/mail/ |
H A D | bug69874.phpt | 2 Bug #69874: Null addtional_headers does not send mail 19 echo "*** Testing mail() : send email without additional headers ***\n"; 36 *** Testing mail() : send email without additional headers ***
|
H A D | bug69874_2.phpt | 2 Bug #69874: Null addtional_headers does not send mail 19 echo "*** Testing mail() : send email without additional headers ***\n"; 36 *** Testing mail() : send email without additional headers ***
|
H A D | bug66535.phpt | 19 echo "*** Testing mail() : send email without additional headers ***\n"; 36 *** Testing mail() : send email without additional headers ***
|
/PHP-7.4/Zend/tests/generators/errors/ |
H A D | resume_running_generator_error.phpt | 17 $gen->send($gen); 28 #2 %s(%d): Generator->send(Object(Generator))
|
/PHP-7.4/ext/sockets/tests/ |
H A D | socket_abstract_path_sendmsg.phpt | 18 echo "creating send socket\n"; 37 creating send socket
|
H A D | mcast_ipv6_recv_limited.phpt | 14 * troublesome to send multicast traffic from lo, which we must since 25 die('skip unable to send multicast packet.'); 50 echo "creating send socket\n"; 110 creating send socket
|
/PHP-7.4/ext/mysqlnd/ |
H A D | mysqlnd_loaddata.c | 162 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile() 182 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile() 188 if ((ret = net->data->m.send(net, vio, buf, bufsize, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile() 196 if ((ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile()
|
/PHP-7.4/ext/zlib/tests/ |
H A D | deflate_add_basic.phpt | 58 $compressed .= $stream->send($c); 60 $compressed .= $stream->send(null);
|
H A D | inflate_add_basic.phpt | 59 $inflated .= $stream->send($compressed[$i]); 61 $inflated .= $stream->send(null);
|
/PHP-7.4/sapi/phpdbg/ |
H A D | phpdbg_rinit_hook.c | 77 send(s, buf, 4, 0); in PHP_RINIT_FUNCTION() 78 send(s, msg, msglen, 0); in PHP_RINIT_FUNCTION()
|
Completed in 44 milliseconds
12345