Home
last modified time | relevance | path

Searched refs:opened_path (Results 76 – 88 of 88) sorted by relevance

1234

/php-src/docs-old/
H A Dstreams.md49 int options, char **opened_path);
65 * `opened_path` is used to return the path of the actual file opened, but if you
67 `efree()ing` `opened_path`.
68 * `opened_path` may be (and usually is) `NULL`.
82 const char *pfx, char **opened_path);
/php-src/Zend/
H A Dzend_language_scanner.l575 if (file_handle->opened_path) { in open_file_for_scanning()
576 compiled_filename = zend_string_copy(file_handle->opened_path); in open_file_for_scanning()
700 zend_string *opened_path = NULL; in compile_filename() local
706 if (!file_handle.opened_path) { in compile_filename()
707 file_handle.opened_path = opened_path = zend_string_copy(filename); in compile_filename()
710 zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path); in compile_filename()
712 if (opened_path) { in compile_filename()
713 zend_string_release_ex(opened_path, 0); in compile_filename()
H A Dzend.c86 ZEND_API FILE *(*zend_fopen)(zend_string *filename, zend_string **opened_path);
624 static FILE *zend_fopen_wrapper(zend_string *filename, zend_string **opened_path) /* {{{ */ in zend_fopen_wrapper() argument
626 if (opened_path) { in zend_fopen_wrapper()
627 *opened_path = zend_string_copy(filename); in zend_fopen_wrapper()
1893 if (file_handle->opened_path) { in zend_execute_script()
1894 zend_hash_add_empty_element(&EG(included_files), file_handle->opened_path); in zend_execute_script()
H A Dzend_execute.c4914 if (!file_handle.opened_path) { in zend_include_or_eval()
4915 file_handle.opened_path = zend_string_copy(resolved_path); in zend_include_or_eval()
4918 if (zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path)) { in zend_include_or_eval()
/php-src/ext/standard/tests/file/
H A Dinclude_userstream_003.phpt14 function stream_open($path, $mode, $options, &$opened_path)
H A Duserstreams.phpt92 function stream_open($path, $mode, $options, &$opened_path)
/php-src/sapi/litespeed/
H A Dlsapi_main.c1331 file_handle.opened_path = NULL; in cli_main()
1341 file_handle.opened_path = NULL; in cli_main()
/php-src/ext/standard/
H A Dfile.c693 zend_string *opened_path; in PHP_FUNCTION() local
709 …if ((fd = php_open_temporary_fd_ex(dir, ZSTR_VAL(p), &opened_path, PHP_TMP_FILE_OPEN_BASEDIR_CHECK… in PHP_FUNCTION()
711 RETVAL_STR(opened_path); in PHP_FUNCTION()
/php-src/ext/phar/
H A Ddirstream.c289 …rapper, const char *path, const char *mode, int options, zend_string **opened_path, php_stream_con… in phar_wrapper_open_dir() argument
H A Dphar.c3316 if (f.opened_path) { in phar_compile_file()
3317 zend_string_release(f.opened_path); in phar_compile_file()
3319 f.opened_path = file_handle->opened_path; in phar_compile_file()
/php-src/main/streams/
H A Dmemory.c606 const char *mode, int options, zend_string **opened_path, in php_stream_url_wrap_rfc2397() argument
/php-src/sapi/phpdbg/
H A Dphpdbg.c1098 …rapper, const char *path, const char *mode, int options, zend_string **opened_path, php_stream_con… in phpdbg_stream_url_wrap_php() argument
1118 …return PHPDBG_G(orig_url_wrap_php)->wops->stream_opener(wrapper, path, mode, options, opened_path,… in phpdbg_stream_url_wrap_php()
/php-src/ext/opcache/
H A Dzend_file_cache.c1773 zend_string *full_path = file_handle->opened_path;

Completed in 74 milliseconds

1234