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

/vbox/src/VBox/Runtime/common/path/
H A DRTPathCalcRelative.cpp41 const char *pszPathFrom,
48 AssertPtrReturn(pszPathFrom, VERR_INVALID_POINTER);
50 AssertReturn(RTPathStartsWithRoot(pszPathFrom), VERR_INVALID_PARAMETER);
52 AssertReturn(RTStrCmp(pszPathFrom, pszPathTo), VERR_INVALID_PARAMETER);
58 size_t offRootFrom = rtPathRootSpecLen(pszPathFrom);
62 || RTStrNCmp(pszPathFrom, pszPathTo, offRootFrom))
66 while ( *pszPathFrom == *pszPathTo
67 && *pszPathFrom != '\0'
70 pszPathFrom++;
78 while (!RTPATH_IS_SEP(*pszPathFrom))
40 RTPathCalcRelative(char *pszPathDst, size_t cbPathDst, const char *pszPathFrom, const char *pszPathTo) argument
[all...]

Completed in 42 milliseconds