Lines Matching refs:pszSubDir
403 * Appends @a pszSubDir to @a pszPath and check whether it exists and is a
412 * @param pszSubDir The sub directory to append.
415 static bool rtDbgCfgIsDirAndFixCase(char *pszPath, const char *pszSubDir, bool fCaseInsensitive)
424 int rc = RTPathAppend(pszPath, RTPATH_MAX, pszSubDir);
452 * @param pszSubDir The sub directory to append.
455 static bool rtDbgCfgIsDirAndFixCase2(char *pszPath, const char *pszSubDir, const char *pszSuffix, bool fCaseInsensitive)
466 int rc = RTPathAppend(pszPath, RTPATH_MAX, pszSubDir);
1601 * @param pszSubDir The output buffer.
1608 static int rtDbgCfgConstructUuidMappingSubDir(char *pszSubDir, size_t cbSubDir, const char *pszTopDir, PCRTUUID pUuid)
1615 memcpy(pszSubDir, pszTopDir, cchTopDir);
1617 pszSubDir += cchTopDir;
1618 *pszSubDir++ = RTPATH_SLASH;
1622 int rc = RTUuidToStr(pUuid, pszSubDir + 1, cbSubDir - 1); AssertRCReturn(rc, rc);
1623 RTStrToUpper(pszSubDir + 1);
1624 memmove(pszSubDir, pszSubDir + 1, 4);
1625 pszSubDir += 4;
1626 *pszSubDir = RTPATH_SLASH;
1627 pszSubDir += 5;
1628 *pszSubDir = RTPATH_SLASH;
1629 pszSubDir += 5;
1630 *pszSubDir = RTPATH_SLASH;
1631 pszSubDir += 5;
1632 *pszSubDir = RTPATH_SLASH;
1633 pszSubDir += 5;
1634 *pszSubDir = RTPATH_SLASH;