Lines Matching refs:processedSize
335 bool CInFile::Read1(void *data, UInt32 size, UInt32 &processedSize) throw() in Read1() argument
339 processedSize = (UInt32)processedLoc; in Read1()
343 bool CInFile::ReadPart(void *data, UInt32 size, UInt32 &processedSize) throw() in ReadPart() argument
347 return Read1(data, size, processedSize); in ReadPart()
350 bool CInFile::Read(void *data, UInt32 size, UInt32 &processedSize) throw() in Read() argument
352 processedSize = 0; in Read()
357 processedSize += processedLoc; in Read()
391 bool COutFile::WritePart(const void *data, UInt32 size, UInt32 &processedSize) throw() in WritePart() argument
397 processedSize = (UInt32)processedLoc; in WritePart()
401 bool COutFile::Write(const void *data, UInt32 size, UInt32 &processedSize) throw() in Write() argument
403 processedSize = 0; in Write()
408 processedSize += processedLoc; in Write()