Home
last modified time | relevance | path

Searched refs:REPORT_ERRORS (Results 1 – 25 of 58) sorted by relevance

123

/PHP-5.6/ext/zlib/
H A Dzlib_fopen_wrapper.c119 if (options & REPORT_ERRORS) { in php_stream_gzopen()
136 if (SUCCESS == php_stream_cast(innerstream, PHP_STREAM_AS_FD, (void **) &fd, REPORT_ERRORS)) { in php_stream_gzopen()
152 if (options & REPORT_ERRORS) { in php_stream_gzopen()
H A Dzlib.c550 int flags = REPORT_ERRORS; in PHP_FUNCTION()
592 int flags = REPORT_ERRORS; in PHP_FUNCTION()
619 int flags = REPORT_ERRORS; in PHP_FUNCTION()
/PHP-5.6/ext/standard/
H A Dftp_fopen_wrapper.c923 if (options & REPORT_ERRORS) { in php_stream_ftp_unlink()
930 if (options & REPORT_ERRORS) { in php_stream_ftp_unlink()
941 if (options & REPORT_ERRORS) { in php_stream_ftp_unlink()
994 if (options & REPORT_ERRORS) { in php_stream_ftp_rename()
1005 if (options & REPORT_ERRORS) { in php_stream_ftp_rename()
1016 if (options & REPORT_ERRORS) { in php_stream_ftp_rename()
1052 if (options & REPORT_ERRORS) { in php_stream_ftp_mkdir()
1059 if (options & REPORT_ERRORS) { in php_stream_ftp_mkdir()
1146 if (options & REPORT_ERRORS) { in php_stream_ftp_rmdir()
1153 if (options & REPORT_ERRORS) { in php_stream_ftp_rmdir()
[all …]
H A Dphp_fopen_wrapper.c228 if (options & REPORT_ERRORS) { in php_stream_url_wrap_php()
247 if (options & REPORT_ERRORS) { in php_stream_url_wrap_php()
297 if (options & REPORT_ERRORS) { in php_stream_url_wrap_php()
304 if (options & REPORT_ERRORS) { in php_stream_url_wrap_php()
H A Dfsock.c79 stream = php_stream_xport_create(hostname, hostname_len, REPORT_ERRORS, in php_fsockopen_stream()
H A Dfile.c401 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION()
549 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION()
755 …m_open_wrapper_ex(filename, "rb", (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, NULL, context… in PHP_FUNCTION()
885 …m_open_wrapper_ex(filename, mode, (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, NULL, context… in PHP_NAMED_FUNCTION()
1307 if ((ret = VCWD_MKDIR(dir, (mode_t)mode)) < 0 && (options & REPORT_ERRORS)) { in php_mkdir_ex()
1316 return php_mkdir_ex(dir, mode, REPORT_ERRORS TSRMLS_CC); in php_mkdir()
1337 …hp_stream_mkdir(dir, mode, (recursive ? PHP_STREAM_MKDIR_RECURSIVE : 0) | REPORT_ERRORS, context)); in PHP_FUNCTION()
1356 RETURN_BOOL(php_stream_rmdir(dir, REPORT_ERRORS, context)); in PHP_FUNCTION()
1499 RETURN_BOOL(wrapper->wops->unlink(wrapper, filename, REPORT_ERRORS, context TSRMLS_CC)); in PHP_FUNCTION()
1730 srcstream = php_stream_open_wrapper_ex(src, "rb", src_flg | REPORT_ERRORS, NULL, ctx); in php_copy_file_ctx()
[all …]
H A Dproc_open.c564 if (FAILURE == php_stream_cast(stream, PHP_STREAM_AS_FD, (void **)&fd, REPORT_ERRORS)) { in PHP_FUNCTION()
654 REPORT_ERRORS|STREAM_WILL_CAST, NULL); in PHP_FUNCTION()
659 (void **)&fd, REPORT_ERRORS)) { in PHP_FUNCTION()
H A Dmail.c217 uint flags = IGNORE_URL_WIN | REPORT_ERRORS | STREAM_DISABLE_OPEN_BASEDIR; in php_mail_log_to_file()
H A Ddir.c228 dirp = php_stream_opendir(dirname, REPORT_ERRORS, context); in _php_do_opendir()
H A Dmd5.c92 stream = php_stream_open_wrapper(arg, "rb", REPORT_ERRORS, NULL); in PHP_NAMED_FUNCTION()
H A Dsha1.c82 stream = php_stream_open_wrapper(arg, "rb", REPORT_ERRORS, NULL); in PHP_FUNCTION()
/PHP-5.6/ext/recode/
H A Drecode.c202 if (FAILURE == php_stream_cast(instream, PHP_STREAM_AS_STDIO, (void**)&in_fp, REPORT_ERRORS)) { in PHP_FUNCTION()
206 if (FAILURE == php_stream_cast(outstream, PHP_STREAM_AS_STDIO, (void**)&out_fp, REPORT_ERRORS)) { in PHP_FUNCTION()
/PHP-5.6/ext/gd/
H A Dgd_ctx.c144 …stream = php_stream_open_wrapper(Z_STRVAL_P(to_zval), "wb", REPORT_ERRORS|IGNORE_PATH|IGNORE_URL_W… in _php_image_output_ctx()
153 stream = php_stream_open_wrapper(file, "wb", REPORT_ERRORS|IGNORE_PATH|IGNORE_URL_WIN, NULL); in _php_image_output_ctx()
/PHP-5.6/main/streams/
H A Dstreams.c258 if (options & REPORT_ERRORS || wrapper == NULL) { in php_stream_wrapper_log_error()
1817 if (options & REPORT_ERRORS) {
1854 if (options & REPORT_ERRORS) {
1868 if (options & REPORT_ERRORS) {
1982 path_to_open, "r", options ^ REPORT_ERRORS, NULL,
1992 if (stream == NULL && (options & REPORT_ERRORS)) {
2060 path_to_open, mode, options ^ REPORT_ERRORS,
2117 if (options & REPORT_ERRORS) {
2124 options ^= REPORT_ERRORS;
2138 if (stream == NULL && (options & REPORT_ERRORS)) {
[all …]
H A Dcast.c365 …S_STDIO|PHP_STREAM_CAST_TRY_HARD|PHP_STREAM_CAST_RELEASE, (void**)&fp, REPORT_ERRORS) == FAILURE) { in _php_stream_open_wrapper_as_file()
H A Dplain_wrapper.c940 if (options & REPORT_ERRORS) { in _php_stream_fopen()
1079 if (options & REPORT_ERRORS) { in php_plain_files_unlink()
1243 if (options & REPORT_ERRORS) { in php_plain_files_mkdir()
/PHP-5.6/ext/ftp/
H A Dphp_ftp.c880 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt+" : "rb+", REPORT_ERRORS, N… in PHP_FUNCTION()
882 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
894 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
941 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt+" : "rb+", REPORT_ERRORS, N… in PHP_FUNCTION()
943 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
955 …outstream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "wt" : "wb", REPORT_ERRORS, NUL… in PHP_FUNCTION()
1140 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS in PHP_FUNCTION()
1193 …if (!(instream = php_stream_open_wrapper(local, mode == FTPTYPE_ASCII ? "rt" : "rb", REPORT_ERRORS in PHP_FUNCTION()
/PHP-5.6/ext/bz2/
H A Dbz2.c260 if (SUCCESS == php_stream_cast(stream, PHP_STREAM_AS_FD, (void **) &fd, REPORT_ERRORS)) { in _php_stream_bz2open()
404 REPORT_ERRORS, in PHP_FUNCTION()
444 if (FAILURE == php_stream_cast(stream, PHP_STREAM_AS_FD, (void *) &fd, REPORT_ERRORS)) { in PHP_FUNCTION()
/PHP-5.6/ext/fileinfo/
H A Dfileinfo.c533 …stream = php_stream_open_wrapper_ex(buffer, "rb", ENFORCE_SAFE_MODE | REPORT_ERRORS, NULL, context… in _php_finfo_get_type()
535 stream = php_stream_open_wrapper_ex(buffer, "rb", REPORT_ERRORS, NULL, context); in _php_finfo_get_type()
/PHP-5.6/ext/phar/
H A Dfunc_interceptors.c79 stream = php_stream_opendir(name, REPORT_ERRORS, context); in PHAR_FUNC()
191 stream = php_stream_open_wrapper_ex(name, "rb", 0 | REPORT_ERRORS, NULL, context); in PHAR_FUNC()
309 stream = php_stream_open_wrapper_ex(name, "rb", 0 | REPORT_ERRORS, NULL, context); in PHAR_FUNC()
406 stream = php_stream_open_wrapper_ex(name, mode, 0 | REPORT_ERRORS, NULL, context); in PHAR_FUNC()
H A Dphar.c587 if (phar && error && !(options & REPORT_ERRORS)) {
1377 if (options & REPORT_ERRORS) {
1455 if (options & REPORT_ERRORS) {
1513 if (options & REPORT_ERRORS) {
2335 …if (phar_open_parsed_phar(fname, fname_len, alias, alias_len, 0, REPORT_ERRORS, NULL, 0 TSRMLS_CC)…
2368 fp = php_stream_open_wrapper(fname, "rb", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, &actual);
2385 …ret = phar_open_from_fp(fp, fname, fname_len, alias, alias_len, REPORT_ERRORS, NULL, 0, error TSRM…
3242 …phar->fp = php_stream_open_wrapper(phar->fname, "w+b", IGNORE_URL|STREAM_MUST_SEEK|REPORT_ERRORS, …
/PHP-5.6/ext/fileinfo/libmagic/
H A Dmagic.c386 stream = php_stream_open_wrapper((char *)inname, "rb", REPORT_ERRORS, NULL); in file_or_stream()
H A Dapprentice.c966 stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL); in load_1()
1177 dir = php_stream_opendir((char *)fn, REPORT_ERRORS, NULL); in apprentice_load()
2636 stream = php_stream_open_wrapper((char *)fn, "rb", REPORT_ERRORS, NULL); in apprentice_map()
2770 stream = php_stream_open_wrapper((char *)fn, "wb+", REPORT_ERRORS, NULL); in apprentice_compile()
/PHP-5.6/ext/hash/
H A Dhash.c149 stream = php_stream_open_wrapper_ex(data, "rb", REPORT_ERRORS, NULL, DEFAULT_CONTEXT); in php_hash_do_hash()
266 stream = php_stream_open_wrapper_ex(data, "rb", REPORT_ERRORS, NULL, DEFAULT_CONTEXT); in php_hash_do_hash_hmac()
477 stream = php_stream_open_wrapper_ex(filename, "rb", REPORT_ERRORS, NULL, context); in PHP_FUNCTION()
/PHP-5.6/ext/dba/
H A Ddba.c860 …= php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|REPORT_ERRORS|IGNORE_PATH|pe… 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()

Completed in 129 milliseconds

123