Searched defs:pszPathEnd (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathAppendEx.cpp109 char *pszPathEnd = RTStrEnd(pszPath, cbPathDst); local
110 AssertReturn(pszPathEnd, VERR_INVALID_PARAMETER);
120 if (pszPathEnd == pszPath)
132 if (!RTPATH_IS_SLASH(pszPathEnd[-1]))
137 if ( (size_t)(pszPathEnd - pszPath) == 2
141 if ((size_t)(pszPathEnd - pszPath) + cchAppend >= cbPathDst)
147 if ((size_t)(pszPathEnd - pszPath) + 1 + cchAppend >= cbPathDst)
149 *pszPathEnd++ = '/';
158 if ((size_t)(pszPathEnd - pszPath) + cchAppend >= cbPathDst)
171 while ( (size_t)(pszPathEnd
[all...]

Completed in 41 milliseconds