Lines Matching refs:data
19 Z7_COM7F_IMF(CBinderInStream::Read(void *data, UInt32 size, UInt32 *processedSize))
20 { return _binder->Read(data, size, processedSize); }
33 Z7_COM7F_IMF(CBinderOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize))
34 { return _binder->Write(data, size, processedSize); }
72 HRESULT CStreamBinder::Read(void *data, UInt32 size, UInt32 *processedSize)
89 memcpy(data, _buf, size);
99 - if we check (_bufSize == 0) here, we unlock Write only after full data Reading - it reduces the number of syncs
100 - if we don't check (_bufSize == 0) here, we unlock Write after partial data Reading
114 HRESULT CStreamBinder::Write(const void *data, UInt32 size, UInt32 *processedSize)
123 _buf = data;
138 // size : is size of data that was read
141 // if some data was read, then we report that size and return