real_path         212 TSRM/tsrm_win32.c 	char * real_path = NULL;
real_path         219 TSRM/tsrm_win32.c 			real_path = (char *)malloc(MAX_PATH);
real_path         220 TSRM/tsrm_win32.c 			if(tsrm_realpath(pathname, real_path) == NULL) {
real_path         223 TSRM/tsrm_win32.c 			pathname = real_path;
real_path         227 TSRM/tsrm_win32.c 			free(real_path);
real_path         233 TSRM/tsrm_win32.c 			free(real_path);
real_path         285 TSRM/tsrm_win32.c 			if(bucket == NULL && real_path == NULL) {
real_path         288 TSRM/tsrm_win32.c 				real_path = (char *)malloc(MAX_PATH);
real_path         289 TSRM/tsrm_win32.c 				if(tsrm_realpath(pathname, real_path) != NULL) {
real_path         290 TSRM/tsrm_win32.c 					pathname = real_path;
real_path         371 TSRM/tsrm_win32.c 		if(real_path != NULL) {
real_path         372 TSRM/tsrm_win32.c 			free(real_path);
real_path         373 TSRM/tsrm_win32.c 			real_path = NULL;
real_path        1422 Zend/zend_virtual_cwd.c CWD_API char *virtual_realpath(const char *path, char *real_path) /* {{{ */
real_path        1455 Zend/zend_virtual_cwd.c 		memcpy(real_path, new_state.cwd, len);
real_path        1456 Zend/zend_virtual_cwd.c 		real_path[len] = '\0';
real_path        1457 Zend/zend_virtual_cwd.c 		retval = real_path;
real_path        1914 Zend/zend_virtual_cwd.c CWD_API char *tsrm_realpath(const char *path, char *real_path) /* {{{ */
real_path        1948 Zend/zend_virtual_cwd.c 	if (real_path) {
real_path        1950 Zend/zend_virtual_cwd.c 		memcpy(real_path, new_state.cwd, copy_len);
real_path        1951 Zend/zend_virtual_cwd.c 		real_path[copy_len] = '\0';
real_path        1953 Zend/zend_virtual_cwd.c 		return real_path;
real_path         162 Zend/zend_virtual_cwd.h CWD_API char *virtual_realpath(const char *path, char *real_path);
real_path         208 Zend/zend_virtual_cwd.h CWD_API char *tsrm_realpath(const char *path, char *real_path);
real_path         269 Zend/zend_virtual_cwd.h #define VCWD_REALPATH(path, real_path) virtual_realpath(path, real_path)
real_path         320 Zend/zend_virtual_cwd.h #define VCWD_REALPATH(path, real_path) tsrm_realpath(path, real_path)
real_path         230 ext/opcache/zend_accelerator_blacklist.c 	char buf[MAXPATHLEN + 1], real_path[MAXPATHLEN + 1], *blacklist_path = NULL;
real_path         247 ext/opcache/zend_accelerator_blacklist.c 	memset(real_path, 0, sizeof(real_path));
real_path         283 ext/opcache/zend_accelerator_blacklist.c 			expand_filepath_ex(path_dup, real_path, blacklist_path, blacklist_path_length);
real_path         285 ext/opcache/zend_accelerator_blacklist.c 			expand_filepath(path_dup, real_path);
real_path         287 ext/opcache/zend_accelerator_blacklist.c 		path_length = strlen(real_path);
real_path         300 ext/opcache/zend_accelerator_blacklist.c 		memcpy(blacklist->entries[blacklist->pos].path, real_path, path_length + 1);
real_path         740 main/fopen_wrappers.c PHPAPI char *expand_filepath(const char *filepath, char *real_path)
real_path         742 main/fopen_wrappers.c 	return expand_filepath_ex(filepath, real_path, NULL, 0);
real_path         748 main/fopen_wrappers.c PHPAPI char *expand_filepath_ex(const char *filepath, char *real_path, const char *relative_to, size_t relative_to_len)
real_path         750 main/fopen_wrappers.c 	return expand_filepath_with_mode(filepath, real_path, relative_to, relative_to_len, CWD_FILEPATH);
real_path         756 main/fopen_wrappers.c PHPAPI char *expand_filepath_with_mode(const char *filepath, char *real_path, const char *relative_to, size_t relative_to_len, int realpath_mode)
real_path         793 main/fopen_wrappers.c 				if (real_path) {
real_path         794 main/fopen_wrappers.c 					memcpy(real_path, filepath, copy_len);
real_path         795 main/fopen_wrappers.c 					real_path[copy_len] = '\0';
real_path         797 main/fopen_wrappers.c 					real_path = estrndup(filepath, copy_len);
real_path         800 main/fopen_wrappers.c 				return real_path;
real_path         817 main/fopen_wrappers.c 	if (real_path) {
real_path         819 main/fopen_wrappers.c 		memcpy(real_path, new_state.cwd, copy_len);
real_path         820 main/fopen_wrappers.c 		real_path[copy_len] = '\0';
real_path         822 main/fopen_wrappers.c 		real_path = estrndup(new_state.cwd, new_state.cwd_length);
real_path         826 main/fopen_wrappers.c 	return real_path;
real_path          29 main/fopen_wrappers.h PHPAPI char *expand_filepath(const char *filepath, char *real_path);
real_path          30 main/fopen_wrappers.h PHPAPI char *expand_filepath_ex(const char *filepath, char *real_path, const char *relative_to, size_t relative_to_len);
real_path          31 main/fopen_wrappers.h PHPAPI char *expand_filepath_with_mode(const char *filepath, char *real_path, const char *relative_to, size_t relative_to_len, int use_realpath);
real_path         751 sapi/cgi/cgi_main.c 		char *real_path = NULL;
real_path         760 sapi/cgi/cgi_main.c 			real_path = tsrm_realpath(path, NULL);
real_path         761 sapi/cgi/cgi_main.c 			if (real_path == NULL) {
real_path         764 sapi/cgi/cgi_main.c 			real_path_len = strlen(real_path);
real_path         765 sapi/cgi/cgi_main.c 			path = real_path;
real_path         799 sapi/cgi/cgi_main.c 		if (real_path) {
real_path         800 sapi/cgi/cgi_main.c 			efree(real_path);
real_path        1173 sapi/cgi/cgi_main.c 			char *real_path = NULL;
real_path        1218 sapi/cgi/cgi_main.c 				(real_path = tsrm_realpath(script_path_translated, NULL)) == NULL)
real_path        1382 sapi/cgi/cgi_main.c 				efree(real_path);
real_path         917 sapi/cli/php_cli.c 				char real_path[MAXPATHLEN];
real_path         918 sapi/cli/php_cli.c 				if (VCWD_REALPATH(script_file, real_path)) {
real_path         919 sapi/cli/php_cli.c 					translated_path = strdup(real_path);
real_path         687 sapi/fpm/fpm/fpm_main.c 		char * real_path;
real_path         696 sapi/fpm/fpm/fpm_main.c 			real_path = tsrm_realpath(path, NULL);
real_path         697 sapi/fpm/fpm/fpm_main.c 			if (real_path == NULL) {
real_path         700 sapi/fpm/fpm/fpm_main.c 			real_path_len = strlen(real_path);
real_path         701 sapi/fpm/fpm/fpm_main.c 			path = real_path;
real_path        1128 sapi/fpm/fpm/fpm_main.c 			char *real_path = NULL;
real_path        1176 sapi/fpm/fpm/fpm_main.c 				(real_path = tsrm_realpath(script_path_translated, NULL)) == NULL)
real_path        1367 sapi/fpm/fpm/fpm_main.c 				efree(real_path);