Lines Matching refs:substitutename
638 char *substitutename = NULL; in tsrm_realpath_r() local
716 …substitutename = php_win32_cp_conv_w_to_any(tmpsubstname, substitutename_len, &substitutename_len); in tsrm_realpath_r()
717 if (!substitutename || substitutename_len >= MAXPATHLEN) { in tsrm_realpath_r()
720 free(substitutename); in tsrm_realpath_r()
751 …substitutename = php_win32_cp_conv_w_to_any(tmpsubstname, substitutename_len, &substitutename_len); in tsrm_realpath_r()
752 if (!substitutename || substitutename_len >= MAXPATHLEN) { in tsrm_realpath_r()
755 free(substitutename); in tsrm_realpath_r()
770 substitutename = malloc((len + 1) * sizeof(char)); in tsrm_realpath_r()
771 if (!substitutename) { in tsrm_realpath_r()
777 memcpy(substitutename, path, len + 1); in tsrm_realpath_r()
795 if (strncmp(substitutename, "\\??\\Volume{",11) == 0 in tsrm_realpath_r()
796 || strncmp(substitutename, "\\\\?\\Volume{",11) == 0 in tsrm_realpath_r()
797 || strncmp(substitutename, "\\??\\UNC\\", 8) == 0 in tsrm_realpath_r()
803 if (strncmp(substitutename, "\\??\\", 4) == 0 in tsrm_realpath_r()
804 || strncmp(substitutename, "\\\\?\\", 4) == 0) { in tsrm_realpath_r()
810 char * tmp2 = substitutename + substitutename_off; in tsrm_realpath_r()
824 fprintf(stderr, "sub: %s ", substitutename); in tsrm_realpath_r()
829 free(substitutename); in tsrm_realpath_r()