Searched defs:pszBuf (Results 51 - 60 of 60) sorted by relevance

123

/vbox/include/VBox/
H A Ddbg.h430 * @param pszBuf The output buffer.
436 DECLCALLBACKMEMBER(size_t, pfnStrPrintf)(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf, const char *pszFormat, ...);
443 * @param pszBuf The output buffer.
449 DECLCALLBACKMEMBER(size_t, pfnStrPrintfV)(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf,
692 DECLINLINE(size_t) DBGCCmdHlpStrPrintf(PDBGCCMDHLP pCmdHlp, char *pszBuf, size_t cbBuf, const char *pszFormat, ...) argument
698 cch = pCmdHlp->pfnStrPrintfV(pCmdHlp, pszBuf, cbBuf, pszFormat, va);
/vbox/src/VBox/Runtime/common/string/
H A Duniread.cpp522 * @param pszBuf The buffer. See fgets for output definition.
526 static char *GetLineFromFile(char *pszBuf, int cbBuf, FILE *pFile) argument
529 return fgets(pszBuf, cbBuf, pFile);
/vbox/src/bldprogs/
H A DVBoxTpG.cpp888 static RTEXITCODE generateProbeDefineName(char *pszBuf, size_t cbBuf, const char *pszProvider, const char *pszProbe) argument
895 *pszBuf++ = RT_C_TO_UPPER(*pszProvider++);
897 *pszBuf++ = '_';
903 *pszBuf++ = RT_C_TO_UPPER(*pszProbe++);
906 *pszBuf = '\0';
H A DVBoxCPP.cpp85 char *pszBuf; member in struct:VBCPPSTRBUF
649 pStrBuf->pszBuf = NULL;
660 RTMemFree(pStrBuf->pszBuf);
661 pStrBuf->pszBuf = NULL;
681 void *pv = RTMemRealloc(pStrBuf->pszBuf, cbNew);
685 pStrBuf->pszBuf = (char *)pv;
709 memcpy(&pStrBuf->pszBuf[cchBuf], pchSrc, cchSrc);
711 pStrBuf->pszBuf[cchBuf] = '\0';
735 pStrBuf->pszBuf[cchBuf++] = ch;
736 pStrBuf->pszBuf[cchBu
[all...]
/vbox/src/VBox/GuestHost/SharedClipboard/
H A Dx11-clipboard.cpp1033 * @param pszBuf where to write the converted string
1034 * @param cbBuf the size of the buffer pointed to by @a pszBuf
1038 static int clipWinTxtToUtf8(PRTUTF16 pwszSrc, size_t cbSrc, char *pszBuf, argument
1048 AssertPtr(pszBuf);
1061 rc = RTUtf16ToUtf8Ex(pwszTmp + 1, cwTmp - 1, &pszBuf, cbBuf,
1069 pszBuf));
/vbox/src/VBox/VMM/VMMR3/
H A DCPUMR3CpuId.cpp4916 static const char *getCacheAss(unsigned u, char *pszBuf) argument
4927 RTStrPrintf(pszBuf, 16, "%d way", u);
4928 return pszBuf;
H A DPATM.cpp105 static void patmPrintStat(PVM pVM, void *pvSample, char *pszBuf, size_t cchBuf);
6795 * @param pszBuf The buffer to print into.
6798 static void patmPrintStat(PVM pVM, void *pvSample, char *pszBuf, size_t cchBuf) argument
6806 RTStrPrintf(pszBuf, cchBuf, "size %04x ->%3s %8s - %08d - %08d",
/vbox/src/VBox/Runtime/common/misc/
H A Dlockvalidator.cpp555 * @param pszBuf Buffer that is big enough.
557 static const char *rtLockValComplainGetSubClassName(uint32_t uSubClass, char *pszBuf) argument
565 RTStrPrintf(pszBuf, 32, "invl-%u", uSubClass);
569 RTStrPrintf(pszBuf, 32, "%x", uSubClass);
570 return pszBuf;
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-ogl.cpp1334 char *pszBuf, size_t cbBuf, bool fOtherProfile)
1349 memcpy(pszBuf, pszCur, cch);
1350 pszBuf[cch] = '\0';
1354 memcpy(pszBuf, "<overflow>", RT_MIN(sizeof("<overflow>"), cbBuf));
1355 pszBuf[cbBuf - 1] = '\0';
1333 vmsvga3dShaderIfGetNextExtension(PVBOXVMSVGASHADERIF pThis, void **ppvEnumCtx, char *pszBuf, size_t cbBuf, bool fOtherProfile) argument
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl.cpp1838 const char *pszBuf local
1843 for (size_t i = 0; strlen(pszBuf + i) != 0; )
1847 i += strlen(pszBuf + i) + 1;
1860 size_t cchName = strlen(pszBuf + iBuf);
1861 aNames[i] = &pszBuf[iBuf];
1864 size_t cchValue = strlen(pszBuf + iBuf);
1865 aValues[i] = &pszBuf[iBuf];
1868 size_t cchTimestamp = strlen(pszBuf + iBuf);
1869 aTimestamps[i] = RTStrToUInt64(&pszBuf[iBuf]);
1872 size_t cchFlags = strlen(pszBuf
[all...]

Completed in 189 milliseconds

123