Lines Matching refs:resolved_name
103 char resolved_name[MAXPATHLEN + 1]; in ZEND_INI_MH() local
104 if (expand_filepath(ptr, resolved_name) == NULL) { in ZEND_INI_MH()
109 if (php_check_open_basedir_ex(resolved_name, 0) != 0) { in ZEND_INI_MH()
118 smart_str_appends(&buf, resolved_name); in ZEND_INI_MH()
144 char resolved_name[MAXPATHLEN + 1]; local
167 if (expand_filepath(path, resolved_name) == NULL) {
171 path_len = strlen(resolved_name);
172 memcpy(path_tmp, resolved_name, path_len + 1); /* safe */
174 while (VCWD_REALPATH(path_tmp, resolved_name) == NULL) {
244 resolved_name_len = strlen(resolved_name);
246 if (resolved_name[resolved_name_len - 1] != PHP_DIR_SEPARATOR) {
247 resolved_name[resolved_name_len] = PHP_DIR_SEPARATOR;
248 resolved_name[++resolved_name_len] = '\0';
254 if (strncasecmp(resolved_basedir, resolved_name, resolved_basedir_len) == 0) {
256 if (strncmp(resolved_basedir, resolved_name, resolved_basedir_len) == 0) {
259 resolved_name[resolved_basedir_len - 1] != PHP_DIR_SEPARATOR) {
269 if (strncasecmp(resolved_basedir, resolved_name, resolved_name_len) == 0) {
271 if (strncmp(resolved_basedir, resolved_name, resolved_name_len) == 0) {