Lines Matching defs:name
92 /* WinXP-64 doesn't support ':', '\\' and '/' symbols in name of alt stream.
94 WIN32 functions don't allow empty alt stream name "name:" */
125 static bool IsSupportedName(const UString &name)
131 if (name.Len() < len)
133 if (!name.IsPrefixedBy_Ascii_NoCase(reservedName))
137 wchar_t c = name[len];
144 wchar_t c = name[len++];
154 static void CorrectUnsupportedName(UString &name)
156 if (!IsSupportedName(name))
157 name.InsertAtFront(L'_');
179 UString Get_Correct_FsFile_Name(const UString &name)
181 UString res = name;
232 // we convert "c:name" to "c:\name", if absIsAllowed path.