Lines Matching refs:CDecoder
17 CDecoder::CDecoder(): in CDecoder() function in NCompress::NLzma2::CDecoder
31 CDecoder::~CDecoder() in ~CDecoder()
37 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; } in SetInBufSize()
38 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outStep = size; return S_OK; } in SetOutBufSize()
40 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size) in SetDecoderProperties2()
51 STDMETHODIMP CDecoder::SetFinishMode(UInt32 finishMode) in SetFinishMode()
84 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, in Code()
189 STDMETHODIMP CDecoder::GetInStreamProcessedSize(UInt64 *value) in GetInStreamProcessedSize()
198 STDMETHODIMP CDecoder::SetNumberOfThreads(UInt32 numThreads) in SetNumberOfThreads()
204 STDMETHODIMP CDecoder::SetMemLimit(UInt64 memUsage) in SetMemLimit()
215 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) in SetOutStreamSize()
241 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream) { _inStream = inStream; return S_… in SetInStream()
242 STDMETHODIMP CDecoder::ReleaseInStream() { _inStream.Release(); return S_OK; } in ReleaseInStream()
245 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()