Searched refs:pszPathDst (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathJoinA.cpp51 char *pszPathDst = RTStrAlloc(cbPathDst); local
52 if (pszPathDst)
54 memcpy(pszPathDst, pszPathSrc, cchPathSrc + 1);
55 int rc = RTPathAppend(pszPathDst, cbPathDst, pszAppend);
61 rc = RTStrRealloc(&pszPathDst, cbPathDst * 2);
63 rc = RTPathAppend(pszPathDst, cbPathDst, pszAppend);
66 RTStrFree(pszPathDst);
67 pszPathDst = NULL;
71 return pszPathDst;
H A DRTPathJoin.cpp40 RTDECL(int) RTPathJoin(char *pszPathDst, size_t cbPathDst, const char *pszPathSrc, argument
43 AssertPtr(pszPathDst);
53 memcpy(pszPathDst, pszPathSrc, cchPathSrc + 1);
55 return RTPathAppend(pszPathDst, cbPathDst, pszAppend);
H A DRTPathJoinEx.cpp40 RTDECL(int) RTPathJoinEx(char *pszPathDst, size_t cbPathDst, argument
44 AssertPtr(pszPathDst);
54 memcpy(pszPathDst, pszPathSrc, cchPathSrc);
55 pszPathDst[cchPathSrc] = '\0';
57 return RTPathAppendEx(pszPathDst, cbPathDst, pszAppend, cchAppendMax);
H A DRTPathCalcRelative.cpp40 RTDECL(int) RTPathCalcRelative(char *pszPathDst, size_t cbPathDst, argument
46 AssertPtrReturn(pszPathDst, VERR_INVALID_POINTER);
123 memcpy(pszPathDst, aszPathTmp, cchPathTmp + 1);
/vbox/include/iprt/
H A Dpath.h936 * @param pszPathDst Where to store the resulting path.
937 * @param cbPathDst The size of the buffer pszPathDst points to,
939 * @param pszPathSrc The base path to copy into @a pszPathDst before
945 RTDECL(int) RTPathJoin(char *pszPathDst, size_t cbPathDst, const char *pszPathSrc,
953 * @param pszPathSrc The base path to copy into @a pszPathDst before
970 * @param pszPathDst Where to store the resulting path.
971 * @param cbPathDst The size of the buffer pszPathDst points to,
973 * @param pszPathSrc The base path to copy into @a pszPathDst before
983 RTDECL(int) RTPathJoinEx(char *pszPathDst, size_t cbPathDst,
1030 * @param pszPathDst Wher
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstRTPath.cpp563 char *pszPathDst; local
564 RTTESTI_CHECK(pszPathDst = RTPathJoinA(pszInput, pszAppend));
565 if (!pszPathDst)
567 if (strcmp(pszPathDst, pszExpect))
574 pszInput, pszAppend, pszPathDst, pszExpect);
576 RTStrFree(pszPathDst);

Completed in 50 milliseconds