Home
last modified time | relevance | path

Searched refs:stream (Results 101 – 125 of 811) sorted by relevance

12345678910>>...33

/php-src/ext/zlib/tests/
H A Dreadgzfile_variation4.phpt26 Warning: readgzfile(10.5): Failed to open stream: No such file or directory in %s on line %d
29 Warning: readgzfile(-10.5): Failed to open stream: No such file or directory in %s on line %d
32 Warning: readgzfile(123456789000): Failed to open stream: No such file or directory in %s on line %d
35 Warning: readgzfile(-123456789000): Failed to open stream: No such file or directory in %s on line …
38 Warning: readgzfile(0.5): Failed to open stream: No such file or directory in %s on line %d
H A Dgzfile_variation5.phpt25 Warning: gzfile(0): Failed to open stream: No such file or directory in %s on line %d
28 Warning: gzfile(1): Failed to open stream: No such file or directory in %s on line %d
31 Warning: gzfile(12345): Failed to open stream: No such file or directory in %s on line %d
34 Warning: gzfile(-2345): Failed to open stream: No such file or directory in %s on line %d
H A Dreadgzfile_variation5.phpt25 Warning: readgzfile(0): Failed to open stream: No such file or directory in %s on line %d
28 Warning: readgzfile(1): Failed to open stream: No such file or directory in %s on line %d
31 Warning: readgzfile(12345): Failed to open stream: No such file or directory in %s on line %d
34 Warning: readgzfile(-2345): Failed to open stream: No such file or directory in %s on line %d
/php-src/sapi/cli/tests/
H A D022.phpt2 STDIN/OUT/ERR stream type
43 resource(%d) of type (stream)
45 resource(%d) of type (stream)
46 resource(%d) of type (stream)
47 resource(%d) of type (stream)
/php-src/ext/standard/tests/dir/
H A Dreaddir_variation5.phpt73 resource(%d) of type (stream)
79 resource(%d) of type (stream)
85 resource(%d) of type (stream)
91 resource(%d) of type (stream)
97 resource(%d) of type (stream)
103 resource(%d) of type (stream)
109 resource(%d) of type (stream)
115 resource(%d) of type (stream)
121 resource(%d) of type (stream)
127 resource(%d) of type (stream)
/php-src/ext/openssl/tests/
H A Dtls_wrapper.phpt2 tls stream wrapper
70 resource(%d) of type (stream)
72 resource(%d) of type (stream)
73 resource(%d) of type (stream)
74 resource(%d) of type (stream)
75 resource(%d) of type (stream)
/php-src/ext/gd/tests/
H A Dbug66590.phpt19 $stream = fopen($filename, 'rb');
20 fread($stream, 4); // skip "RIFF"
21 $length = fread($stream, 4);
22 fclose($stream);
/php-src/ext/standard/tests/streams/
H A Dgh8409.phpt11 if (get_resource_type($res) === 'persistent stream') {
12 echo "ERROR: persistent stream not closed\n";
16 echo "OK: persistent stream closed\n";
25 OK: persistent stream closed
H A Dstream_context_tcp_nodelay.phpt2 stream context tcp_nodelay
17 $stream = stream_socket_client(
21 socket_import_stream($stream);
H A Dstream_context_get_params_001.phpt16 var_dump(stream_context_set_params($ctx, array("notification" => array("stream","notification_callb…
26 resource(%d) of type (stream-context)
61 string(6) "stream"
78 string(6) "stream"
102 string(6) "stream"
H A Dstream_context_tcp_nodelay_fopen.phpt2 stream context tcp_nodelay fopen
20 $stream = fopen("http://www.php.net", "r", false, $ctxt);
23 @socket_import_stream($stream);
H A Dbug44818.phpt19 resource(%d) of type (stream)
24 resource(%d) of type (stream)
29 resource(%d) of type (stream)
34 resource(%d) of type (stream)
/php-src/ext/standard/tests/filters/
H A Dbug74267.phpt5 $stream = fopen('php://memory', 'w');
6 stream_filter_append($stream, 'convert.quoted-printable-decode', STREAM_FILTER_WRITE, ['line-break-…
16 fwrite($stream, $line);
19 fclose($stream);
/php-src/ext/pgsql/tests/inc/
H A Dnonblocking.inc3 function nb_is_readable($stream, $timeout = 1) {
4 $r = [$stream]; $w = []; $e = [];
7 function nb_is_writable($stream, $timeout = 1) {
8 $r = []; $w = [$stream]; $e = [];
/php-src/tests/output/
H A Dstream_isatty_out.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_err.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_in-err.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_in-out-err.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_in-out.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
H A Dstream_isatty_out-err.phpt26 Invalid stream (php://temp): bool(false)
27 Invalid stream (php://input): bool(false)
28 Invalid stream (php://memory): bool(false)
29 File stream: bool(false)
/php-src/ext/standard/tests/file/
H A Dstream_enclosed.phpt2 Unexposed/leaked stream encloses another stream
11 /* force conversion of inner stream to STDIO. */
H A Dstream_rfc2397_006.phpt15 foreach($streams as $stream)
18 var_dump(file_get_contents($stream));
29 Warning: file_get_contents(data:;base64,#Zm9vYmFyIGZvb2Jhcg==): Failed to open stream: rfc2397: una…
32 Warning: file_get_contents(data:;base64,#Zm9vYmFyIGZvb2Jhc=): Failed to open stream: rfc2397: unabl…
/php-src/Zend/tests/
H A Dgh11735_1.phpt2 GH-11735: Use-after-free when unregistering user stream wrapper from user stream wrapper
16 resource(%d) of type (stream)
/php-src/ext/standard/
H A Dfsock.c43 php_stream *stream = NULL; in php_fsockopen_stream() local
85 stream = php_stream_xport_create(hostname, hostname_len, REPORT_ERRORS, in php_fsockopen_stream()
91 if (stream == NULL) { in php_fsockopen_stream()
99 if (stream == NULL) { in php_fsockopen_stream()
125 php_stream_to_zval(stream, return_value); in php_fsockopen_stream()
/php-src/ext/sockets/tests/
H A Dsocket_import_stream-2.phpt26 Warning: socket_import_stream(): Cannot represent a stream of type STDIO as a Socket Descriptor in …
28 socket_import_stream(): Argument #1 ($stream) must be of type resource, Socket given
29 resource(%d) of type (stream)
31 socket_import_stream(): supplied resource is not a valid stream resource

Completed in 24 milliseconds

12345678910>>...33