Lines Matching refs:pszPath1
42 * @param pszPath1 Path to compare.
47 static int rtPathCompare(const char *pszPath1, const char *pszPath2, bool fLimit)
49 if (pszPath1 == pszPath2)
51 if (!pszPath1)
58 int rc = RTStrToUni(pszPath1, &puszPath1);
107 return strcmp(pszPath1, pszPath2);
108 return strncmp(pszPath1, pszPath2, strlen(pszPath2));
129 * @param pszPath1 Path to compare (must be an absolute path).
138 RTDECL(int) RTPathCompare(const char *pszPath1, const char *pszPath2)
140 return rtPathCompare(pszPath1, pszPath2, false /* full path lengths */);