/php-src/ext/standard/tests/streams/ |
H A D | stream_select_null_usec.phpt | 2 stream_select allows null for microsecond timeout if timeout is null 15 stream_select($read, $write, $except, null, null); 20 stream_select($read, $write, $except, null, 0); 22 stream_select($read, $write, $except, null, 1); 31 Fatal error: Uncaught ValueError: stream_select(): Argument #5 ($microseconds) must be null when ar… 33 #0 %s stream_select(Array, NULL, NULL, NULL, 1)
|
H A D | bug74090.phpt | 27 if (stream_select($read, $write, $exc, 0, 250000) === false) die ("stream_select timeout"); 31 if (stream_select($read, $write, $exc, 0, 250000) === false) die ("stream_select timeout");
|
H A D | stream_select_preserve_keys.phpt | 2 Bug #53427 + emulate_read (stream_select does not preserve keys) 11 stream_select($read, $write, $except, 0); 14 stream_select($read, $write, $except, 0); // // emulate_read
|
H A D | bug72075.phpt | 2 Bug #72075 (Referencing socket resources breaks stream_select) 12 print stream_select($r, $w, $e, 0.5);
|
H A D | bug53427.phpt | 2 Bug #53427 (stream_select does not preserve keys) 12 stream_select($read, $write, $except, 0);
|
H A D | gh9590-001.phpt | 2 Bug GH-9590 001 (stream_select does not abort upon exception or empty valid fd set) 25 var_dump(stream_select($r, $w, $e, PHP_INT_MAX)); 29 Warning: stream_select(): You MUST recompile PHP with a larger value of FD_SETSIZE.
|
H A D | bug46024.phpt | 2 Bug #46024 stream_select() doesn't return the correct number 25 $ret = stream_select($r, $w, $e, 1); 32 $ret = stream_select($r, $w, $e, 1);
|
H A D | gh9590-002.phpt | 2 Bug GH-9590 002 (stream_select does not abort upon exception or empty valid fd set) 27 var_dump(stream_select($r, $w, $e, PHP_INT_MAX)); 31 Fatal error: Uncaught Exception: stream_select(): You MUST recompile PHP with a larger value of FD_…
|
H A D | gh16889.phpt | 2 GH-16889 (stream_select() timeout useless for pipes on Windows) 17 if (stream_select($read, $write, $except, 0, 1000)) {
|
H A D | bug64770.phpt | 2 Bug #64770 stream_select() fails with pipes from proc_open() 23 $n = stream_select($r, $w, $e, 300);
|
H A D | gh8472.phpt | 28 if (stream_select($read, $write, $except, 1)) {
|
H A D | bug69521.phpt | 27 $changed = stream_select($read, $write, $except, 0, 500000);
|
H A D | bug60602.phpt | 23 $n = stream_select($r, $w, $e, 300);
|
/php-src/ext/standard/tests/file/ |
H A D | userstreams_002.phpt | 27 var_dump(stream_select($r, $w, $e, 0) !== false); 56 Warning: stream_select(): test_wrapper_base::stream_cast is not implemented! in %s 58 Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor… 63 Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor… 68 Warning: stream_select(): test_wrapper::stream_cast must return a stream resource in %s 70 Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor… 75 Warning: stream_select(): test_wrapper::stream_cast must not return itself in %s 77 Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor… 82 Warning: stream_select(): test_wrapper_base::stream_cast is not implemented! in %s 84 Warning: stream_select(): Cannot represent a stream of type user-space as a select()able descriptor… [all …]
|
/php-src/ext/standard/tests/general_functions/ |
H A D | proc_open_multiplex.phpt | 20 while (!empty($read_pipes) && ($selected = stream_select($rset, $wset, $eset, 1)) > 0) { 23 echo "stream_select() reported all pipes as ready\n"; 33 echo "stream_select() failed\n";
|
H A D | proc_open_cmd.phpt | 16 if (($num = stream_select($read, $write, $except, 1000)) === false) { 17 echo "stream_select() failed\n";
|
H A D | proc_open_sockets3.phpt | 12 if (!stream_select($r, $w, $e, null)) {
|
H A D | proc_open_sockets1.phpt | 32 if (!stream_select($r, $w, $e, null)) {
|
H A D | proc_open_sockets2.phpt | 12 if (!stream_select($r, $w, $e, null)) {
|
/php-src/ext/pgsql/tests/inc/ |
H A D | nonblocking.inc | 5 return (bool) stream_select($r, $w, $e, $timeout, 0); 9 return (bool) stream_select($r, $w, $e, $timeout, 0);
|
/php-src/ext/openssl/tests/ |
H A D | bug72333.phpt | 25 while (stream_select($read, $write, $except, 1)) { 49 while (stream_select($read, $write, $except, 1)) {
|
H A D | bug74159.phpt | 61 while($streams && !($n = stream_select($read, $streams, $except, 1))); 68 while ($streams && !($n = stream_select($streams, $write, $except, 1)));
|
H A D | bug77390.phpt | 25 while (stream_select($read, $write, $except, 1000)) { 81 while (stream_select($read, $write, $except, 1)) {
|
/php-src/benchmark/ |
H A D | shared.php | 33 stream_select($read, $write, $except, 1, 0);
|
/php-src/sapi/phpdbg/ |
H A D | create-test.php | 73 $n = @stream_select($r, $w, $e, null);
|