Lines Matching refs:CDecoder
27 CDecoder::CDecoder(): _inBuf(0), _propsWereSet(false), _outSizeDefined(false), in CDecoder() function in NCompress::NLzma::CDecoder
38 CDecoder::~CDecoder() in ~CDecoder()
44 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; } in SetInBufSize()
45 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; } in SetOutBufSize()
47 HRESULT CDecoder::CreateInputBuffer() in CreateInputBuffer()
60 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size) in SetDecoderProperties2()
67 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize) in SetOutStreamSizeResume()
77 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) in SetOutStreamSize()
86 STDMETHODIMP CDecoder::SetFinishMode(UInt32 finishMode) in SetFinishMode()
92 HRESULT CDecoder::CodeSpec(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompres… in CodeSpec()
175 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, in Code()
186 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream) { _inStream = inStream; return S_… in SetInStream()
187 STDMETHODIMP CDecoder::ReleaseInStream() { _inStream.Release(); return S_OK; } in ReleaseInStream()
189 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
230 HRESULT CDecoder::CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgr… in CodeResume()
236 HRESULT CDecoder::ReadFromInputStream(void *data, UInt32 size, UInt32 *processedSize) in ReadFromInputStream()