Home | History | Annotate | Download | only in Common

Lines Matching refs:processedSize

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

11 if (processedSize)
12 *processedSize = 0;
22 if (processedSize)
23 *processedSize = (UInt32)rem;
84 STDMETHODIMP CDynBufSeqOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
86 if (processedSize)
87 *processedSize = 0;
95 if (processedSize)
96 *processedSize = size;
100 STDMETHODIMP CBufPtrSeqOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
107 if (processedSize)
108 *processedSize = (UInt32)rem;
112 STDMETHODIMP CSequentialOutStreamSizeCount::Write(const void *data, UInt32 size, UInt32 *processedSize)
117 if (processedSize)
118 *processedSize = realProcessedSize;
167 STDMETHODIMP CCachedInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
169 if (processedSize)
170 *processedSize = 0;
199 if (processedSize)
200 *processedSize += cur;