Searched defs:cchAppend (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathJoinA.cpp49 size_t cchAppend = strlen(pszAppend); local
50 size_t cbPathDst = cchPathSrc + cchAppend + 4;
/vbox/src/VBox/Runtime/common/string/
H A Dstringalloc.cpp164 RTDECL(int) RTStrAAppendNTag(char **ppsz, const char *pszAppend, size_t cchAppend, const char *pszTag) argument
169 if (!cchAppend)
171 if (cchAppend == RTSTR_MAX)
172 cchAppend = strlen(pszAppend);
174 Assert(cchAppend == RTStrNLen(pszAppend, cchAppend));
177 pszNew = (char *)RTMemReallocTag(*ppsz, cchOrg + cchAppend + 1, pszTag);
181 memcpy(&pszNew[cchOrg], pszAppend, cchAppend);
182 pszNew[cchOrg + cchAppend] = '\0';
/vbox/src/VBox/HostDrivers/Support/testcase/
H A DtstNtQueryStuff.cpp57 size_t cchAppend = strlen(pszAppend); local
58 if (cchAppend + 1 + fWithSpace <= *pcbBuf)
65 memcpy(pszBuf, pszAppend, cchAppend + 1);
66 *pcbBuf -= cchAppend;
67 pszBuf += cchAppend;

Completed in 91 milliseconds