Searched defs:pszPath1 (Results 1 - 3 of 3) sorted by relevance
/vbox/src/VBox/Runtime/generic/ |
H A D | RTPathIsSame-generic.cpp | 37 RTDECL(int) RTPathIsSame(const char *pszPath1, const char *pszPath2) argument 42 if (pszPath1 == pszPath2) 44 if (!pszPath1) 48 if (!strcmp(pszPath1, pszPath2)) 55 int rc = RTPathQueryInfoEx(pszPath1, &ObjInfo1, RTFSOBJATTRADD_UNIX, RTPATH_F_ON_LINK); 78 rc = RTPathAbs(pszPath1, szPath1, sizeof(szPath1));
|
/vbox/src/VBox/Runtime/common/path/ |
H A D | comparepaths.cpp | 42 * @param pszPath1 Path to compare. 47 static int rtPathCompare(const char *pszPath1, const char *pszPath2, bool fLimit) argument 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) argument 140 return rtPathCompare(pszPath1, pszPath [all...] |
/vbox/src/VBox/Runtime/common/misc/ |
H A D | uri.cpp | 308 char *pszPath1 = 0; local 326 pszPath1 = rtUriPercentEncodeN(pszPath, RTSTR_MAX); 327 if (!pszPath1) 329 cbSize += strlen(pszPath1); 357 if (pszPath1) 359 RTStrCatP(&pszTmp, &cbSize, pszPath1); 376 if (pszPath1) 377 RTStrFree(pszPath1); 590 char *pszPath1 = 0; local 596 pszPath1 [all...] |
Completed in 36 milliseconds