real_path         209 TSRM/tsrm_win32.c 	char * real_path = NULL;
real_path         216 TSRM/tsrm_win32.c 			real_path = (char *)malloc(MAX_PATH);
real_path         217 TSRM/tsrm_win32.c 			if(tsrm_realpath(pathname, real_path TSRMLS_CC) == NULL) {
real_path         220 TSRM/tsrm_win32.c 			pathname = real_path;
real_path         224 TSRM/tsrm_win32.c 			free(real_path);
real_path         230 TSRM/tsrm_win32.c 			free(real_path);
real_path         283 TSRM/tsrm_win32.c 			if(bucket == NULL && real_path == NULL) {
real_path         286 TSRM/tsrm_win32.c 				real_path = (char *)malloc(MAX_PATH);
real_path         287 TSRM/tsrm_win32.c 				if(tsrm_realpath(pathname, real_path TSRMLS_CC) != NULL) {
real_path         288 TSRM/tsrm_win32.c 					pathname = real_path;
real_path         369 TSRM/tsrm_win32.c 		if(real_path != NULL) {
real_path         370 TSRM/tsrm_win32.c 			free(real_path);
real_path         371 TSRM/tsrm_win32.c 			real_path = NULL;
real_path        1429 Zend/zend_virtual_cwd.c CWD_API char *virtual_realpath(const char *path, char *real_path TSRMLS_DC) /* {{{ */
real_path        1462 Zend/zend_virtual_cwd.c 		memcpy(real_path, new_state.cwd, len);
real_path        1463 Zend/zend_virtual_cwd.c 		real_path[len] = '\0';
real_path        1464 Zend/zend_virtual_cwd.c 		retval = real_path;
real_path        1956 Zend/zend_virtual_cwd.c CWD_API char *tsrm_realpath(const char *path, char *real_path TSRMLS_DC) /* {{{ */
real_path        1990 Zend/zend_virtual_cwd.c 	if (real_path) {
real_path        1992 Zend/zend_virtual_cwd.c 		memcpy(real_path, new_state.cwd, copy_len);
real_path        1993 Zend/zend_virtual_cwd.c 		real_path[copy_len] = '\0';
real_path        1995 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 TSRMLS_DC);
real_path         208 Zend/zend_virtual_cwd.h CWD_API char *tsrm_realpath(const char *path, char *real_path TSRMLS_DC);
real_path         269 Zend/zend_virtual_cwd.h #define VCWD_REALPATH(path, real_path) virtual_realpath(path, real_path TSRMLS_CC)
real_path         320 Zend/zend_virtual_cwd.h #define VCWD_REALPATH(path, real_path) tsrm_realpath(path, real_path TSRMLS_CC)
real_path        1711 ext/opcache/ZendAccelerator.c 	char *real_path;
real_path        1773 ext/opcache/ZendAccelerator.c 	real_path = emalloc(new_state.cwd_length + 1);
real_path        1774 ext/opcache/ZendAccelerator.c 	memcpy(real_path, new_state.cwd, new_state.cwd_length + 1);
real_path        1776 ext/opcache/ZendAccelerator.c 	return real_path;
real_path         246 ext/opcache/zend_accelerator_blacklist.c 	char buf[MAXPATHLEN + 1], real_path[MAXPATHLEN + 1], *blacklist_path = NULL;
real_path         268 ext/opcache/zend_accelerator_blacklist.c 	memset(real_path, 0, sizeof(real_path));
real_path         304 ext/opcache/zend_accelerator_blacklist.c 			expand_filepath_ex(path_dup, real_path, blacklist_path, blacklist_path_length TSRMLS_CC);
real_path         306 ext/opcache/zend_accelerator_blacklist.c 			expand_filepath(path_dup, real_path TSRMLS_CC);
real_path         308 ext/opcache/zend_accelerator_blacklist.c 		path_length = strlen(real_path);
real_path         321 ext/opcache/zend_accelerator_blacklist.c 		memcpy(blacklist->entries[blacklist->pos].path, real_path, path_length + 1);
real_path         730 main/fopen_wrappers.c PHPAPI char *expand_filepath(const char *filepath, char *real_path TSRMLS_DC)
real_path         732 main/fopen_wrappers.c 	return expand_filepath_ex(filepath, real_path, NULL, 0 TSRMLS_CC);
real_path         738 main/fopen_wrappers.c PHPAPI char *expand_filepath_ex(const char *filepath, char *real_path, const char *relative_to, size_t relative_to_len TSRMLS_DC)
real_path         740 main/fopen_wrappers.c 	return expand_filepath_with_mode(filepath, real_path, relative_to, relative_to_len, CWD_FILEPATH TSRMLS_CC);
real_path         746 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 TSRMLS_DC)
real_path         778 main/fopen_wrappers.c 				if (real_path) {
real_path         779 main/fopen_wrappers.c 					memcpy(real_path, filepath, copy_len);
real_path         780 main/fopen_wrappers.c 					real_path[copy_len] = '\0';
real_path         782 main/fopen_wrappers.c 					real_path = estrndup(filepath, copy_len);
real_path         785 main/fopen_wrappers.c 				return real_path;
real_path         802 main/fopen_wrappers.c 	if (real_path) {
real_path         804 main/fopen_wrappers.c 		memcpy(real_path, new_state.cwd, copy_len);
real_path         805 main/fopen_wrappers.c 		real_path[copy_len] = '\0';
real_path         807 main/fopen_wrappers.c 		real_path = estrndup(new_state.cwd, new_state.cwd_length);
real_path         811 main/fopen_wrappers.c 	return real_path;
real_path          29 main/fopen_wrappers.h PHPAPI char *expand_filepath(const char *filepath, char *real_path TSRMLS_DC);
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 TSRMLS_DC);
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 TSRMLS_DC);
real_path         776 sapi/cgi/cgi_main.c 		char *real_path = NULL;
real_path         785 sapi/cgi/cgi_main.c 			real_path = tsrm_realpath(path, NULL TSRMLS_CC);
real_path         786 sapi/cgi/cgi_main.c 			if (real_path == NULL) {
real_path         789 sapi/cgi/cgi_main.c 			real_path_len = strlen(real_path);
real_path         790 sapi/cgi/cgi_main.c 			path = real_path;
real_path         824 sapi/cgi/cgi_main.c 		if (real_path) {
real_path         825 sapi/cgi/cgi_main.c 			efree(real_path);
real_path        1197 sapi/cgi/cgi_main.c 			char *real_path = NULL;
real_path        1242 sapi/cgi/cgi_main.c 				(real_path = tsrm_realpath(script_path_translated, NULL TSRMLS_CC)) == NULL)
real_path        1406 sapi/cgi/cgi_main.c 				efree(real_path);
real_path         937 sapi/cli/php_cli.c 				char real_path[MAXPATHLEN];
real_path         938 sapi/cli/php_cli.c 				if (VCWD_REALPATH(script_file, real_path)) {
real_path         939 sapi/cli/php_cli.c 					translated_path = strdup(real_path);
real_path         718 sapi/fpm/fpm/fpm_main.c 		char * real_path;
real_path         727 sapi/fpm/fpm/fpm_main.c 			real_path = tsrm_realpath(path, NULL TSRMLS_CC);
real_path         728 sapi/fpm/fpm/fpm_main.c 			if (real_path == NULL) {
real_path         731 sapi/fpm/fpm/fpm_main.c 			real_path_len = strlen(real_path);
real_path         732 sapi/fpm/fpm/fpm_main.c 			path = real_path;
real_path        1165 sapi/fpm/fpm/fpm_main.c 			char *real_path = NULL;
real_path        1213 sapi/fpm/fpm/fpm_main.c 				(real_path = tsrm_realpath(script_path_translated, NULL TSRMLS_CC)) == NULL)
real_path        1404 sapi/fpm/fpm/fpm_main.c 				efree(real_path);