Home | History | Annotate | Download | only in Common

Lines Matching defs:Read

9 STDMETHODIMP CLimitedSequentialInStream::Read(void *data, UInt32 size, UInt32 *processedSize)

20 result = _stream->Read(data, size, &realProcessedSize);
30 STDMETHODIMP CLimitedInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
36 // 9.31: Fixed. Windows doesn't return error in ReadFile and IStream->Read in that case.
51 HRESULT res = _stream->Read(data, size, &size);
88 STDMETHODIMP CClusterInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
124 HRESULT res = Stream->Read(data, size, &size);
153 STDMETHODIMP CExtentsStream::Read(void *data, UInt32 size, UInt32 *processedSize)
187 HRESULT res = Stream->Read(data, size, &size);
240 STDMETHODIMP CTailInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
243 HRESULT res = Stream->Read(data, size, &cur);
277 STDMETHODIMP CLimitedCachedInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
283 // 9.31: Fixed. Windows doesn't return error in ReadFile and IStream->Read in that case.
308 res = _stream->Read(data, size, &size);