Searched refs:pcbState (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/include/internal/
H A Drand.h97 * @retval VINF_SUCCESS on success. *pcbState contains the length of the
99 * @retval VERR_BUFFER_OVERFLOW if the supplied buffer is too small. *pcbState
106 * @param pcbState The size of the buffer pszState points to on input, the
110 DECLCALLBACKMEMBER(int, pfnSaveState)(PRTRANDINT pThis, char *pszState, size_t *pcbState);
168 DECLHIDDEN(DECLCALLBACK(int)) rtRandAdvStubSaveState(PRTRANDINT pThis, char *pszState, size_t *pcbState);
/vbox/src/VBox/Runtime/common/rand/
H A Drandparkmiller.cpp126 static DECLCALLBACK(int) rtRandParkMillerSaveState(PRTRANDINT pThis, char *pszState, size_t *pcbState) argument
130 if (*pcbState < RTRAND_PARKMILLER_STATE_SIZE)
132 *pcbState = RTRAND_PARKMILLER_STATE_SIZE;
135 RTStrPrintf(pszState, *pcbState, "PM:%08RX32,%08RX32,%02x;",
H A Drandadv.cpp69 RTDECL(int) RTRandAdvSaveState(RTRAND hRand, char *pszState, size_t *pcbState) RT_NO_THROW
76 AssertPtr(pcbState); variable
79 return pThis->pfnSaveState(pThis, pszState, pcbState);
389 DECLHIDDEN(DECLCALLBACK(int)) rtRandAdvStubSaveState(PRTRANDINT pThis, char *pszState, size_t *pcbState) argument
393 NOREF(pcbState);
/vbox/include/iprt/
H A Drand.h201 * @retval VINF_SUCCESS on success. *pcbState contains the length of the
203 * @retval VERR_BUFFER_OVERFLOW if the supplied buffer is too small. *pcbState
210 * @param pcbState The size of the buffer pszState points to on input, the
214 RTDECL(int) RTRandAdvSaveState(RTRAND hRand, char *pszState, size_t *pcbState) RT_NO_THROW;

Completed in 90 milliseconds