Lines Matching defs:cbOutput
41 * @param cbOutput Size of the output buffer.
46 char *pszOutput, size_t cbOutput)
49 pDis, pcbInstr, pszOutput, cbOutput);
65 * @param cbOutput Size of the output buffer.
70 PDISSTATE pDis, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput)
74 pDis, pcbInstr, pszOutput, cbOutput);
89 * @param cbOutput Size of the output buffer.
95 PDISSTATE pDis, uint32_t *pcbInstr, char *pszOutput, size_t cbOutput)
98 if (uFilter != DISOPTYPE_ALL && pszOutput && cbOutput)
102 if (RT_SUCCESS(rc) && pszOutput && cbOutput)
104 size_t cch = DISFormatYasmEx(pDis, pszOutput, cbOutput,
108 if (cch + 2 <= cbOutput)