Searched refs:send (Results 1 – 25 of 107) sorted by relevance
12345
/PHP-8.1/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 | ignored_send_leak.phpt | 11 $gen->send(NULL);
|
H A D | yield_during_function_call.phpt | 11 $gen->send(10);
|
/PHP-8.1/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);
|
/PHP-8.1/Zend/tests/generators/errors/ |
H A D | resume_running_generator_error_003.phpt | 7 $g->send($y); 11 $gen->send($gen); 20 #0 %sresume_running_generator_error_003.php(4): Generator->send(NULL) 22 #2 %sresume_running_generator_error_003.php(8): Generator->send(Object(Generator))
|
H A D | resume_running_generator_error_002.phpt | 7 $g->send($g); 11 $gen->send($gen);
|
H A D | resume_running_generator_error.phpt | 17 $gen->send($gen); 28 #2 %s(%d): Generator->send(Object(Generator))
|
/PHP-8.1/ext/standard/tests/mail/ |
H A D | bug69874.phpt | 2 Bug #69874: Null addtional_headers does not send mail 8 echo "*** Testing mail() : send email without additional headers ***\n"; 24 *** Testing mail() : send email without additional headers ***
|
H A D | bug69874_2.phpt | 2 Bug #69874: Null addtional_headers does not send mail 8 echo "*** Testing mail() : send email without additional headers ***\n"; 24 *** Testing mail() : send email without additional headers ***
|
H A D | bug66535.phpt | 8 echo "*** Testing mail() : send email without additional headers ***\n"; 24 *** Testing mail() : send email without additional headers ***
|
/PHP-8.1/sapi/cli/tests/ |
H A D | bug64529.phpt | 33 send "echo 'hello world';\n" 34 send "\04" 51 send "<?php echo 'hello world';\n" 52 send "\04"
|
/PHP-8.1/ext/sockets/tests/ |
H A D | socket_abstract_path_sendmsg.phpt | 17 echo "creating send socket\n"; 36 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"; 111 creating send socket
|
/PHP-8.1/ext/zlib/tests/ |
H A D | inflate_add_basic.phpt | 55 $inflated .= $stream->send($compressed[$i]); 57 $inflated .= $stream->send(null);
|
H A D | deflate_add_basic.phpt | 54 $compressed .= $stream->send($c); 56 $compressed .= $stream->send(null);
|
/PHP-8.1/Zend/ |
H A D | zend_generators_arginfo.h | 33 ZEND_METHOD(Generator, send); 44 ZEND_ME(Generator, send, arginfo_class_Generator_send, ZEND_ACC_PUBLIC)
|
/PHP-8.1/ext/mysqlnd/ |
H A D | mysqlnd_loaddata.c | 198 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile() 218 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile() 224 if ((ret = net->data->m.send(net, vio, buf, bufsize, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile() 232 if ((ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile()
|
Completed in 17 milliseconds
12345