Home
last modified time | relevance | path

Searched refs:wrapper (Results 26 – 50 of 90) sorted by relevance

1234

/PHP-5.5/ext/standard/tests/file/
H A Dphp_fd_wrapper_01.phpt2 php://fd wrapper: basic test
H A Dphp_fd_wrapper_02.phpt2 php://fd wrapper: mode is ignored
H A Ddirectory_wrapper_fstat_basic.phpt2 Test function fstat() on directory wrapper
H A Dbug68335.phpt2 Bug #68335: rmdir doesnt work with file:// stream wrapper
H A Dbug45303.phpt2 Bug #45303 (Opening php:// wrapper in append mode results in a warning)
H A Dbug43353-win32.phpt2 Bug #43353 wrong detection of 'data' wrapper
H A Dbug43353.phpt2 Bug #43353 wrong detection of 'data' wrapper
H A Dinclude_userstream_002.phpt100 Warning: fopen(): test1:// wrapper is disabled in the server configuration by allow_url_include=0 i…
102 Warning: fopen(test1://hello): failed to open stream: no suitable wrapper could be found in %sinclu…
H A Dphp_fd_wrapper_04.phpt2 php://fd wrapper: invalid file descriptor
/PHP-5.5/ext/zlib/tests/
H A Dzlib_wrapper_fstat_basic.phpt2 Test function fstat() on zlib wrapper
H A Dcompress_zlib_wrapper.phpt2 compress.zlib:// wrapper
H A Dzlib_scheme_rename_basic.phpt19 Warning: rename(): ZLIB wrapper does not support renaming in %s on line %d
H A Dzlib_wrapper_fflush_basic.phpt2 Test function fflush() on a zlib stream wrapper
H A Dzlib_wrapper_ftruncate_basic.phpt2 Test function ftruncate() on zlib wrapper by calling it with its expected arguments
/PHP-5.5/ext/standard/tests/streams/
H A Dbug40459.phpt2 bug 40459 - Test whether the constructor of the user-space stream wrapper is called when stream fun…
5 // Test whether the constructor of the user-space stream wrapper is called when stream functions ar…
/PHP-5.5/sapi/pi3web/
H A DREADME12 build PHP5 as Pi3Web module and after that build the Pi3Web PHP5 wrapper:
46 3. Build Pi3Web PHP5 wrapper
/PHP-5.5/ext/spl/internal/
H A Dnorewinditerator.inc13 * @brief An Iterator wrapper that doesn't call rewind
/PHP-5.5/ext/standard/
H A Dphp_fopen_wrapper.c160 php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, char *mode, int optio… in php_stream_url_wrap_php() argument
283 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, in php_stream_url_wrap_php()
295 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, in php_stream_url_wrap_php()
302 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, in php_stream_url_wrap_php()
H A Dfile.c1438 php_stream_wrapper *wrapper; in PHP_FUNCTION() local
1445 wrapper = php_stream_locate_url_wrapper(old_name, NULL, 0 TSRMLS_CC); in PHP_FUNCTION()
1447 if (!wrapper || !wrapper->wops) { in PHP_FUNCTION()
1452 if (!wrapper->wops->rename) { in PHP_FUNCTION()
1453 …SRMLS_CC, E_WARNING, "%s wrapper does not support renaming", wrapper->wops->label ? wrapper->wops-… in PHP_FUNCTION()
1464 RETURN_BOOL(wrapper->wops->rename(wrapper, old_name, new_name, 0, context TSRMLS_CC)); in PHP_FUNCTION()
1474 php_stream_wrapper *wrapper; in PHP_FUNCTION() local
1486 if (!wrapper || !wrapper->wops) { in PHP_FUNCTION()
1491 if (!wrapper->wops->unlink) { in PHP_FUNCTION()
1492 …ef(NULL TSRMLS_CC, E_WARNING, "%s does not allow unlinking", wrapper->wops->label ? wrapper->wops-… in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/dom/tests/
H A Ddom004.phpt6 in_array('compress.zlib', stream_get_wrappers()) or die('skip compress.zlib wrapper is not availabl…
/PHP-5.5/ext/zlib/
H A Dphp_zlib.h61 php_stream *php_stream_gzopen(php_stream_wrapper *wrapper, char *path, char *mode, int options, cha…
/PHP-5.5/main/streams/
H A Dmemory.c609 static php_stream * php_stream_url_wrap_rfc2397(php_stream_wrapper *wrapper, char *path, char *mode… in php_stream_url_wrap_rfc2397() argument
632 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: no comma in URL"); in php_stream_url_wrap_rfc2397()
644 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: illegal media type"); in php_stream_url_wrap_rfc2397()
660 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: illegal media type"); in php_stream_url_wrap_rfc2397()
673 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: illegal parameter"); in php_stream_url_wrap_rfc2397()
695 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: illegal URL"); in php_stream_url_wrap_rfc2397()
712 php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "rfc2397: unable to decode"); in php_stream_url_wrap_rfc2397()
/PHP-5.5/ext/standard/tests/http/
H A Dbug67430.phpt2 Bug #67430 (http:// wrapper doesn't follow 308 redirects)
/PHP-5.5/Zend/tests/
H A Dbug38779.phpt2 … #38779 (engine crashes when require()'ing file with syntax error through userspace stream wrapper)
/PHP-5.5/ext/libxml/
H A Dlibxml.c165 php_libxml_node_object *wrapper; in php_libxml_unregister_node() local
170 wrapper = nodeptr->_private; in php_libxml_unregister_node()
171 if (wrapper) { in php_libxml_unregister_node()
172 php_libxml_clear_object(wrapper TSRMLS_CC); in php_libxml_unregister_node()
295 php_stream_wrapper *wrapper = NULL; in php_libxml_streams_IO_open_wrapper() local
341 wrapper = php_stream_locate_url_wrapper(resolved_path, &path_to_open, 0 TSRMLS_CC); in php_libxml_streams_IO_open_wrapper()
342 if (wrapper && read_only && wrapper->wops->url_stat) { in php_libxml_streams_IO_open_wrapper()
343 …if (wrapper->wops->url_stat(wrapper, path_to_open, PHP_STREAM_URL_STAT_QUIET, &ssbuf, NULL TSRMLS_… in php_libxml_streams_IO_open_wrapper()

Completed in 43 milliseconds

1234