Home | History | Annotate | Download | only in Common

Lines Matching refs:processedSize

19   STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);

27 STDMETHODIMP CSequentialInStreamForBinder::Read(void *data, UInt32 size, UInt32 *processedSize)
28 { return m_StreamBinder->Read(data, size, processedSize); }
37 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
46 STDMETHODIMP CSequentialOutStreamForBinder::Write(const void *data, UInt32 size, UInt32 *processedSize)
47 { return m_StreamBinder->Write(data, size, processedSize); }
65 ProcessedSize = 0;
87 ProcessedSize = 0;
90 HRESULT CStreamBinder::Read(void *data, UInt32 size, UInt32 *processedSize)
109 if (processedSize != NULL)
110 *processedSize = sizeToRead;
111 ProcessedSize += sizeToRead;
120 HRESULT CStreamBinder::Write(const void *data, UInt32 size, UInt32 *processedSize)
141 if (processedSize != NULL)
142 *processedSize = size;