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

/vbox/src/bldprogs/
H A DVBoxCPP.cpp641 * @param pStrBuf The buffer structure to initialize.
644 static void vbcppStrBufInit(PVBCPPSTRBUF pStrBuf, PVBCPP pThis) argument
646 pStrBuf->pThis = pThis;
647 pStrBuf->cchBuf = 0;
648 pStrBuf->cbBufAllocated = 0;
649 pStrBuf->pszBuf = NULL;
656 * @param pStrBuf Pointer to the string buffer.
658 static void vbcppStrBufDelete(PVBCPPSTRBUF pStrBuf) argument
660 RTMemFree(pStrBuf->pszBuf);
661 pStrBuf
673 vbcppStrBufGrow(PVBCPPSTRBUF pStrBuf, size_t cbMin) argument
699 vbcppStrBufAppendN(PVBCPPSTRBUF pStrBuf, const char *pchSrc, size_t cchSrc) argument
725 vbcppStrBufAppendCh(PVBCPPSTRBUF pStrBuf, char ch) argument
750 vbcppStrBufAppend(PVBCPPSTRBUF pStrBuf, const char *psz) argument
762 vbcppStrBufLastCh(PVBCPPSTRBUF pStrBuf) argument
2040 vbcppMacroExpandValueWithArguments(PVBCPP pThis, PVBCPPMACROEXP pExp, PVBCPPMACRO pMacro, PVBCPPSTRBUF pStrBuf) argument
4308 vbcppExtractQuotedString(PVBCPP pThis, PSCMSTREAM pStrmInput, PVBCPPSTRBUF pStrBuf, char chOpen, char chClose) argument
4361 vbcppExtractDirectiveLine(PVBCPP pThis, PSCMSTREAM pStrmInput, PVBCPPSTRBUF pStrBuf, size_t *poffComment) argument
[all...]

Completed in 53 milliseconds