Searched refs:IsDrivePath (Results 1 – 10 of 10) sorted by relevance
95 bool IsDrivePath(const wchar_t *s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR… in IsDrivePath() function254 bool IsDrivePath(CFSTR s) throw() { return IS_LETTER_CHAR(s[0]) && s[1] == ':' && IS_SEPAR(s[2]); } in IsDrivePath() function263 return IsDrivePath(s); in IsDrivePath_SuperAllowed()270 return IsDrivePath(s) && s[kDrivePrefixSize] == 0; in IsDriveRootPath_SuperAllowed()318 if (IsDrivePath(s)) in GetRootPrefixSize_Of_SimplePath()367 if (IsDrivePath(s)) in GetRootPrefixSize_Of_SimplePath()674 if (IsDrivePath(s)) in GetSuperPathBase()703 if (IsDrivePath(curDir)) in GetSuperPathBase()
24 bool IsDrivePath(const wchar_t *s) throw(); // first 3 chars are drive chars like "a:\\"64 bool IsDrivePath(CFSTR s) throw();
160 if (!IsDrivePath(path)) in FillLinkData()399 if (!IsDrivePath(SubsName.Ptr(k_LinkPrefix_Size))) in IsOkNamePair()431 if (IsDrivePath(s.Ptr(k_LinkPrefix_Size))) in GetPath()
687 if (NName::IsDrivePath(path + rootSize) && path[rootSize + 3] == 0) in Find()
23 if (NName::IsDrivePath(prefix)) in GetWorkDir()
328 if (NName::IsDrivePath(to) || in GetRelativePath()329 NName::IsDrivePath(from)) in GetRelativePath()
1294 if (!IsDrivePath(link)) in FillFixedReparse()
252 if (IsDrivePath(FilePath)) in OnInit()256 if (IsDrivePath(FilePath.Ptr(kSuperPathPrefixSize))) in OnInit()
431 if (IsDrivePath(TempFolderPath)) in OnInit()435 if (IsDrivePath(TempFolderPath.Ptr(kSuperPathPrefixSize))) in OnInit()
2865 static bool IsDrivePath(const wchar_t *s) { return IS_LETTER_CHAR(s[0]) && s[1] == ':' /* && s[2] =… in IsDrivePath() function2866 static bool IsDrivePath(const char *s) { return IS_LETTER_CHAR(s[0]) && s[1] == ':' /* && s[2] =… in IsDrivePath() function2870 return (s[0] == WCHAR_PATH_SEPARATOR && s[1] == WCHAR_PATH_SEPARATOR) || IsDrivePath(s); in IsAbsolutePath()2875 return (s[0] == CHAR_PATH_SEPARATOR && s[1] == CHAR_PATH_SEPARATOR) || IsDrivePath(s); in IsAbsolutePath()