/PHP-8.0/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.0/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.0/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.0/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.0/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-8.0/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)
|
H A D | zend_generators.stub.php | 17 public function send(mixed $value): mixed {} function in Generator
|
/PHP-8.0/ext/sockets/tests/ |
H A D | socket_abstract_path_sendmsg.phpt | 18 echo "creating send socket\n"; 37 creating send socket
|
/PHP-8.0/ext/mysqlnd/ |
H A D | mysqlnd_loaddata.c | 160 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile() 180 ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info); in mysqlnd_handle_local_infile() 186 if ((ret = net->data->m.send(net, vio, buf, bufsize, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile() 194 if ((ret = net->data->m.send(net, vio, empty_packet, 0, conn->stats, conn->error_info)) == 0) { in mysqlnd_handle_local_infile()
|
/PHP-8.0/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);
|