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

/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageHelp.cpp34 void showLogo(PRTSTREAM pStrm) argument
40 RTStrmPrintf(pStrm, VBOX_PRODUCT " Command Line Management Interface Version "
49 void printUsage(USAGECATEGORY fCategory, uint32_t fSubCategory, PRTSTREAM pStrm) argument
95 RTStrmPrintf(pStrm,
100 RTStrmPrintf(pStrm,
122 RTStrmPrintf(pStrm,
135 RTStrmPrintf(pStrm,
142 RTStrmPrintf(pStrm,
147 RTStrmPrintf(pStrm,
152 RTStrmPrintf(pStrm,
[all...]
H A DVBoxManage.cpp257 PRTSTREAM pStrm; local
259 vrc = RTStrmOpen(pszFilename, "r", &pStrm);
261 pStrm = g_pStdIn;
264 vrc = RTStrmReadEx(pStrm, szPasswd, sizeof(szPasswd)-1, &cbFile);
281 RTStrmClose(pStrm);
H A DVBoxManageGuestProp.cpp53 void usageGuestProperty(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2) argument
55 RTStrmPrintf(pStrm,
59 RTStrmPrintf(pStrm,
63 RTStrmPrintf(pStrm,
67 RTStrmPrintf(pStrm,
71 RTStrmPrintf(pStrm,
H A DVBoxInternalManage.cpp135 void printUsageInternal(USAGECATEGORY u64Cmd, PRTSTREAM pStrm) argument
137 RTStrmPrintf(pStrm,
H A DVBoxManageGuestCtrl.cpp303 void usageGuestControl(PRTSTREAM pStrm, const char *pcszSep1, const char *pcszSep2, uint32_t uSubCmd) argument
305 RTStrmPrintf(pStrm,
310 RTStrmPrintf(pStrm,
321 RTStrmPrintf(pStrm,
329 RTStrmPrintf(pStrm,
337 RTStrmPrintf(pStrm,
345 RTStrmPrintf(pStrm,
353 RTStrmPrintf(pStrm,
360 RTStrmPrintf(pStrm,
367 RTStrmPrintf(pStrm,
[all...]
/vbox/src/VBox/ValidationKit/utils/usb/
H A DUsbTest.cpp158 static void usbTestUsage(PRTSTREAM pStrm) argument
161 RTStrmPrintf(pStrm, "usage: %s [options]\n",
163 RTStrmPrintf(pStrm, "\n");
164 RTStrmPrintf(pStrm, "options: \n");
184 RTStrmPrintf(pStrm, " %-20s%s\n", szOpt, pszHelp);
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmodnm.cpp199 * @param pStrm The stream.
202 static int rtDbgModNmScanFile(PRTDBGMODNM pThis, PRTSTREAM pStrm, bool fAddSymbols) argument
217 while (RT_SUCCESS(rc = RTStrmGetLine(pStrm, szLine, sizeof(szLine))))
494 PRTSTREAM pStrm;
495 int rc = RTStrmOpen(pMod->pszDbgFile, "r", &pStrm);
508 rc = rtDbgModNmScanFile(pThis, pStrm, false /*fAddSymbols*/);
510 rc = RTStrmRewind(pStrm);
512 rc = rtDbgModNmScanFile(pThis, pStrm, true /*fAddSymbols*/);
515 RTStrmClose(pStrm);
524 RTStrmClose(pStrm);
[all...]
/vbox/src/VBox/Runtime/tools/
H A DRTSignTool.cpp66 static RTEXITCODE HelpHelp(PRTSTREAM pStrm, RTSIGNTOOLHELP enmLevel);
75 static RTEXITCODE HelpExtractExeSignerCert(PRTSTREAM pStrm, RTSIGNTOOLHELP enmLevel) argument
77 RTStrmPrintf(pStrm, "extract-exe-signer-cert [--ber|--cer|--der] [--exe|-e] <exe> [--output|-o] <outfile.cer>\n");
245 static RTEXITCODE HelpVerifyExe(PRTSTREAM pStrm, RTSIGNTOOLHELP enmLevel) argument
247 RTStrmPrintf(pStrm,
611 static RTEXITCODE HelpMakeTaInfo(PRTSTREAM pStrm, RTSIGNTOOLHELP enmLevel) argument
613 RTStrmPrintf(pStrm,
780 PRTSTREAM pStrm; local
781 rc = RTStrmOpen(State.pszOutput, "wb", &pStrm);
785 handleMakeTaInfoWriter, pStrm, RTErrInfoInitStati
821 HelpVersion(PRTSTREAM pStrm, RTSIGNTOOLHELP enmLevel) argument
877 HelpHelp(PRTSTREAM pStrm, RTSIGNTOOLHELP enmLevel) argument
[all...]
/vbox/src/VBox/Devices/Audio/
H A DDrvHostPulseAudio.cpp235 PPULSEAUDIOSTREAM pStrm = (PPULSEAUDIOSTREAM)pvContext; local
236 NOREF(pStrm);
262 PPULSEAUDIOSTREAM pStrm = (PPULSEAUDIOSTREAM)pvContext; local
263 AssertPtrReturnVoid(pStrm);
265 pStrm->fOpSuccess = fSuccess;
272 drvHostPulseAudioError(pStrm->pDrv, "Failed to drain stream");
274 pa_operation_unref(pStrm->pDrainOp);
275 pStrm->pDrainOp = NULL;
303 PPULSEAUDIOSTREAM pStrm = (PPULSEAUDIOSTREAM)pvContext; local
304 AssertPtrReturnVoid(pStrm);
[all...]
/vbox/src/VBox/Main/src-client/
H A DVideoRec.cpp40 static int videoRecEncodeAndWrite(PVIDEORECSTREAM pStrm);
41 static int videoRecRGBToYUV(PVIDEORECSTREAM pStrm);
404 PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen]; local
405 if ( pStrm->fEnabled
406 && ASMAtomicReadBool(&pStrm->fRgbFilled))
408 rc = videoRecRGBToYUV(pStrm);
409 ASMAtomicWriteBool(&pStrm->fRgbFilled, false);
411 rc = videoRecEncodeAndWrite(pStrm);
486 PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen]; local
487 pStrm
612 PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen]; local
686 PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen]; local
718 videoRecEncodeAndWrite(PVIDEORECSTREAM pStrm) argument
762 videoRecRGBToYUV(PVIDEORECSTREAM pStrm) argument
832 PVIDEORECSTREAM pStrm = &pCtx->Strm[uScreen]; local
[all...]
/vbox/src/VBox/Frontends/VBoxHeadless/
H A DVBoxHeadless.cpp575 PRTSTREAM pStrm; local
577 vrc = RTStrmOpen(pszFilename, "r", &pStrm);
579 pStrm = g_pStdIn;
582 vrc = RTStrmReadEx(pStrm, szPasswd, sizeof(szPasswd)-1, &cbFile);
605 RTStrmClose(pStrm);
/vbox/src/VBox/Storage/testcase/
H A Dvbox-img.cpp38 static void printUsage(PRTSTREAM pStrm) argument
40 RTStrmPrintf(pStrm,
84 static void showLogo(PRTSTREAM pStrm) argument
90 RTStrmPrintf(pStrm, VBOX_PRODUCT " Disk Utility " VBOX_VERSION_STRING "\n"
/vbox/src/VBox/ValidationKit/utils/network/
H A DNetPerf.cpp244 static void Usage(PRTSTREAM pStrm) argument
247 RTStrmPrintf(pStrm, "usage: %s <-s|-c <host>> [options]\n",
249 RTStrmPrintf(pStrm, "\n");
250 RTStrmPrintf(pStrm, "options: \n");
309 RTStrmPrintf(pStrm, " %-20s%s\n", szOpt, pszHelp);
/vbox/src/VBox/Devices/EFI/
H A DDevEFI.cpp1176 PRTSTREAM pStrm; local
1177 int rc2 = RTStrmOpen("./DevEFI.VBoxDbg", "a", &pStrm);
1182 RTStrmPrintfV(pStrm, pszFormat, va);
1184 RTStrmClose(pStrm);
/vbox/src/bldprogs/
H A DVBoxTpG.cpp406 PSCMSTREAM pStrm = (PSCMSTREAM)pvUser; local
411 ScmStreamPrintf(pStrm,
424 * @param pStrm The output stream.
426 static RTEXITCODE generateAssembly(PSCMSTREAM pStrm) argument
439 ScmStreamPrintf(pStrm,
577 ScmStreamPrintf(pStrm,
593 ScmStreamPrintf(pStrm,
600 RTStrSpaceEnumerate(&g_StrSpace, generateAssemblyStrTabCallback, pStrm);
601 ScmStreamPrintf(pStrm,
607 ScmStreamPrintf(pStrm,
917 generateHeader(PSCMSTREAM pStrm) argument
1096 generateWrapperHeader(PSCMSTREAM pStrm) argument
1251 parseError(PSCMSTREAM pStrm, size_t cb, const char *pszMsg) argument
1282 parseErrorAbs(PSCMSTREAM pStrm, size_t off, const char *pszMsg) argument
1294 parseOneLineComment(PSCMSTREAM pStrm) argument
1306 parseMultiLineComment(PSCMSTREAM pStrm) argument
1332 parseSkipSpacesAndComments(PSCMSTREAM pStrm) argument
1366 parseGetNextNonSpaceNonCommentCh(PSCMSTREAM pStrm) argument
1399 parseGetNextNonSpaceNonCommentChOnPpLine(PSCMSTREAM pStrm) argument
1440 parseGetNextCWord(PSCMSTREAM pStrm, size_t *pcchWord) argument
1457 parseStability(PSCMSTREAM pStrm, unsigned ch) argument
1503 parseDataDepClass(PSCMSTREAM pStrm, unsigned ch) argument
1540 parsePragmaDAttributes(PSCMSTREAM pStrm) argument
1628 parsePragma(PSCMSTREAM pStrm) argument
1814 parseInitArgument(PVTGPROBE pProbe, PVTGARG pArg, PSCMSTREAM pStrm, char *pchType, size_t cchType, char *pchName, size_t cchName) argument
1913 parseProbe(PSCMSTREAM pStrm, PVTGPROVIDER pProv) argument
2045 parseProvider(PSCMSTREAM pStrm) argument
[all...]
H A DVBoxCPP.cpp557 PSCMSTREAM pStrm = &pThis->pInputStack->StrmInput; local
559 size_t const off = ScmStreamTell(pStrm);
560 size_t const iLine = ScmStreamTellLine(pStrm);
561 ScmStreamSeekByLine(pStrm, iLine);
562 size_t const offLine = ScmStreamTell(pStrm);
568 const char *pszLine = ScmStreamGetLineByNo(pStrm, iLine, &cchLine, &enmEof);
574 ScmStreamSeekAbsolute(pStrm, off);
/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecService.cpp3177 * @param pStrm Where to print it.
3180 static void txsUsage(PRTSTREAM pStrm, const char *argv0) argument
3182 RTStrmPrintf(pStrm,
3196 RTStrmPrintf(pStrm,
3200 RTStrmPrintf(pStrm, " %s - %s\n", g_apTransports[i]->szName, g_apTransports[i]->pszDesc);
3201 RTStrmPrintf(pStrm, " Default: %s\n", g_pTransport->szName);
3202 RTStrmPrintf(pStrm,
3209 RTStrmPrintf(pStrm,
3212 RTStrmPrintf(pStrm,
3215 RTStrmPrintf(pStrm,
[all...]
/vbox/src/VBox/Frontends/VBoxSDL/
H A DVBoxSDL.cpp3109 PRTSTREAM pStrm; local
3111 vrc = RTStrmOpen(pszFilename, "r", &pStrm);
3113 pStrm = g_pStdIn;
3116 vrc = RTStrmReadEx(pStrm, szPasswd, sizeof(szPasswd)-1, &cbFile);
3139 RTStrmClose(pStrm);
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DVBoxGlobal.cpp4039 PRTSTREAM pStrm; local
4041 vrc = RTStrmOpen(pszFile, "r", &pStrm);
4043 pStrm = g_pStdIn;
4046 vrc = RTStrmReadEx(pStrm, mSettingsPw, sizeof(mSettingsPw)-1, &cbFile);
4061 RTStrmClose(pStrm);

Completed in 143 milliseconds