Home
last modified time | relevance | path

Searched refs:stream (Results 326 – 350 of 622) sorted by relevance

1...<<11121314151617181920>>...25

/PHP-5.3/ext/zip/tests/
H A Doo_stream.phpt44 resource(%d) of type (stream)
/PHP-5.3/main/streams/
H A Dphp_streams_int.h67 void php_stream_mode_sanitize_fdopen_fopencookie(php_stream *stream, char *result);
/PHP-5.3/tests/lang/
H A Dbug35176.phpt12 …ction.require-once.html'>function.require-once.html</a>]: failed to open stream: No such file or d…
/PHP-5.3/ext/standard/tests/streams/
H A Dbug49936.phpt2 Bug #49936 (crash with ftp stream in php_stream_context_get_option())
H A Dbug49936_win32.phpt2 Bug #49936 (crash with ftp stream in php_stream_context_get_option())
/PHP-5.3/Zend/tests/
H A Dbug38779.phpt2 Bug #38779 (engine crashes when require()'ing file with syntax error through userspace stream wrapp…
H A Dcast_to_array.phpt90 resource(%d) of type (stream)
H A Dsettype_array.phpt90 resource(%d) of type (stream)
H A Dbug60909_1.phpt13 error(require(notfound.php): failed to open stream: No such file or directory)
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_set_local_infile_handler_short_len.phpt45 printf("[013] Cannot read from stream\n");
46 $error = 'Cannot read from stream';
/PHP-5.3/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 Dfile_put_contents_variation8.phpt80 Warning: file_put_contents(%sdir): failed to open stream: %s in %s on line %d
84 Warning: file_put_contents(%sphp): failed to open stream: %s in %s on line %d
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--
/PHP-5.3/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.3/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.3/ext/standard/
H A Dformatted_print.c733 php_stream *stream; in PHP_FUNCTION() local
746 php_stream_from_zval(stream, &arg1); in PHP_FUNCTION()
752 php_stream_write(stream, result, len); in PHP_FUNCTION()
764 php_stream *stream; in PHP_FUNCTION() local
777 php_stream_from_zval(stream, &arg1); in PHP_FUNCTION()
783 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 | ENFORCE_SAFE_MODE, 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.3/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.3/main/
H A Dnetwork.c1030 php_stream *stream; local
1041 stream = php_stream_alloc_rel(&php_stream_generic_socket_ops, sock, persistent_id, "r+");
1043 if (stream == NULL) {
1046 stream->flags |= PHP_STREAM_FLAG_AVOID_BLOCKING;
1049 return stream;
1057 php_stream *stream; local
1061 stream = php_stream_xport_create(res, reslen, ENFORCE_SAFE_MODE | REPORT_ERRORS,
1066 return stream;
H A Dmain.c1226 if (stream) { in php_stream_open_for_zend_ex()
1233 handle->handle.stream.handle = stream; in php_stream_open_for_zend_ex()
1235 handle->handle.stream.fsizer = php_zend_stream_fsizer; in php_stream_open_for_zend_ex()
1236 handle->handle.stream.isatty = 0; in php_stream_open_for_zend_ex()
1238 memset(&handle->handle.stream.mmap, 0, sizeof(handle->handle.stream.mmap)); in php_stream_open_for_zend_ex()
1239 len = php_zend_stream_fsizer(stream TSRMLS_CC); in php_stream_open_for_zend_ex()
1244 && php_stream_mmap_possible(stream) in php_stream_open_for_zend_ex()
1247 handle->handle.stream.mmap.buf = p; in php_stream_open_for_zend_ex()
1248 handle->handle.stream.mmap.len = mapped_len; in php_stream_open_for_zend_ex()
1251 handle->handle.stream.closer = php_zend_stream_closer; in php_stream_open_for_zend_ex()
[all …]
/PHP-5.3/ext/spl/
H A Dspl_directory.c104 if (intern->u.file.stream) { in spl_filesystem_object_free_storage()
108 if (!intern->u.file.stream->is_persistent) { in spl_filesystem_object_free_storage()
289 if (!intern->file_name_len || !intern->u.file.stream) { in spl_filesystem_file_open()
306 …intern->orig_path = estrndup(intern->u.file.stream->orig_path, strlen(intern->u.file.stream->orig_… in spl_filesystem_file_open()
2057 if (php_stream_eof(intern->u.file.stream)) { in spl_filesystem_file_read()
2195 if (php_stream_eof(intern->u.file.stream)) { in spl_filesystem_file_read_line_ex()
2270 if (-1 == php_stream_rewind(intern->u.file.stream)) { in spl_filesystem_file_rewind()
2402 RETURN_BOOL(php_stream_eof(intern->u.file.stream)); in SPL_METHOD()
2418 RETVAL_BOOL(!php_stream_eof(intern->u.file.stream)); in SPL_METHOD()
2700 long ret = php_stream_tell(intern->u.file.stream); in SPL_METHOD()
[all …]
/PHP-5.3/ext/phar/tests/zip/
H A Dnotphar.phpt23 Warning: include(phar://%snotphar.phar.zip/.phar/stub.php): failed to open stream: '%snotphar.phar.…
/PHP-5.3/ext/phar/tests/cache_list/
H A Dfrontcontroller22.phpt21 Warning: include(./hi.php): failed to open stream: No such file or directory in phar://%s/oof/test.…
/PHP-5.3/ext/phar/tests/
H A Drename.phpt33 Warning: file_get_contents(phar://%srename.phar.php/a): failed to open stream: phar error: "a" is n…

Completed in 49 milliseconds

1...<<11121314151617181920>>...25