Lines Matching refs:off
51 * Drive letter? Chop off at root slash.
60 * UNC? Chop off after share.
68 size_t off = 3;
69 while (!RTPATH_IS_SLASH(pszPath[off]) && pszPath[off])
70 off++;
71 size_t offServerSlash = off;
74 if (RTPATH_IS_SLASH(pszPath[off]))
76 while (RTPATH_IS_SLASH(pszPath[off]))
77 off++;
78 if (pszPath[off])
81 while (!RTPATH_IS_SLASH(pszPath[off]) && pszPath[off])
82 off++;
86 off = offServerSlash;