Home
last modified time | relevance | path

Searched refs:php_stream_open_wrapper (Results 1 – 25 of 36) sorted by path

12

/PHP-5.5/
H A DREADME.STREAMS49 PHPAPI php_stream *php_stream_open_wrapper(char *path, char *mode,
159 STREAM_MUST_SEEK option to php_stream_open_wrapper();
/PHP-5.5/ext/bz2/
H A Dbz2.c255 stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST, opened_path); in _php_stream_bz2open()
/PHP-5.5/ext/dba/
H A Ddba.c843 …info->lock.fp = php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|IGNORE_PATH|pe… in php_dba_open()
860 …info->lock.fp = php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|REPORT_ERRORS|… in php_dba_open()
898 …info->fp = php_stream_open_wrapper(info->path, file_mode, STREAM_MUST_SEEK|REPORT_ERRORS|IGNORE_PA… in php_dba_open()
/PHP-5.5/ext/exif/
H A Dexif.c3906 ImageInfo->infile = php_stream_open_wrapper(FileName, "rb", STREAM_MUST_SEEK|IGNORE_PATH, NULL); in exif_read_file()
4211 stream = php_stream_open_wrapper(imagefile, "rb", IGNORE_PATH|REPORT_ERRORS, NULL); in PHP_FUNCTION()
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch311 + stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL);
313 + stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL);
591 + /* Don't bother on windows with php_stream_open_wrapper,
606 + stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL);
608 + stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL);
752 + stream = php_stream_open_wrapper((char *)fn, "wb+", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL);
754 + stream = php_stream_open_wrapper((char *)fn, "wb+", REPORT_ERRORS, NULL);
2457 + stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL);
2459 + stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS, NULL);
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c952 stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL); in load_1()
954 stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL); in load_1()
2629 stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL); in apprentice_map()
2631 stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL); in apprentice_map()
2767 stream = php_stream_open_wrapper((char *)fn, "wb+", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL); in apprentice_compile()
2769 stream = php_stream_open_wrapper((char *)fn, "wb+", REPORT_ERRORS, NULL); in apprentice_compile()
H A Dmagic.c387 stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL); in file_or_stream()
389 stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS, NULL); in file_or_stream()
/PHP-5.5/ext/ftp/
H A Dphp_ftp.c877 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt+" : "rb+", REPORT_ERRORS, N… in PHP_FUNCTION()
879 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
891 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
938 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt+" : "rb+", REPORT_ERRORS, N… in PHP_FUNCTION()
940 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
952 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
1137 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS… in PHP_FUNCTION()
1190 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS… in PHP_FUNCTION()
/PHP-5.5/ext/gd/
H A Dgd.c1424 stream = php_stream_open_wrapper(file, "rb", IGNORE_PATH | IGNORE_URL_WIN | REPORT_ERRORS, NULL); in PHP_FUNCTION()
2371 stream = php_stream_open_wrapper(file, "rb", REPORT_ERRORS|IGNORE_PATH|IGNORE_URL_WIN, NULL); in _php_image_create_from()
H A Dgd_ctx.c132 …stream = php_stream_open_wrapper(Z_STRVAL_P(to_zval), "wb", REPORT_ERRORS|IGNORE_PATH|IGNORE_URL_W… in _php_image_output_ctx()
/PHP-5.5/ext/hash/
H A Dhash_md.c151 stream = php_stream_open_wrapper(arg, "rb", REPORT_ERRORS, NULL); in PHP_NAMED_FUNCTION()
H A Dhash_sha.c135 stream = php_stream_open_wrapper(arg, "rb", REPORT_ERRORS, NULL); in PHP_FUNCTION()
/PHP-5.5/ext/imap/
H A Dphp_imap.c2435 writer = php_stream_open_wrapper(Z_STRVAL_PP(out), "wb", REPORT_ERRORS, NULL); in PHP_FUNCTION()
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_auth.c548 stream = php_stream_open_wrapper((char *) fname, "rb", REPORT_ERRORS, NULL); in mysqlnd_sha256_get_rsa_key()
H A Dmysqlnd_debug.c47 self->stream = php_stream_open_wrapper(self->file_name, in MYSQLND_METHOD()
H A Dmysqlnd_net.c125 …net_stream = php_stream_open_wrapper((char*) scheme + sizeof("pipe://") - 1, "r+", streams_options… in MYSQLND_METHOD()
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c190 stream = php_stream_open_wrapper(uri, "rb", REPORT_ERRORS, NULL); in dsn_from_uri()
H A Dpdo_stmt.c2142 php_stream *out = php_stream_open_wrapper("php://output", "w", 0, NULL); in PHP_METHOD()
/PHP-5.5/ext/pgsql/
H A Dpgsql.c3031 stream = php_stream_open_wrapper(z_filename, mode, REPORT_ERRORS, NULL);
/PHP-5.5/ext/phar/
H A Dphar.c1336 fp = php_stream_open_wrapper(fname, "rb", IGNORE_URL|STREAM_MUST_SEEK|0, &actual);
1499 fp = php_stream_open_wrapper(fname, "rb", IGNORE_URL|STREAM_MUST_SEEK, &actual);
2378 fp = php_stream_open_wrapper(fname, "rb", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, &actual);
2624 oldfile = php_stream_open_wrapper(phar->fname, "rb", 0, NULL);
3252 …phar->fp = php_stream_open_wrapper(phar->fname, "w+b", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, …
H A Dphar_object.c1639 fp = php_stream_open_wrapper(fname, "rb", STREAM_MUST_SEEK|0, &opened); in phar_build()
3861 if (!(resource = php_stream_open_wrapper(fname, "rb", 0, NULL))) { in PHP_METHOD()
3920 if (!(fp = php_stream_open_wrapper(phar_obj->arc.archive->fname, "rb", 0, NULL))) { in PHP_METHOD()
3958 fp = php_stream_open_wrapper(phar_obj->arc.archive->fname, "rb", 0, NULL); in PHP_METHOD()
4246 fp = php_stream_open_wrapper(fullpath, "w+b", REPORT_ERRORS|ENFORCE_SAFE_MODE, NULL); in phar_extract_file()
4248 fp = php_stream_open_wrapper(fullpath, "w+b", REPORT_ERRORS, NULL); in phar_extract_file()
4320 …fp = php_stream_open_wrapper(phar_obj->arc.archive->fname, "rb", IGNORE_URL|STREAM_MUST_SEEK, &act… in PHP_METHOD()
H A Dtar.c1121 oldfile = php_stream_open_wrapper(phar->fname, "rb", 0, NULL); in phar_tar_flush()
1289 …phar->fp = php_stream_open_wrapper(phar->fname, "w+b", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, … in phar_tar_flush()
H A Dutil.c113 entry->fp = php_stream_open_wrapper(entry->tmp, "rb", STREAM_MUST_SEEK|0, NULL); in phar_get_efp()
641 …phar_set_pharfp(phar, php_stream_open_wrapper(phar->fname, "rb", IGNORE_URL|STREAM_MUST_SEEK|0, NU… in phar_open_archive_fp()
718 entry->fp = php_stream_open_wrapper(entry->tmp, "rb", STREAM_MUST_SEEK|0, NULL); in phar_open_entry_fp()
1558 pfp = php_stream_open_wrapper(pfile, "rb", 0, NULL);
H A Dzip.c1358 oldfile = php_stream_open_wrapper(phar->fname, "rb", 0, NULL); in phar_zip_flush()
1494 …phar->fp = php_stream_open_wrapper(phar->fname, "w+b", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, … in phar_zip_flush()
/PHP-5.5/ext/standard/
H A Dbasic_functions.c4735 stream = php_stream_open_wrapper(opt, "a", IGNORE_URL_WIN | REPORT_ERRORS, NULL);

Completed in 159 milliseconds

12