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

/vbox/src/VBox/VMM/VMMR3/
H A DSSM.cpp438 bool fChecksummed; member in struct:SSMSTRM
439 /** The stream CRC if fChecksummed is set. */
1821 * @param fChecksummed Whether the stream is to be checksummed while
1825 static int ssmR3StrmInitInternal(PSSMSTRM pStrm, bool fChecksummed, uint32_t cBuffers)
1847 pStrm->fChecksummed = fChecksummed;
1848 pStrm->u32StreamCRC = fChecksummed ? RTCrc32Start() : 0;
1939 * @param fChecksummed Whether the stream is to be checksummed while
1943 static int ssmR3StrmInit(PSSMSTRM pStrm, PCSSMSTRMOPS pStreamOps, void *pvUser, bool fWrite, bool fChecksummed, uint32_t cBuffers)
1945 int rc = ssmR3StrmInitInternal(pStrm, fChecksummed, cBuffer
[all...]

Completed in 71 milliseconds