Home
last modified time | relevance | path

Searched refs:php_stream_open_wrapper (Results 1 – 25 of 34) sorted by relevance

12

/php-src/ext/ftp/
H A Dphp_ftp.c705 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt+" : "rb+", REPORT_ERRORS, N… in PHP_FUNCTION()
707 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
719 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
767 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt+" : "rb+", REPORT_ERRORS, N… in PHP_FUNCTION()
769 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
781 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
965 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS… in PHP_FUNCTION()
1017 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS… in PHP_FUNCTION()
1051 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS… in PHP_FUNCTION()
/php-src/ext/dba/
H A Ddba.c776 …info->lock.fp = php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|IGNORE_PATH|pe… in php_dba_open()
788 …info->lock.fp = php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|REPORT_ERRORS|… in php_dba_open()
823 …info->fp = php_stream_open_wrapper(ZSTR_VAL(info->path), file_mode, STREAM_MUST_SEEK|REPORT_ERRORS… in php_dba_open()
/php-src/ext/fileinfo/libmagic/
H A Dmagic.c229 stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS, NULL); in file_or_stream()
H A Dapprentice.c1270 stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL); in load_1()
3243 stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL); in apprentice_map()
3372 stream = php_stream_open_wrapper((char *)fn, "wb+", REPORT_ERRORS, NULL); in apprentice_compile()
/php-src/ext/standard/
H A Dphp_fopen_wrapper.c355 if (!(stream = php_stream_open_wrapper(p + 10, mode, options, opened_path))) { in php_stream_url_wrap_php()
H A Dmail.c366 php_stream *stream = php_stream_open_wrapper(filename, "a", flags, NULL); in php_mail_log_to_file()
H A Dmd5.c86 stream = php_stream_open_wrapper(arg, "rb", REPORT_ERRORS, NULL); in PHP_FUNCTION()
H A Dsha1.c76 stream = php_stream_open_wrapper(arg, "rb", REPORT_ERRORS, NULL); in PHP_FUNCTION()
H A Dimage.c1569 …stream = php_stream_open_wrapper(ZSTR_VAL(input), "rb", STREAM_MUST_SEEK|REPORT_ERRORS|IGNORE_PATH… in php_getimagesize_from_any()
H A Dproc_open.c903 php_stream *stream = php_stream_open_wrapper(ZSTR_VAL(file_path), ZSTR_VAL(file_mode), in set_proc_descriptor_to_file()
/php-src/ext/bz2/
H A Dbz2.c222 stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST, opened_path); in _php_stream_bz2open()
/php-src/ext/phar/
H A Dutil.c109 entry->fp = php_stream_open_wrapper(entry->tmp, "rb", STREAM_MUST_SEEK|0, NULL); in phar_get_efp()
630 …phar_set_pharfp(phar, php_stream_open_wrapper(phar->fname, "rb", IGNORE_URL|STREAM_MUST_SEEK|0, NU… in phar_open_archive_fp()
707 entry->fp = php_stream_open_wrapper(entry->tmp, "rb", STREAM_MUST_SEEK|0, NULL); in phar_open_entry_fp()
1526 pfp = php_stream_open_wrapper(pfile, "rb", 0, NULL); in phar_verify_signature()
H A Dphar.c1397 fp = php_stream_open_wrapper(fname, "rb", IGNORE_URL|STREAM_MUST_SEEK|0, &actual); in phar_create_or_parse_filename()
1558 fp = php_stream_open_wrapper(fname, "rb", IGNORE_URL|STREAM_MUST_SEEK, &actual); in phar_open_from_filename()
2349 …fp = php_stream_open_wrapper(ZSTR_VAL(fname), "rb", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, &ac… in phar_open_executed_filename()
2587 oldfile = php_stream_open_wrapper(phar->fname, "rb", 0, NULL); in phar_flush()
3188 …phar->fp = php_stream_open_wrapper(phar->fname, "w+b", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, … in phar_flush()
H A Dtar.c1139 oldfile = php_stream_open_wrapper(phar->fname, "rb", 0, NULL); in phar_tar_flush()
1309 …phar->fp = php_stream_open_wrapper(phar->fname, "w+b", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, … in phar_tar_flush()
H A Dphar_object.c1593 fp = php_stream_open_wrapper(fname, "rb", STREAM_MUST_SEEK|0, &opened); in phar_build()
3840 if (!(resource = php_stream_open_wrapper(fname, "rb", 0, NULL))) { in PHP_METHOD()
3893 if (!(fp = php_stream_open_wrapper(phar_obj->archive->fname, "rb", 0, NULL))) { in PHP_METHOD()
3931 fp = php_stream_open_wrapper(phar_obj->archive->fname, "rb", 0, NULL); in PHP_METHOD()
4237 fp = php_stream_open_wrapper(fullpath, "w+b", REPORT_ERRORS, NULL); in phar_extract_file()
4338 fp = php_stream_open_wrapper(phar_obj->archive->fname, "rb", IGNORE_URL|STREAM_MUST_SEEK, NULL); in PHP_METHOD()
H A Dzip.c1440 oldfile = php_stream_open_wrapper(phar->fname, "rb", 0, NULL); in phar_zip_flush()
1566 …phar->fp = php_stream_open_wrapper(phar->fname, "w+b", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, … in phar_zip_flush()
/php-src/ext/mysqlnd/
H A Dmysqlnd_auth.c878 stream = php_stream_open_wrapper((char *) fname, "rb", REPORT_ERRORS, NULL); in mysqlnd_sha256_get_rsa_key()
1174 stream = php_stream_open_wrapper((char *) fname, "rb", REPORT_ERRORS, NULL); in mysqlnd_caching_sha2_get_key()
H A Dmysqlnd_debug.c35 self->stream = php_stream_open_wrapper(self->file_name, in MYSQLND_METHOD()
H A Dmysqlnd_vio.c143 …net_stream = php_stream_open_wrapper(scheme.s + sizeof("pipe://") - 1, "r+", streams_options, NULL… in MYSQLND_METHOD()
/php-src/docs-old/
H A Dstreams.md48 PHPAPI php_stream *php_stream_open_wrapper(const char *path, const char *mode,
165 `STREAM_MUST_SEEK` option to php_stream_open_wrapper();
/php-src/main/
H A Dphp_streams.h601 #define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (m… macro
/php-src/ext/gd/
H A Dgd.c546 stream = php_stream_open_wrapper(ZSTR_VAL(file), "rb", IGNORE_PATH | REPORT_ERRORS, NULL); in PHP_FUNCTION()
1522 stream = php_stream_open_wrapper(file, "rb", REPORT_ERRORS|IGNORE_PATH, NULL); in _php_image_create_from()
1833 stream = php_stream_open_wrapper(file, "wb", REPORT_ERRORS|IGNORE_PATH, NULL); in PHP_FUNCTION()
4033 stream = php_stream_open_wrapper(Z_STRVAL_P(to_zval), "wb", REPORT_ERRORS|IGNORE_PATH, NULL); in create_stream_context_from_zval()
/php-src/ext/fileinfo/
H A Dlibmagic.patch312 + stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL);
596 + /* Don't bother on windows with php_stream_open_wrapper,
610 + stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL);
787 + stream = php_stream_open_wrapper((char *)fn, "wb+", REPORT_ERRORS, NULL);
2629 + stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS, NULL);
/php-src/ext/pdo/
H A Dpdo_dbh.c213 stream = php_stream_open_wrapper(uri, "rb", REPORT_ERRORS, NULL); in dsn_from_uri()
/php-src/ext/tidy/
H A Dtidy.c374 if (!(stream = php_stream_open_wrapper(filename, "rb", (use_include_path ? USE_PATH : 0), NULL))) { in php_tidy_file_to_mem()

Completed in 335 milliseconds

12