Searched refs:cbPathDst (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathAppend.cpp37 RTDECL(int) RTPathAppend(char *pszPath, size_t cbPathDst, const char *pszAppend) argument
39 return RTPathAppendEx(pszPath, cbPathDst, pszAppend, RTSTR_MAX);
H A DRTPathJoin.cpp40 RTDECL(int) RTPathJoin(char *pszPathDst, size_t cbPathDst, const char *pszPathSrc, argument
51 if (cchPathSrc >= cbPathDst)
55 return RTPathAppend(pszPathDst, cbPathDst, pszAppend);
H A DRTPathJoinA.cpp50 size_t cbPathDst = cchPathSrc + cchAppend + 4; local
51 char *pszPathDst = RTStrAlloc(cbPathDst);
55 int rc = RTPathAppend(pszPathDst, cbPathDst, pszAppend);
61 rc = RTStrRealloc(&pszPathDst, cbPathDst * 2);
63 rc = RTPathAppend(pszPathDst, cbPathDst, pszAppend);
H A DRTPathJoinEx.cpp40 RTDECL(int) RTPathJoinEx(char *pszPathDst, size_t cbPathDst, argument
52 if (cchPathSrc >= cbPathDst)
57 return RTPathAppendEx(pszPathDst, cbPathDst, pszAppend, cchAppendMax);
H A DRTPathAppendEx.cpp107 RTDECL(int) RTPathAppendEx(char *pszPath, size_t cbPathDst, const char *pszAppend, size_t cchAppendMax) argument
109 char *pszPathEnd = RTStrEnd(pszPath, cbPathDst);
122 if (cchAppend >= cbPathDst)
141 if ((size_t)(pszPathEnd - pszPath) + cchAppend >= cbPathDst)
147 if ((size_t)(pszPathEnd - pszPath) + 1 + cchAppend >= cbPathDst)
158 if ((size_t)(pszPathEnd - pszPath) + cchAppend >= cbPathDst)
175 if ((size_t)(pszPathEnd - pszPath) + cchAppend >= cbPathDst)
H A DRTPathCalcRelative.cpp40 RTDECL(int) RTPathCalcRelative(char *pszPathDst, size_t cbPathDst, argument
47 AssertReturn(cbPathDst, VERR_INVALID_PARAMETER);
121 if (cchPathTmp >= cbPathDst)
/vbox/include/iprt/
H A Dpath.h875 * cbPathDst bytes. No changes has been made.
877 * than cbPathDst-1 bytes (failed to find terminator). Asserted.
882 * @param cbPathDst The size of the buffer pszPath points to, terminator
889 RTDECL(int) RTPathAppend(char *pszPath, size_t cbPathDst, const char *pszAppend);
899 * cbPathDst bytes. No changes has been made.
901 * than cbPathDst-1 bytes (failed to find terminator). Asserted.
906 * @param cbPathDst The size of the buffer pszPath points to, terminator
924 RTDECL(int) RTPathAppendEx(char *pszPath, size_t cbPathDst, const char *pszAppend, size_t cchAppendMax);
932 * cbPathDst bytes.
934 * than cbPathDst
[all...]

Completed in 45 milliseconds