Lines Matching refs:psz
45 char *psz;
79 if (pArg->psz)
88 memcpy(pArg->psz, pachChars, cbChars);
90 pArg->psz += cbChars;
92 *pArg->psz = '\0';
108 size_t off = pArg->psz - pArg->pszBuffer;
117 pArg->psz = pszBuffer + off;
122 memcpy(pArg->psz, pachChars, cbChars);
124 pArg->psz += cbChars;
126 *pArg->psz = '\0';
134 pArg->psz = NULL;
152 Arg.psz = szBuf;
156 if (Arg.psz)
162 char *psz = (char *)RTMemAllocTag(cbRet + 1, pszTag);
163 if (psz)
164 memcpy(psz, szBuf, cbRet + 1);
165 *ppszBuffer = psz;
170 char *psz = (char *)RTMemReallocTag(Arg.pszBuffer, cbRet + 1, pszTag);
171 *ppszBuffer = psz ? psz : Arg.pszBuffer;