Home
last modified time | relevance | path

Searched refs:stream (Results 126 – 150 of 816) sorted by relevance

12345678910>>...33

/PHP-7.4/ext/zlib/tests/
H A Dreadgzfile_variation5.phpt28 Warning: readgzfile(0): failed to open stream: No such file or directory in %s on line %d
31 Warning: readgzfile(1): failed to open stream: No such file or directory in %s on line %d
34 Warning: readgzfile(12345): failed to open stream: No such file or directory in %s on line %d
37 Warning: readgzfile(-2345): failed to open stream: No such file or directory in %s on line %d
H A Dgzfile_variation7.phpt32 Warning: gzfile(string): failed to open stream: No such file or directory in %s on line %d
35 Warning: gzfile(string): failed to open stream: No such file or directory in %s on line %d
38 Warning: gzfile(sTrInG): failed to open stream: No such file or directory in %s on line %d
41 Warning: gzfile(hello world): failed to open stream: No such file or directory in %s on line %d
H A Dreadgzfile_variation7.phpt32 Warning: readgzfile(string): failed to open stream: No such file or directory in %s on line %d
35 Warning: readgzfile(string): failed to open stream: No such file or directory in %s on line %d
38 Warning: readgzfile(sTrInG): failed to open stream: No such file or directory in %s on line %d
41 Warning: readgzfile(hello world): failed to open stream: No such file or directory in %s on line %d
/PHP-7.4/ext/standard/tests/dir/
H A Dopendir_variation4.phpt86 resource(%d) of type (stream)
90 resource(%d) of type (stream)
93 resource(%d) of type (stream)
97 resource(%d) of type (stream)
100 resource(%d) of type (stream)
104 resource(%d) of type (stream)
108 resource(%d) of type (stream)
H A Dopendir_variation4-win32-mb.phpt92 resource(%d) of type (stream)
96 resource(%d) of type (stream)
99 resource(%d) of type (stream)
103 resource(%d) of type (stream)
106 resource(%d) of type (stream)
110 resource(%d) of type (stream)
114 resource(%d) of type (stream)
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug46274_2.phpt72 resource(%d) of type (stream)
74 resource(%d) of type (stream)
79 resource(%d) of type (stream)
81 resource(%d) of type (stream)
86 resource(%d) of type (stream)
88 resource(%d) of type (stream)
/PHP-7.4/ext/standard/tests/filters/
H A Dbug79468.phpt2 Bug #79468 SIGSEGV when closing stream handle with a stream filter appended
21 Warning: stream_filter_remove(): Invalid resource given, not a stream filter in %s on line %d
H A Dbug54350.phpt10 fclose($this->stream);
21 Warning: fclose(): 5 is not a valid stream resource in %s on line %d
23 Warning: fclose(): supplied resource is not a valid stream resource in %s on line %d
/PHP-7.4/ext/standard/tests/http/
H A Dbug78719.phpt18 $stream = fopen('http://127.0.0.1:12342/', 'r', false, $context);
19 var_dump(stream_get_contents($stream));
20 var_dump(stream_get_meta_data($stream)['wrapper_data'][1] === "Location: $url");
/PHP-7.4/ext/sockets/tests/
H A Dsocket_import_stream-3.phpt21 $stream = stream_socket_server("udp://0.0.0.0:58379", $errno, $errstr, STREAM_SERVER_BIND);
22 $sock = socket_import_stream($stream);
36 stream_set_blocking($stream, 0);
37 var_dump(fread($stream, strlen($m)));
/PHP-7.4/ext/standard/tests/streams/
H A Dstream_set_timeout_error.phpt5 /* Prototype : proto bool stream_set_timeout(resource stream, int seconds, int microseconds)
6 * Description: Set timeout on stream read to seconds + microseonds
43 echo "\n-- Testing stream_set_timeout() function with an invalid stream --\n";
46 echo "\n-- Testing stream_set_timeout() function with a stream that does not support timeouts --\n";
70 Warning: stream_set_timeout(): supplied resource is not a valid stream resource in %s on line %d
73 -- Testing stream_set_timeout() function with an invalid stream --
78 -- Testing stream_set_timeout() function with a stream that does not support timeouts --
H A Duser-stream-error.phpt15 …caught Error: Call to undefined function _some_undefined_function() in %s%euser-stream-error.php:%d
18 #1 %s%euser-stream-error.php(%d): fopen('mystream://foo', 'r')
20 thrown in %s%euser-stream-error.php on line %d
H A Dstream_get_meta_data_file_error.phpt24 echo "\n-- Testing stream_get_meta_data() function with invalid stream resource --\n";
28 echo "\n-- Testing stream_get_meta_data() function with closed stream resource --\n";
48 -- Testing stream_get_meta_data() function with invalid stream resource --
53 -- Testing stream_get_meta_data() function with closed stream resource --
55 Warning: stream_get_meta_data(): supplied resource is not a valid stream resource in %s on line %d
/PHP-7.4/ext/spl/tests/
H A DSplFileObject_fflush_basic_001.phpt14 //create a basic stream class
29 //end creating stream
31 //open an SplFileObject using the above test stream
/PHP-7.4/ext/standard/tests/image/
H A Dimage_type_to_mime_type_basic.phpt51 string(24) "application/octet-stream"
53 string(24) "application/octet-stream"
54 string(24) "application/octet-stream"
57 string(24) "application/octet-stream"
/PHP-7.4/ext/fileinfo/libmagic/
H A Dmagic.c216 magic_stream(struct magic_set *ms, php_stream *stream) in magic_stream() argument
220 return file_or_stream(ms, NULL, stream); in magic_stream()
224 file_or_stream(struct magic_set *ms, const char *inname, php_stream *stream) in file_or_stream() argument
255 if (inname && !stream) { in file_or_stream()
257 stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS, NULL); in file_or_stream()
258 if (!stream) { in file_or_stream()
267 if (php_stream_stat(stream, &ssb) < 0) { in file_or_stream()
279 if ((nbytes = php_stream_read(stream, (char *)buf, ms->bytes_max - nbytes)) < 0) { in file_or_stream()
285 if (file_buffer(ms, stream, &sb, inname, buf, CAST(size_t, nbytes)) == -1) in file_or_stream()
291 if (no_in_stream && stream) { in file_or_stream()
[all …]
/PHP-7.4/tests/security/
H A Dopen_basedir_copy.phpt38 Warning: copy(../bad): failed to open stream: %s in %s on line %d
43 Warning: copy(../bad/bad.txt): failed to open stream: %s in %s on line %d
48 Warning: copy(..): failed to open stream: %s in %s on line %d
53 Warning: copy(../): failed to open stream: %s in %s on line %d
58 Warning: copy(/): failed to open stream: %s in %s on line %d
63 Warning: copy(../bad/.): failed to open stream: %s in %s on line %d
68 Warning: copy(../bad/./bad.txt): failed to open stream: %s in %s on line %d
73 Warning: copy(./../.): failed to open stream: %s in %s on line %d
/PHP-7.4/ext/openssl/tests/
H A Dtls_min_v1.0_max_v1.1_wrapper.phpt2 tls stream wrapper with min version 1.0 and max version 1.1
71 resource(%d) of type (stream)
73 resource(%d) of type (stream)
75 resource(%d) of type (stream)
76 resource(%d) of type (stream)
H A Dbug65538_002.phpt2 Bug #65538: SSL context "cafile" disallows URL stream wrappers
12 // care about the fact that the external stream is not allowed.
15 // on system cafile when opening stream.
25 Warning: file_get_contents(%s): failed to open stream: operation failed in %s on line %d
H A Dstream_crypto_flags_002.phpt2 TLSv1.1 and TLSv1.2 bitwise stream crypto flag assignment
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-7.4/ext/soap/
H A Dphp_http.c267 stream = NULL; in http_connect()
271 if (stream) { in http_connect()
281 if (stream) { in http_connect()
318 return stream; in http_connect()
426 stream = NULL; in make_http_soap_request()
503 stream = NULL; in make_http_soap_request()
509 if (stream != NULL && php_stream_eof(stream)) { in make_http_soap_request()
514 stream = NULL; in make_http_soap_request()
518 if (!stream) { in make_http_soap_request()
520 if (stream) { in make_http_soap_request()
[all …]
/PHP-7.4/ext/standard/tests/file/
H A Dstream_rfc2397_003.phpt21 foreach($streams as $original => $stream)
24 var_dump(file_get_contents(__DIR__ . '/' . $original) == file_get_contents($stream));
26 var_dump(file_get_contents($stream));
/PHP-7.4/main/streams/
H A Dphp_stream_filter_api.h68 PHPAPI php_stream_bucket *php_stream_bucket_new(php_stream *stream, char *buf, size_t buflen, uint8…
85 php_stream *stream,
103 php_stream *stream; member
140 #define php_stream_is_filtered(stream) ((stream)->readfilters.head || (stream)->writefilters.head) argument
/PHP-7.4/ext/imap/tests/
H A Dbug80226.phpt10 $stream = imap_open($default_mailbox, $username, $password);
11 imap_sort($stream, SORTFROM, 0);
/PHP-7.4/ext/com_dotnet/
H A Dcom_persist.c41 php_stream *stream; member
198 php_stream_flush(stm->stream); in stm_commit()
255 zend_list_delete(stm->stream->res); in istream_destructor()
272 stm->stream = stream; in php_com_wrapper_export_stream()
274 GC_ADDREF(stream->res); in php_com_wrapper_export_stream()
531 php_stream *stream; in CPH_METHOD() local
543 if (stream == NULL) { in CPH_METHOD()
548 stm = php_com_wrapper_export_stream(stream); in CPH_METHOD()
591 php_stream *stream; in CPH_METHOD() local
605 if (stream == NULL) { in CPH_METHOD()
[all …]

Completed in 33 milliseconds

12345678910>>...33