Searched defs:cchAbsPath (Results 1 - 3 of 3) 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));

Completed in 40 milliseconds