Home
last modified time | relevance | path

Searched refs:send (Results 1 – 25 of 116) sorted by relevance

12345

/PHP-7.2/Zend/tests/generators/
H A Dgenerator_send.phpt13 $gen->send("send bar");
15 $gen->send("send foo");
20 string(8) "send bar"
22 string(8) "send foo"
H A Ddangling_send_target.phpt2 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 Dsend_after_close.phpt2 Calls to send() after close should do nothing
9 $gen->send('foo');
10 $gen->send('bar');
H A Dsend_returns_current.phpt2 $generator->send() returns the yielded value
14 var_dump($gen->send('foo'));
15 var_dump($gen->send('bar'));
H A Dyield_without_value.phpt14 $receiver->send(1);
16 $receiver->send(2);
18 $receiver->send(3);
H A Dyield_from_already_running.phpt10 ($gen = gen())->send($gen);
17 #1 %s(%d): Generator->send(Object(Generator))
H A Dignored_send_leak.phpt11 $gen->send(NULL);
H A Dyield_during_function_call.phpt11 $gen->send(10);
H A Dbug75396.phpt17 $gen->send("x");
/PHP-7.2/Zend/tests/
H A Dbug69989_3.phpt20 $gen->send($gen);
30 $gen->send($gen);
38 $gen2->send([1, 2, 3]);
39 $gen->send($gen2);
H A Dbug76946.phpt19 $gen->send($gen);
22 $gen2->send($gen2);
H A Dbug69989_2.phpt13 $gen->send($gen);
37 $gen->send($gen);
H A Dbug69989_1.phpt10 $gen->send($gen);
H A Dbug68775.phpt15 $g->send(1);
/PHP-7.2/sapi/cli/tests/
H A Dbug64529.phpt31 send "echo 'hello world';\n"
32 send "\04"
49 send "<?php echo 'hello world';\n"
50 send "\04"
/PHP-7.2/ext/standard/tests/mail/
H A Dbug69874.phpt2 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 Dbug69874_2.phpt2 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 Dbug66535.phpt19 echo "*** Testing mail() : send email without additional headers ***\n";
36 *** Testing mail() : send email without additional headers ***
/PHP-7.2/Zend/tests/generators/errors/
H A Dresume_running_generator_error.phpt17 $gen->send($gen);
28 #2 %s(%d): Generator->send(Object(Generator))
/PHP-7.2/ext/sockets/tests/
H A Dsocket_abstract_path_sendmsg.phpt18 echo "creating send socket\n";
37 creating send socket
H A Dmcast_ipv6_recv_limited.phpt14 * 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.2/ext/mysqlnd/
H A Dmysqlnd_loaddata.c162 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.2/ext/zlib/tests/
H A Ddeflate_add_basic.phpt58 $compressed .= $stream->send($c);
60 $compressed .= $stream->send(null);
H A Dinflate_add_basic.phpt59 $inflated .= $stream->send($compressed[$i]);
61 $inflated .= $stream->send(null);
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_rinit_hook.c73 send(s, msglen, 4, 0); in PHP_RINIT_FUNCTION()
74 send(s, msg, *(int *) msglen, 0); in PHP_RINIT_FUNCTION()

Completed in 36 milliseconds

12345