Searched refs:cchAbsPath (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathAbsEx.cpp51 * @param cchAbsPath Size of the buffer.
53 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, size_t cchAbsPath) argument
98 return RTPathAbs(szTmpPath, pszAbsPath, cchAbsPath);
102 return RTPathAbs(pszPath, pszAbsPath, cchAbsPath);
/vbox/src/VBox/Runtime/r3/
H A Ddir2.cpp156 size_t cchAbsPath = strlen(szAbsPath); local
157 if (cchAbsPath + 1 >= RTPATH_MAX)
159 szAbsPath[cchAbsPath++] = '/';
160 szAbsPath[cchAbsPath] = 0;
175 rc = rtDirRemoveRecursiveSub(szAbsPath, cchAbsPath, &SharedDirEntryBuf, &SharedObjInfoBuf);
182 szAbsPath[cchAbsPath] = 0;
/vbox/src/VBox/Runtime/generic/
H A DRTPathAbs-generic.cpp147 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath) argument
165 LogFlow(("RTPathAbs(%p:{%s}, %p, %d): returns %Rrc\n", pszPath, pszPath, pszAbsPath, cchAbsPath, VERR_FILENAME_TOO_LONG));
181 rc = RTPathGetCurrent(pszAbsPath, cchAbsPath);
193 if (cch + 1 < cchAbsPath)
276 LogFlow(("RTPathAbs(%p:{%s}, %p, %d): returns %Rrc\n", pszPath, pszPath, pszAbsPath, cchAbsPath, rc));
346 if (cchTmpPath < cchAbsPath)
355 RT_SUCCESS(rc) ? pszAbsPath : "<failed>", cchAbsPath, rc));
/vbox/include/iprt/
H A Dpath.h294 * @param cchAbsPath Size of the buffer.
296 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath);
318 * @param cchAbsPath Size of the buffer.
320 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, size_t cchAbsPath);
/vbox/src/VBox/Runtime/r3/win/
H A Dpath-win.cpp98 * @param cchAbsPath Size of the buffer.
100 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath)
124 rc = RTUtf16ToUtf8Ex(&wsz[0], RTSTR_MAX, &pszAbsPath, cchAbsPath, &cch);

Completed in 2135 milliseconds