Lines Matching refs:pszPath
41 RTDECL(int) RTPathGetCurrentOnDrive(char chDrive, char *pszPath, size_t cbPath)
47 int rc = RTPathGetCurrent(pszPath, cbPath);
50 if ( ( chDrive == *pszPath
51 || RT_C_TO_LOWER(chDrive) == RT_C_TO_LOWER(*pszPath))
52 && RTPATH_IS_VOLSEP(pszPath[1]))
60 pszPath[0] = RT_C_TO_UPPER(chDrive);
61 pszPath[1] = ':';
62 pszPath[2] = RTPATH_SLASH;
63 pszPath[3] = '\0';
76 pszPath[0] = RTPATH_SLASH;
77 pszPath[1] = '\0';