Lines Matching refs:pszStartComponent
192 static int vbsfCorrectCasing(char *pszFullPath, char *pszStartComponent)
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, &pDirEntry->szName[0]);
256 Log(("vbsfCorrectCasing %s failed with %d\n", pszStartComponent, rc));