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

/vbox/src/VBox/Disassembler/
H A DDisasm.cpp40 * @param pszOutput Storage for disassembled instruction
46 char *pszOutput, size_t cbOutput)
49 pDis, pcbInstr, pszOutput, cbOutput);
64 * @param pszOutput Storage for disassembled instruction.
70 PDISSTATE pDis, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput)
74 pDis, pcbInstr, pszOutput, cbOutput);
88 * @param pszOutput Storage for disassembled instruction.
95 PDISSTATE pDis, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput)
98 if (uFilter != DISOPTYPE_ALL && pszOutput && cbOutput)
102 if (RT_SUCCESS(rc) && pszOutput
45 DISInstrToStr(void const *pvInstr, DISCPUMODE enmCpuMode, PDISSTATE pDis, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput) argument
69 DISInstrToStrWithReader(RTUINTPTR uInstrAddr, DISCPUMODE enmCpuMode, PFNDISREADBYTES pfnReadBytes, void *pvUser, PDISSTATE pDis, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput) argument
93 DISInstrToStrEx(RTUINTPTR uInstrAddr, DISCPUMODE enmCpuMode, PFNDISREADBYTES pfnReadBytes, void *pvUser, uint32_t uFilter, PDISSTATE pDis, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput) argument
[all...]
/vbox/src/VBox/ValidationKit/bootsectors/
H A DVBoxBs2Linker.cpp39 const char *pszOutput = NULL; local
88 if (pszOutput)
91 pszOutput, pszValue);
94 pszOutput = pszValue;
115 if (!pszOutput)
132 FILE *pOutput = fopen(pszOutput, "wb");
134 FILE *pOutput = fopen(pszOutput, "w");
138 fprintf(stderr, "error: Failed to open output file '%s' for writing\n", pszOutput);
204 fprintf(stderr, "error: Error closing '%s'.\n", pszOutput);
/vbox/src/VBox/Runtime/tools/
H A DRTNtDbgHelp.cpp322 const char *pszOutput = "-"; local
H A DRTSignTool.cpp623 const char *pszOutput; member in struct:MAKETAINFOSTATE
667 if (State.pszOutput)
669 State.pszOutput = ValueUnion.psz;
681 if (!State.pszOutput)
781 rc = RTStrmOpen(State.pszOutput, "wb", &pStrm);
790 RTMsgInfo("Successfully wrote TrustedAnchorInfo to '%s'.", State.pszOutput);
801 RTMsgError("Error opening '%s' for writing: %Rrcs", State.pszOutput, rc);
/vbox/src/VBox/VMM/VMMR3/
H A DDBGFDisas.cpp411 * @param pszOutput Output buffer.
417 char *pszOutput, uint32_t cbOutput, uint32_t *pcbInstr)
559 RTStrPrintf(pszOutput, cbOutput, "Sel=%04x -> %Rrc\n", Sel, rc);
572 RTStrPrintf(pszOutput, cbOutput, "Disas -> %Rrc; %.*Rhxs\n", rc, (size_t)State.Cpu.cbCachedInstr, State.Cpu.abInstr);
574 RTStrPrintf(pszOutput, cbOutput, "Disas -> %Rrc\n", rc);
604 cch = RTStrPrintf(pszOutput, cbOutput, "%s", szBuf);
606 cch = RTStrPrintf(pszOutput, cbOutput, "%04x:%04x %s", Sel, (unsigned)GCPtr, szBuf);
610 cch = RTStrPrintf(pszOutput, cbOutput, "%RGv %s", GCPtr, szBuf);
612 cch = RTStrPrintf(pszOutput, cbOutput, "%08RX32 %s", (uint32_t)GCPtr, szBuf);
617 cch = RTStrPrintf(pszOutput, cbOutpu
416 dbgfR3DisasInstrExOnVCpu(PVM pVM, PVMCPU pVCpu, RTSEL Sel, PRTGCPTR pGCPtr, uint32_t fFlags, char *pszOutput, uint32_t cbOutput, uint32_t *pcbInstr) argument
695 DBGFR3DisasInstrEx(PUVM pUVM, VMCPUID idCpu, RTSEL Sel, RTGCPTR GCPtr, uint32_t fFlags, char *pszOutput, uint32_t cbOutput, uint32_t *pcbInstr) argument
734 DBGFR3DisasInstrCurrent(PVMCPU pVCpu, char *pszOutput, uint32_t cbOutput) argument
[all...]
H A DCSAM.cpp810 PDISCPUSTATE pCpu, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput)
815 pCpu, pcbInstr, pszOutput, cbOutput);
818 if (pszOutput)
821 pCpu, pcbInstr, pszOutput, cbOutput);
809 csamR3DISInstr(PVM pVM, RTRCPTR InstrGC, uint8_t *InstrHC, DISCPUMODE enmCpuMode, PDISCPUSTATE pCpu, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput) argument
H A DSELM.cpp2455 * @param pszOutput Output buffer.
2458 static void selmR3FormatDescriptor(X86DESC Desc, RTSEL Sel, char *pszOutput, size_t cchOutput) argument
2532 RTStrPrintf(pszOutput, cchOutput, "%04x - %08x %08x - base=%08x limit=%08x dpl=%d %s",
H A DPATM.cpp669 PDISCPUSTATE pCpu, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput)
680 pCpu, pcbInstr, pszOutput, cbOutput));
668 patmR3DisInstrToStr(PVM pVM, PPATCHINFO pPatch, RTGCPTR32 InstrGCPtr32, uint8_t *pbInstrHC, uint32_t fReadFlags, PDISCPUSTATE pCpu, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput) argument
/vbox/src/VBox/Devices/BiosCommonCode/
H A DMakeAlternativeSource.cpp153 * @param pszOutput Path to the output file.
155 static RTEXITCODE OpenOutputFile(const char *pszOutput) argument
157 if (!pszOutput)
161 int rc = RTStrmOpen(pszOutput, "w", &g_hStrmOutput);
163 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Failed to open output file '%s': %Rrc", pszOutput, rc);
1954 const char *pszOutput = NULL; local
1987 if (pszOutput)
1989 pszOutput = ValueUnion.psz;
2052 rcExit = OpenOutputFile(pszOutput);
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceToolBox.cpp369 const char *pszOutput = NULL; local
405 pszOutput = ValueUnion.psz;
439 if (pszOutput)
441 rc = RTFileOpen(&hOutput, pszOutput, fFlags);
444 pszOutput, rc);
/vbox/src/VBox/Runtime/r0drv/nt/
H A DntBldSymDb.cpp1121 const char *pszOutput = "-"; local
1145 pszOutput = ValueUnion.psz;
1186 if (strcmp(pszOutput, "-"))
1188 rc = RTStrmOpen(pszOutput, "w", &pOut);
1190 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error opening '%s' for writing: %Rrc\n", pszOutput, rc);
1200 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Error %s '%s': %Rrc\n", pszOutput,
/vbox/src/VBox/Debugger/testcase/
H A DtstDBGCStubs.cpp92 char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr)
91 DBGFR3DisasInstrEx(PUVM pUVM, VMCPUID idCpu, RTSEL Sel, RTGCPTR GCPtr, uint32_t fFlags, char *pszOutput, uint32_t cchOutput, uint32_t *pcbInstr) argument
/vbox/src/VBox/Runtime/common/zip/
H A Dxarvfs.cpp1875 char *pszOutput = (char *)RTMemTmpAlloc(pXarHdr->cbTocUncompressed + 1); local
1876 if (!pszOutput)
1890 pszOutput, pXarHdr->cbTocUncompressed, &cbActual);
1898 pszOutput[pXarHdr->cbTocUncompressed] = '\0';
1903 size_t cchToc = strlen(pszOutput);
1907 rc = RTStrValidateEncoding(pszOutput);
1913 Parser.read(pszOutput, cchToc, RTCString("xar-toc.xml"), *pDoc);
1944 RTMemTmpFree(pszOutput);
1961 RTMemTmpFree(pszOutput);
/vbox/src/VBox/VMM/tools/
H A DVBoxCpuReport.cpp4721 const char *pszOutput = NULL; local
4739 pszOutput = ValueUnion.psz;
4788 if (pszOutput)
4790 if (RTFileExists(pszOutput) && !RTSymlinkExists(pszOutput))
4793 rc = RTStrCopy(szOld, sizeof(szOld), pszOutput);
4797 RTFileRename(pszOutput, szOld, RTFILEMOVE_FLAGS_REPLACE);
4799 rc = RTStrmOpen(pszOutput, "w", &g_pReportOut);
4802 RTMsgError("Error opening '%s': %Rrc", pszOutput, rc);
/vbox/src/bldprogs/
H A DVBoxTpG.cpp255 * @param pszOutput The output file.
258 static RTEXITCODE generateInvokeAssembler(const char *pszOutput, const char *pszTempAsm) argument
313 apszArgs[iArg++] = pszOutput;
354 * @param pszOutput The name of the output file.
359 static RTEXITCODE generateFile(const char *pszOutput, const char *pszWhat, argument
374 rc = ScmStreamWriteToFile(&Strm, "%s", pszOutput);
377 rc, pszOutput, pszWhat);
381 RTMsgInfo("Successfully generated '%s'.", pszOutput);
869 static RTEXITCODE generateObject(const char *pszOutput, const char *pszTempAsm) argument
873 size_t cch = strlen(pszOutput);
[all...]
H A DVBoxCPP.cpp478 const char *pszOutput; member in struct:VBCPP
5372 else if (!pThis->pszOutput)
5373 pThis->pszOutput = ValueUnion.psz;
5406 if (pThis->pszOutput)
5408 int rc = ScmStreamWriteToFile(&pThis->StrmOutput, "%s", pThis->pszOutput);
5410 vbcppError(pThis, "ScmStreamWriteToFile failed with %Rrc when writing '%s'", rc, pThis->pszOutput);
5457 pThis->pszOutput = NULL;

Completed in 142 milliseconds