Lines Matching defs:data
9 Z7_COM7F_IMF(CLimitedSequentialInStream::Read(void *data, UInt32 size, UInt32 *processedSize))
20 result = _stream->Read(data, size, &realProcessedSize);
30 Z7_COM7F_IMF(CLimitedInStream::Read(void *data, UInt32 size, UInt32 *processedSize))
51 HRESULT res = _stream->Read(data, size, &size);
88 Z7_COM7F_IMF(CClusterInStream::Read(void *data, UInt32 size, UInt32 *processedSize))
124 HRESULT res = Stream->Read(data, size, &size);
153 Z7_COM7F_IMF(CExtentsStream::Read(void *data, UInt32 size, UInt32 *processedSize))
192 memset(data, 0, size);
209 const HRESULT res = Stream->Read(data, size, &size);
239 Z7_COM7F_IMF(CLimitedSequentialOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize))
258 result = _stream->Write(data, size, &size);
266 Z7_COM7F_IMF(CTailInStream::Read(void *data, UInt32 size, UInt32 *processedSize))
269 HRESULT res = Stream->Read(data, size, &cur);
303 Z7_COM7F_IMF(CLimitedCachedInStream::Read(void *data, UInt32 size, UInt32 *processedSize))
325 memcpy(data, _cache + (size_t)offsetInCache, size);
334 res = _stream->Read(data, size, &size);
360 Z7_COM7F_IMF(CTailOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize))
363 HRESULT res = Stream->Write(data, size, &cur);