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

/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstShflCase.cpp192 static int vbsfCorrectCasing(char *pszFullPath, char *pszStartComponent) argument
201 Log2(("vbsfCorrectCasing: %s %s\n", pszFullPath, pszStartComponent));
203 cbComponent = strlen(pszStartComponent);
214 Assert(pszFullPath < pszStartComponent-1);
215 Assert(*(pszStartComponent-1) == RTPATH_DELIMITER);
216 *(pszStartComponent-1) = 0;
224 *(pszStartComponent-1) = RTPATH_DELIMITER;
247 && !RTStrICmp(pszStartComponent, &pDirEntry->szName[0]))
249 Log(("Found original name %s (%s)\n", &pDirEntry->szName[0], pszStartComponent));
250 strcpy(pszStartComponent,
[all...]
/vbox/src/VBox/HostServices/SharedFolders/
H A Dvbsf.cpp115 * @param pszStartComponent .
117 static int vbsfCorrectCasing(SHFLCLIENTDATA *pClient, char *pszFullPath, char *pszStartComponent) argument
119 Log2(("vbsfCorrectCasing: %s %s\n", pszFullPath, pszStartComponent));
121 AssertReturn((uintptr_t)pszFullPath < (uintptr_t)pszStartComponent - 1U, VERR_INTERNAL_ERROR_2);
122 AssertReturn(pszStartComponent[-1] == RTPATH_DELIMITER, VERR_INTERNAL_ERROR_5);
128 size_t cchComponent = strlen(pszStartComponent);
129 size_t cchParentDir = pszStartComponent - pszFullPath;
179 && !RTStrICmp(pszStartComponent, &pDirEntry->szName[0]))
181 Log(("Found original name %s (%s)\n", &pDirEntry->szName[0], pszStartComponent));
182 strcpy(pszStartComponent,
[all...]

Completed in 43 milliseconds