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

/vbox/src/VBox/Runtime/common/path/
H A DRTPathCalcRelative.cpp42 const char *pszPathTo)
49 AssertPtrReturn(pszPathTo, VERR_INVALID_POINTER);
51 AssertReturn(RTPathStartsWithRoot(pszPathTo), VERR_INVALID_PARAMETER);
52 AssertReturn(RTStrCmp(pszPathFrom, pszPathTo), VERR_INVALID_PARAMETER);
59 size_t offRootTo = rtPathRootSpecLen(pszPathTo);
62 || RTStrNCmp(pszPathFrom, pszPathTo, offRootFrom))
66 while ( *pszPathFrom == *pszPathTo
68 && *pszPathTo != '\0')
71 pszPathTo++;
83 while (!RTPATH_IS_SEP(*pszPathTo))
40 RTPathCalcRelative(char *pszPathDst, size_t cbPathDst, const char *pszPathFrom, const char *pszPathTo) argument
[all...]

Completed in 47 milliseconds