Home
last modified time | relevance | path

Searched refs:stream (Results 351 – 375 of 655) sorted by relevance

1...<<11121314151617181920>>...27

/PHP-5.5/ext/zip/tests/
H A Doo_stream.phpt44 resource(%d) of type (stream)
/PHP-5.5/main/streams/
H A Dphp_streams_int.h67 void php_stream_mode_sanitize_fdopen_fopencookie(php_stream *stream, char *result);
/PHP-5.5/tests/lang/
H A Dbug35176.phpt13 …ction.require-once.html'>function.require-once.html</a>]: failed to open stream: No such file or d…
/PHP-5.5/ext/fileinfo/tests/
H A Dfinfo_file_001.phpt27 Warning: finfo_file(&): failed to open stream: No such file or directory in %s on line %d
/PHP-5.5/ext/standard/tests/file/
H A D007_variation13-win32.phpt56 resource(%d) of type (stream)
57 string(6) "stream"
H A D007_variation13.phpt56 resource(%d) of type (stream)
57 string(6) "stream"
H A Dmkdir_rmdir_variation2.phpt29 echo "\n*** Testing mkdir() and rmdir() by giving stream context as fourth argument ***\n";
56 *** Testing mkdir() and rmdir() by giving stream context as fourth argument ***
H A Dfile_variation4.phpt55 // create a file stream resource
111 // file stream resource
112 'file stream resource' => $file_stream_resource,
279 --file stream resource--
H A Dunlink_variation6.phpt15 // test relative directories and stream contexts.
/PHP-5.5/ext/mcrypt/
H A Dmcrypt_filter.c37 php_stream *stream, in php_mcrypt_filter() argument
83 newbucket = php_stream_bucket_new(stream, outchunk, n, 1, data->persistent TSRMLS_CC); in php_mcrypt_filter()
114 …newbucket = php_stream_bucket_new(stream, data->block_buffer, data->blocksize, 0, data->persistent… in php_mcrypt_filter()
/PHP-5.5/ext/standard/tests/dir/
H A Dopendir_variation1.phpt201 resource(%d) of type (stream)
209 resource(%d) of type (stream)
212 resource(%d) of type (stream)
/PHP-5.5/ext/standard/
H A Dformatted_print.c747 php_stream *stream; in PHP_FUNCTION() local
760 php_stream_from_zval(stream, &arg1); in PHP_FUNCTION()
766 php_stream_write(stream, result, len); in PHP_FUNCTION()
778 php_stream *stream; in PHP_FUNCTION() local
791 php_stream_from_zval(stream, &arg1); in PHP_FUNCTION()
797 php_stream_write(stream, result, len); in PHP_FUNCTION()
H A Dmd5.c86 php_stream *stream; in PHP_NAMED_FUNCTION() local
92 stream = php_stream_open_wrapper(arg, "rb", REPORT_ERRORS, NULL); in PHP_NAMED_FUNCTION()
93 if (!stream) { in PHP_NAMED_FUNCTION()
99 while ((n = php_stream_read(stream, buf, sizeof(buf))) > 0) { in PHP_NAMED_FUNCTION()
105 php_stream_close(stream); in PHP_NAMED_FUNCTION()
/PHP-5.5/ext/posix/
H A Dposix.c698 php_stream *stream; in php_posix_stream_get_fd() local
700 php_stream_from_zval_no_verify(stream, &zfp); in php_posix_stream_get_fd()
702 if (stream == NULL) { in php_posix_stream_get_fd()
706 if (php_stream_can_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT) == SUCCESS) { in php_posix_stream_get_fd()
707 php_stream_cast(stream, PHP_STREAM_AS_FD_FOR_SELECT, (void*)fd, 0); in php_posix_stream_get_fd()
708 } else if (php_stream_can_cast(stream, PHP_STREAM_AS_FD) == SUCCESS) { in php_posix_stream_get_fd()
709 php_stream_cast(stream, PHP_STREAM_AS_FD, (void*)fd, 0); in php_posix_stream_get_fd()
712 stream->ops->label); in php_posix_stream_get_fd()
/PHP-5.5/main/
H A Dnetwork.c1040 php_stream *stream; local
1051 stream = php_stream_alloc_rel(&php_stream_generic_socket_ops, sock, persistent_id, "r+");
1053 if (stream == NULL) {
1056 stream->flags |= PHP_STREAM_FLAG_AVOID_BLOCKING;
1059 return stream;
1067 php_stream *stream; local
1071 stream = php_stream_xport_create(res, reslen, REPORT_ERRORS,
1076 return stream;
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch305 + php_stream *stream;
316 + if (stream == NULL) {
344 + php_stream_close(stream);
611 + if (!stream) {
654 + stream = NULL;
723 + if (stream) {
738 + php_stream *stream;
757 + if (!stream) {
790 + if (stream) {
1633 + if (stream) {
[all …]
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug34657.phpt8 when openssl loaded, tcp stream is less verbose, so some error messages are missing
/PHP-5.5/ext/phar/tests/cache_list/
H A Dfrontcontroller22.phpt20 Warning: include(./hi.php): failed to open stream: No such file or directory in phar://%s/oof/test.…
/PHP-5.5/ext/phar/tests/zip/
H A Dnotphar.phpt23 Warning: include(phar://%snotphar.phar.zip/.phar/stub.php): failed to open stream: '%snotphar.phar.…
H A Ddelete.phpt31 Warning: file_get_contents(phar://%sdelete.phar.zip/a): failed to open stream: phar error: "a" is n…
/PHP-5.5/ext/standard/tests/streams/
H A Dbug64166_2.phpt2 Bug #64166: quoted-printable-encode stream filter incorrectly discarding whitespace - split reads
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c2418 c = php_stream_getc((php_stream*)file_handle.handle.stream.handle);
2432 php_stream_rewind((php_stream*)file_handle.handle.stream.handle);
2436 if (file_handle.handle.stream.mmap.buf[0] == '#') {
2439 c = file_handle.handle.stream.mmap.buf[i++];
2440 while (c != '\n' && c != '\r' && i < file_handle.handle.stream.mmap.len) {
2441 c = file_handle.handle.stream.mmap.buf[i++];
2444 … if (i < file_handle.handle.stream.mmap.len && file_handle.handle.stream.mmap.buf[i] == '\n') {
2448 if(i > file_handle.handle.stream.mmap.len) {
2449 i = file_handle.handle.stream.mmap.len;
2451 file_handle.handle.stream.mmap.buf += i;
[all …]
/PHP-5.5/ext/phar/tests/
H A Drename.phpt32 Warning: file_get_contents(phar://%srename.phar.php/a): failed to open stream: phar error: "a" is n…
H A D016b.phpt24 Warning: file_get_contents(phar://%s/a): failed to open stream: phar error: internal corruption of …
/PHP-5.5/ext/phar/tests/tar/
H A Ddelete.phpt32 Warning: file_get_contents(phar://%sdelete.phar.tar/a): failed to open stream: phar error: "a" is n…

Completed in 69 milliseconds

1...<<11121314151617181920>>...27