opened_path        51 Zend/zend.c    ZEND_API FILE *(*zend_fopen)(const char *filename, char **opened_path TSRMLS_DC);
opened_path       454 Zend/zend.c    static FILE *zend_fopen_wrapper(const char *filename, char **opened_path TSRMLS_DC) /* {{{ */
opened_path       456 Zend/zend.c    	if (opened_path) {
opened_path       457 Zend/zend.c    		*opened_path = estrdup(filename);
opened_path      1334 Zend/zend.c    		if (file_handle->opened_path) {
opened_path      1336 Zend/zend.c    			zend_hash_add(&EG(included_files), file_handle->opened_path, strlen(file_handle->opened_path) + 1, (void *)&dummy, sizeof(int), NULL);
opened_path       549 Zend/zend.h    	FILE *(*fopen_function)(const char *filename, char **opened_path TSRMLS_DC);
opened_path       700 Zend/zend.h    extern ZEND_API FILE *(*zend_fopen)(const char *filename, char **opened_path TSRMLS_DC);
opened_path        39 Zend/zend_dtrace.c 	DTRACE_COMPILE_FILE_ENTRY(file_handle->opened_path, (char *)file_handle->filename);
opened_path        41 Zend/zend_dtrace.c 	DTRACE_COMPILE_FILE_RETURN(file_handle->opened_path, (char *)file_handle->filename);
opened_path       271 Zend/zend_language_scanner.c 	file_handle->opened_path = NULL;
opened_path       533 Zend/zend_language_scanner.c 	if (file_handle->opened_path) {
opened_path       534 Zend/zend_language_scanner.c 		file_path = file_handle->opened_path;
opened_path       617 Zend/zend_language_scanner.c 	char *opened_path = NULL;
opened_path       628 Zend/zend_language_scanner.c 	file_handle.opened_path = NULL;
opened_path       635 Zend/zend_language_scanner.c 		if (!file_handle.opened_path) {
opened_path       636 Zend/zend_language_scanner.c 			file_handle.opened_path = opened_path = estrndup(Z_STRVAL_P(filename), Z_STRLEN_P(filename));
opened_path       639 Zend/zend_language_scanner.c 		zend_hash_add(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1, (void *)&dummy, sizeof(int), NULL);
opened_path       641 Zend/zend_language_scanner.c 		if (opened_path) {
opened_path       642 Zend/zend_language_scanner.c 			efree(opened_path);
opened_path       790 Zend/zend_language_scanner.c 	file_handle.opened_path = NULL;
opened_path       135 Zend/zend_stream.c 	handle->opened_path = NULL;
opened_path       136 Zend/zend_stream.c 	handle->handle.fp = zend_fopen(filename, &handle->opened_path TSRMLS_CC);
opened_path       325 Zend/zend_stream.c 	if (fh->opened_path) {
opened_path       326 Zend/zend_stream.c 		efree(fh->opened_path);
opened_path       327 Zend/zend_stream.c 		fh->opened_path = NULL;
opened_path        65 Zend/zend_stream.h 	char              *opened_path;
opened_path      3988 Zend/zend_vm_def.h 						if (!file_handle.opened_path) {
opened_path      3989 Zend/zend_vm_def.h 							file_handle.opened_path = estrdup(resolved_path);
opened_path      3992 Zend/zend_vm_def.h 						if (zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1)==SUCCESS) {
opened_path      2963 Zend/zend_vm_execute.h 						if (!file_handle.opened_path) {
opened_path      2964 Zend/zend_vm_execute.h 							file_handle.opened_path = estrdup(resolved_path);
opened_path      2967 Zend/zend_vm_execute.h 						if (zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1)==SUCCESS) {
opened_path      8329 Zend/zend_vm_execute.h 						if (!file_handle.opened_path) {
opened_path      8330 Zend/zend_vm_execute.h 							file_handle.opened_path = estrdup(resolved_path);
opened_path      8333 Zend/zend_vm_execute.h 						if (zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1)==SUCCESS) {
opened_path      13698 Zend/zend_vm_execute.h 						if (!file_handle.opened_path) {
opened_path      13699 Zend/zend_vm_execute.h 							file_handle.opened_path = estrdup(resolved_path);
opened_path      13702 Zend/zend_vm_execute.h 						if (zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1)==SUCCESS) {
opened_path      31367 Zend/zend_vm_execute.h 						if (!file_handle.opened_path) {
opened_path      31368 Zend/zend_vm_execute.h 							file_handle.opened_path = estrdup(resolved_path);
opened_path      31371 Zend/zend_vm_execute.h 						if (zend_hash_add_empty_element(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1)==SUCCESS) {
opened_path       212 ext/bz2/bz2.c  											char **opened_path,
opened_path       242 ext/bz2/bz2.c  	if (opened_path && bz_file) {
opened_path       243 ext/bz2/bz2.c  		*opened_path = estrdup(path_copy);
opened_path       252 ext/bz2/bz2.c  		stream = php_stream_open_wrapper(path, mode, options | STREAM_WILL_CAST, opened_path);
opened_path       264 ext/bz2/bz2.c  		if (opened_path && !bz_file && mode[0] == 'w') {
opened_path       265 ext/bz2/bz2.c  			VCWD_UNLINK(*opened_path);
opened_path        50 ext/bz2/php_bz2.h PHP_BZ2_API php_stream *_php_stream_bz2open(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path        54 ext/bz2/php_bz2.h #define php_stream_bz2open(wrapper, path, mode, options, opened_path)	_php_stream_bz2open((wrapper), (path), (mode), (options), (opened_path), NULL STREAMS_CC TSRMLS_CC)
opened_path       628 ext/dba/dba.c  	char *opened_path = NULL;
opened_path       843 ext/dba/dba.c  				info->lock.fp = php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|IGNORE_PATH|persistent_flag, &opened_path);
opened_path       850 ext/dba/dba.c  					info->lock.name = opened_path;
opened_path       852 ext/dba/dba.c  					if (opened_path) {
opened_path       853 ext/dba/dba.c  						info->lock.name = pestrdup(opened_path, persistent);
opened_path       854 ext/dba/dba.c  						efree(opened_path);
opened_path       860 ext/dba/dba.c  			info->lock.fp = php_stream_open_wrapper(lock_name, lock_file_mode, STREAM_MUST_SEEK|REPORT_ERRORS|IGNORE_PATH|persistent_flag, &opened_path);
opened_path       865 ext/dba/dba.c  					info->path = pestrdup(opened_path, persistent);
opened_path       869 ext/dba/dba.c  					info->lock.name = opened_path;
opened_path       871 ext/dba/dba.c  					info->lock.name = pestrdup(opened_path, persistent);
opened_path       872 ext/dba/dba.c  					efree(opened_path);
opened_path       693 ext/opcache/ZendAccelerator.c 	if (!file_handle->opened_path) {
opened_path       712 ext/opcache/ZendAccelerator.c 	if (GetFileAttributesEx(file_handle->opened_path, GetFileExInfoStandard, &fdata) != 0) {
opened_path       777 ext/opcache/ZendAccelerator.c 				char *file_path = file_handle->opened_path;
opened_path       842 ext/opcache/ZendAccelerator.c 	if (file_handle->opened_path) {
opened_path       843 ext/opcache/ZendAccelerator.c 		if (strcmp(persistent_script->full_path, file_handle->opened_path) != 0) {
opened_path       856 ext/opcache/ZendAccelerator.c 		file_handle->opened_path = full_path_ptr;
opened_path       862 ext/opcache/ZendAccelerator.c 			file_handle->opened_path = NULL;
opened_path       870 ext/opcache/ZendAccelerator.c 			file_handle->opened_path = NULL;
opened_path       876 ext/opcache/ZendAccelerator.c 		file_handle->opened_path = NULL;
opened_path       881 ext/opcache/ZendAccelerator.c 	ps_handle.opened_path = persistent_script->full_path;
opened_path       948 ext/opcache/ZendAccelerator.c             if (file_handle->opened_path) {
opened_path       949 ext/opcache/ZendAccelerator.c                 cwd = file_handle->opened_path;
opened_path      1085 ext/opcache/ZendAccelerator.c 		file_handle.opened_path = realpath;
opened_path      1333 ext/opcache/ZendAccelerator.c 	if (file_handle->opened_path && zend_accel_blacklist_is_blacklisted(&accel_blacklist, file_handle->opened_path)) {
opened_path      1451 ext/opcache/ZendAccelerator.c 	if (file_handle->opened_path) {
opened_path      1452 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path_len = strlen(file_handle->opened_path);
opened_path      1453 ext/opcache/ZendAccelerator.c 		new_persistent_script->full_path = estrndup(file_handle->opened_path, new_persistent_script->full_path_len);
opened_path      1551 ext/opcache/ZendAccelerator.c 			if (file_handle->opened_path &&
opened_path      1552 ext/opcache/ZendAccelerator.c 			    (bucket = zend_accel_hash_find_entry(&ZCSG(hash), file_handle->opened_path, strlen(file_handle->opened_path) + 1)) != NULL) {
opened_path      1864 ext/opcache/ZendAccelerator.c 				handle->opened_path = NULL;
opened_path      1871 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
opened_path      1887 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
opened_path      1903 ext/opcache/ZendAccelerator.c 						handle->opened_path = resolved_path;
opened_path      1966 ext/opcache/ZendAccelerator.c 				handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
opened_path      1979 ext/opcache/ZendAccelerator.c 					handle->opened_path = estrndup(persistent_script->full_path, persistent_script->full_path_len);
opened_path      2043 ext/opcache/ZendAccelerator.c 			handle.opened_path = NULL;
opened_path       775 ext/opcache/zend_accelerator_module.c 	handle.opened_path = NULL;
opened_path       302 ext/phar/dirstream.c php_stream *phar_wrapper_open_dir(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */
opened_path        36 ext/phar/dirstream.h php_stream* phar_wrapper_open_dir(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path      3343 ext/phar/phar.c 					if (file_handle->opened_path) {
opened_path      3344 ext/phar/phar.c 						efree(file_handle->opened_path);
opened_path      3346 ext/phar/phar.c 					file_handle->opened_path = f.opened_path;
opened_path       255 ext/phar/phar_object.c 			file_handle.opened_path = NULL;
opened_path       158 ext/phar/stream.c static php_stream * phar_wrapper_open_url(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */
opened_path       234 ext/phar/stream.c 		if (opened_path) {
opened_path       235 ext/phar/stream.c 			spprintf(opened_path, MAXPATHLEN, "phar://%s/%s", idata->phar->fname, idata->internal_file->filename);
opened_path       252 ext/phar/stream.c 				if (opened_path) {
opened_path       253 ext/phar/stream.c 					spprintf(opened_path, MAXPATHLEN, "%s", phar->fname);
opened_path       278 ext/phar/stream.c 				if (opened_path) {
opened_path       279 ext/phar/stream.c 					spprintf(opened_path, MAXPATHLEN, "%s", phar->fname);
opened_path       335 ext/phar/stream.c 	if (opened_path) {
opened_path       336 ext/phar/stream.c 		spprintf(opened_path, MAXPATHLEN, "phar://%s/%s", idata->phar->fname, idata->internal_file->filename);
opened_path        27 ext/phar/stream.h static php_stream* phar_wrapper_open_url(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path       604 ext/readline/readline_cli.c 		prepend_file.opened_path = NULL;
opened_path       279 ext/spl/php_spl.c 		if (!file_handle.opened_path) {
opened_path       280 ext/spl/php_spl.c 			file_handle.opened_path = estrndup(class_file, class_file_len);
opened_path       282 ext/spl/php_spl.c 		if (zend_hash_add(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1, (void *)&dummy, sizeof(int), NULL)==SUCCESS) {
opened_path      5235 ext/standard/basic_functions.c 	file_handle.opened_path = NULL;
opened_path       265 ext/standard/browscap.c 	fh.opened_path = NULL;
opened_path       821 ext/standard/file.c 	char *opened_path;
opened_path       840 ext/standard/file.c 	if ((fd = php_open_temporary_fd_ex(dir, p, &opened_path, 1 TSRMLS_CC)) >= 0) {
opened_path       842 ext/standard/file.c 		RETVAL_STRING(opened_path, 0);
opened_path       134 ext/standard/ftp_fopen_wrapper.c 										 char **opened_path, php_stream_context *context, php_stream **preuseid,
opened_path       415 ext/standard/ftp_fopen_wrapper.c 									 int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path       458 ext/standard/ftp_fopen_wrapper.c 			return php_stream_url_wrap_http(wrapper, path, mode, options, opened_path, context STREAMS_CC TSRMLS_CC);
opened_path       466 ext/standard/ftp_fopen_wrapper.c 	stream = php_ftp_fopen_connect(wrapper, path, mode, options, opened_path, context, &reuseid, &resource, &use_ssl, &use_ssl_on_data TSRMLS_CC);
opened_path       696 ext/standard/ftp_fopen_wrapper.c 									char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path       708 ext/standard/ftp_fopen_wrapper.c 	stream = php_ftp_fopen_connect(wrapper, path, mode, options, opened_path, context, &reuseid, &resource, &use_ssl, &use_ssl_on_data TSRMLS_CC);
opened_path       113 ext/standard/http_fopen_wrapper.c 		const char *path, const char *mode, int options, char **opened_path, 
opened_path       899 ext/standard/http_fopen_wrapper.c 			stream = php_stream_url_wrap_http_ex(wrapper, new_path, mode, options, opened_path, context, --redirect_max, HTTP_WRAPPER_REDIRECTED STREAMS_CC TSRMLS_CC);
opened_path       961 ext/standard/http_fopen_wrapper.c php_stream *php_stream_url_wrap_http(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */
opened_path       963 ext/standard/http_fopen_wrapper.c 	return php_stream_url_wrap_http_ex(wrapper, path, mode, options, opened_path, context, PHP_URL_REDIRECT_MAX, HTTP_WRAPPER_HEADER_INIT STREAMS_CC TSRMLS_CC);
opened_path       175 ext/standard/php_fopen_wrapper.c 									 char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) /* {{{ */
opened_path       348 ext/standard/php_fopen_wrapper.c 		if (!(stream = php_stream_open_wrapper(p + 10, mode, options, opened_path))) {
opened_path        26 ext/standard/php_fopen_wrappers.h php_stream *php_stream_url_wrap_http(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path        27 ext/standard/php_fopen_wrappers.h php_stream *php_stream_url_wrap_ftp(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path        92 ext/zip/php_zip.h php_stream *php_stream_zip_opener(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path       256 ext/zip/zip_stream.c 											char **opened_path,
opened_path       316 ext/zip/zip_stream.c 			if (opened_path) {
opened_path       317 ext/zip/zip_stream.c 				*opened_path = estrdup(path);
opened_path        61 ext/zlib/php_zlib.h php_stream *php_stream_gzopen(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path       112 ext/zlib/zlib_fopen_wrapper.c 							  char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path       131 ext/zlib/zlib_fopen_wrapper.c 	innerstream = php_stream_open_wrapper_ex(path, mode, STREAM_MUST_SEEK | options | STREAM_WILL_CAST, opened_path, context);
opened_path       342 main/fopen_wrappers.c static FILE *php_fopen_and_set_opened_path(const char *path, const char *mode, char **opened_path TSRMLS_DC)
opened_path       350 main/fopen_wrappers.c 	if (fp && opened_path) {
opened_path       351 main/fopen_wrappers.c 		*opened_path = expand_filepath_with_mode(path, NULL, NULL, 0, CWD_EXPAND TSRMLS_CC);
opened_path       611 main/fopen_wrappers.c PHPAPI FILE *php_fopen_with_path(const char *filename, const char *mode, const char *path, char **opened_path TSRMLS_DC)
opened_path       621 main/fopen_wrappers.c 	if (opened_path) {
opened_path       622 main/fopen_wrappers.c 		*opened_path = NULL;
opened_path       637 main/fopen_wrappers.c 		return php_fopen_and_set_opened_path(filename, mode, opened_path TSRMLS_CC);
opened_path       675 main/fopen_wrappers.c 		fp = php_fopen_and_set_opened_path(trypath, mode, opened_path TSRMLS_CC);
opened_path        51 main/fopen_wrappers.h PHPAPI FILE *php_fopen_with_path(const char *filename, const char *mode, const char *path, char **opened_path TSRMLS_DC);
opened_path      1378 main/main.c    static FILE *php_fopen_wrapper_for_zend(const char *filename, char **opened_path TSRMLS_DC)
opened_path      1380 main/main.c    	return php_stream_open_wrapper_as_file((char *)filename, "rb", USE_PATH|IGNORE_URL_WIN|REPORT_ERRORS|STREAM_OPEN_FOR_INCLUDE, opened_path);
opened_path      1417 main/main.c    	php_stream *stream = php_stream_open_wrapper((char *)filename, "rb", mode, &handle->opened_path);
opened_path      2560 main/main.c     			primary_file->opened_path == NULL &&
opened_path      2569 main/main.c    				primary_file->opened_path = estrndup(realfile, realfile_len);
opened_path      2575 main/main.c    			prepend_file.opened_path = NULL;
opened_path      2585 main/main.c    			append_file.opened_path = NULL;
opened_path       100 main/php_open_temporary_file.c 	char *opened_path;
opened_path       141 main/php_open_temporary_file.c 	if (spprintf(&opened_path, 0, "%s%s%sXXXXXX", new_state.cwd, trailing_slash, pfx) >= MAXPATHLEN) {
opened_path       142 main/php_open_temporary_file.c 		efree(opened_path);
opened_path       149 main/php_open_temporary_file.c 	if (GetTempFileName(new_state.cwd, pfx, 0, opened_path)) {
opened_path       152 main/php_open_temporary_file.c 		if (VCWD_CHMOD(opened_path, 0600)) {
opened_path       153 main/php_open_temporary_file.c 			efree(opened_path);
opened_path       157 main/php_open_temporary_file.c 		fd = VCWD_OPEN_MODE(opened_path, open_flags, 0600);
opened_path       161 main/php_open_temporary_file.c 	fd = mkstemp(opened_path);
opened_path       163 main/php_open_temporary_file.c 	if (mktemp(opened_path)) {
opened_path       164 main/php_open_temporary_file.c 		fd = VCWD_OPEN(opened_path, open_flags);
opened_path       169 main/php_open_temporary_file.c 		efree(opened_path);
opened_path       171 main/php_open_temporary_file.c 		*opened_path_p = opened_path;
opened_path        77 main/php_streams.h #define php_stream_fopen_temporary_file_rel(dir, pfx, opened_path)	_php_stream_fopen_temporary_file((dir), (pfx), (opened_path) STREAMS_REL_CC TSRMLS_CC)
opened_path       135 main/php_streams.h 			int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path       144 main/php_streams.h 			int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path       551 main/php_streams.h PHPAPI php_stream *_php_stream_open_wrapper_ex(const char *path, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path       354 main/streams/cast.c PHPAPI FILE * _php_stream_open_wrapper_as_file(char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC)
opened_path       359 main/streams/cast.c 	stream = php_stream_open_wrapper_rel(path, mode, options|STREAM_WILL_CAST, opened_path);
opened_path       367 main/streams/cast.c 		if (opened_path && *opened_path) {
opened_path       368 main/streams/cast.c 			efree(*opened_path);
opened_path       210 main/streams/glob_wrapper.c 		int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path       222 main/streams/glob_wrapper.c 		if (opened_path) {
opened_path       223 main/streams/glob_wrapper.c 			*opened_path = estrdup(path);
opened_path       623 main/streams/memory.c 												const char *mode, int options, char **opened_path,
opened_path        30 main/streams/php_stream_plain_wrapper.h PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, char **opened_path, int options STREAMS_DC TSRMLS_DC);
opened_path        33 main/streams/php_stream_plain_wrapper.h PHPAPI php_stream *_php_stream_fopen_with_path(const char *filename, const char *mode, const char *path, char **opened_path, int options STREAMS_DC TSRMLS_DC);
opened_path        48 main/streams/php_stream_plain_wrapper.h PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char *pfx, char **opened_path STREAMS_DC TSRMLS_DC);
opened_path        49 main/streams/php_stream_plain_wrapper.h #define php_stream_fopen_temporary_file(dir, pfx, opened_path)	_php_stream_fopen_temporary_file((dir), (pfx), (opened_path) STREAMS_CC TSRMLS_CC)
opened_path        54 main/streams/php_stream_plain_wrapper.h PHPAPI FILE * _php_stream_open_wrapper_as_file(char * path, char * mode, int options, char **opened_path STREAMS_DC TSRMLS_DC);
opened_path        55 main/streams/php_stream_plain_wrapper.h #define php_stream_open_wrapper_as_file(path, mode, options, opened_path) _php_stream_open_wrapper_as_file((path), (mode), (options), (opened_path) STREAMS_CC TSRMLS_CC)
opened_path       189 main/streams/plain_wrapper.c 	char *opened_path = NULL;
opened_path       192 main/streams/plain_wrapper.c 	fd = php_open_temporary_fd(dir, pfx, &opened_path TSRMLS_CC);
opened_path       197 main/streams/plain_wrapper.c 			*opened_path_ptr = opened_path;
opened_path       204 main/streams/plain_wrapper.c 			stream->orig_path = estrdup(opened_path);
opened_path       206 main/streams/plain_wrapper.c 			self->temp_file_name = opened_path;
opened_path       880 main/streams/plain_wrapper.c 		int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path       887 main/streams/plain_wrapper.c 		return php_glob_stream_wrapper.wops->dir_opener(&php_glob_stream_wrapper, path, mode, options, opened_path, context STREAMS_REL_CC TSRMLS_CC);
opened_path       918 main/streams/plain_wrapper.c PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, char **opened_path, int options STREAMS_DC TSRMLS_DC)
opened_path       946 main/streams/plain_wrapper.c 				if (opened_path) {
opened_path       947 main/streams/plain_wrapper.c 					*opened_path = realpath;
opened_path       972 main/streams/plain_wrapper.c 			if (opened_path) {
opened_path       973 main/streams/plain_wrapper.c 				*opened_path = realpath;
opened_path       994 main/streams/plain_wrapper.c 					if (opened_path) {
opened_path       995 main/streams/plain_wrapper.c 						efree(*opened_path);
opened_path       996 main/streams/plain_wrapper.c 						*opened_path = NULL;
opened_path      1018 main/streams/plain_wrapper.c 		int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path      1024 main/streams/plain_wrapper.c 	return php_stream_fopen_rel(path, mode, opened_path, options);
opened_path      1383 main/streams/plain_wrapper.c PHPAPI php_stream *_php_stream_fopen_with_path(const char *filename, const char *mode, const char *path, char **opened_path, int options STREAMS_DC TSRMLS_DC)
opened_path      1395 main/streams/plain_wrapper.c 	if (opened_path) {
opened_path      1396 main/streams/plain_wrapper.c 		*opened_path = NULL;
opened_path      1421 main/streams/plain_wrapper.c 		return php_stream_fopen_rel(filename, mode, opened_path, options);
opened_path      1433 main/streams/plain_wrapper.c 		return php_stream_fopen_rel(filename, mode, opened_path, options);
opened_path      1454 main/streams/plain_wrapper.c 		return php_stream_fopen_rel(trypath, mode, opened_path, options);
opened_path      1459 main/streams/plain_wrapper.c 		return php_stream_fopen_rel(filename, mode, opened_path, options);
opened_path      1506 main/streams/plain_wrapper.c 		stream = php_stream_fopen_rel(trypath, mode, opened_path, options);
opened_path      2020 main/streams/streams.c 		char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path      2029 main/streams/streams.c 	if (opened_path) {
opened_path      2030 main/streams/streams.c 		*opened_path = NULL;
opened_path      2066 main/streams/streams.c 				opened_path, context STREAMS_REL_CC TSRMLS_CC);
opened_path      2084 main/streams/streams.c 		if (opened_path && !*opened_path && resolved_path) {
opened_path      2085 main/streams/streams.c 			*opened_path = resolved_path;
opened_path      2145 main/streams/streams.c 		if (opened_path && *opened_path) {
opened_path      2146 main/streams/streams.c 			efree(*opened_path);
opened_path      2147 main/streams/streams.c 			*opened_path = NULL;
opened_path        48 main/streams/userspace.c static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, const char *filename, const char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path        56 main/streams/userspace.c 		int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
opened_path       336 main/streams/userspace.c 									   int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path       409 main/streams/userspace.c 		if (Z_TYPE_P(zopened) == IS_STRING && opened_path) {
opened_path       410 main/streams/userspace.c 			*opened_path = estrndup(Z_STRVAL_P(zopened), Z_STRLEN_P(zopened));
opened_path       442 main/streams/userspace.c 		int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC)
opened_path       412 sapi/aolserver/aolserver.c 	file_handle.opened_path = NULL;
opened_path       606 sapi/apache/mod_php5.c 		fh.opened_path = NULL;
opened_path        50 sapi/apache/sapi_apache.c 		file_handle.opened_path = NULL;
opened_path       545 sapi/apache2filter/sapi_apache2.c 	zfd.opened_path = NULL;
opened_path       664 sapi/apache2handler/sapi_apache2.c 		zfd.opened_path = NULL;
opened_path       655 sapi/apache_hooks/mod_php5.c 		fh.opened_path = NULL;
opened_path        51 sapi/apache_hooks/sapi_apache.c 		file_handle.opened_path = NULL;
opened_path       644 sapi/caudium/caudium.c   file_handle.opened_path = NULL;
opened_path      2330 sapi/cgi/cgi_main.c 			file_handle.opened_path = NULL;
opened_path       629 sapi/cli/php_cli.c 	file_handle->opened_path = NULL;
opened_path       952 sapi/cli/php_cli.c 		file_handle.opened_path = NULL;
opened_path      2041 sapi/cli/php_cli_server.c 		zfd.opened_path = NULL;
opened_path      2165 sapi/cli/php_cli_server.c 	zfd.opened_path = NULL;
opened_path       449 sapi/continuity/capi.c    file_handle.opened_path = NULL;
opened_path       855 sapi/isapi/php5isapi.c 			file_handle.opened_path = NULL;
opened_path       560 sapi/litespeed/lsapi_main.c     file_handle->opened_path = NULL;
opened_path       575 sapi/litespeed/lsapi_main.c     file_handle->opened_path = NULL;
opened_path       902 sapi/litespeed/lsapi_main.c                             file_handle.opened_path = NULL;
opened_path       913 sapi/litespeed/lsapi_main.c                             file_handle.opened_path = NULL;
opened_path       144 sapi/milter/php_milter.c 	file_handle.opened_path = NULL;
opened_path       210 sapi/milter/php_milter.c 	file_handle.opened_path = NULL;
opened_path      1038 sapi/nsapi/nsapi.c 	file_handle.opened_path = NULL;
opened_path       355 sapi/pi3web/pi3web_sapi.c 		file_handle.opened_path = NULL;
opened_path       586 sapi/roxen/roxen.c   file_handle.opened_path = NULL;
opened_path       427 sapi/thttpd/thttpd.c 		file_handle.opened_path = NULL;
opened_path       303 sapi/tux/php_tux.c 	file_handle.opened_path = NULL;
opened_path       209 sapi/webjames/webjames.c 	file_handle.opened_path = NULL;