• Home
  • Raw
  • Download

Lines Matching refs:CDecoder

27 CDecoder::CDecoder():  in CDecoder()  function in NCompress::NLzma::CDecoder
48 CDecoder::~CDecoder() in ~CDecoder()
54 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSizeNew = size; return S_OK; } in SetInBufSize()
55 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outStep = size; return S_OK; } in SetOutBufSize()
57 HRESULT CDecoder::CreateInputBuffer() in CreateInputBuffer()
72 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size) in SetDecoderProperties2()
80 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize) in SetOutStreamSizeResume()
93 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize) in SetOutStreamSize()
102 STDMETHODIMP CDecoder::SetFinishMode(UInt32 finishMode) in SetFinishMode()
109 STDMETHODIMP CDecoder::GetInStreamProcessedSize(UInt64 *value) in GetInStreamProcessedSize()
116 HRESULT CDecoder::CodeSpec(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompres… in CodeSpec()
213 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream, in Code()
229 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream) { _inStream = inStream; return S_… in SetInStream()
230 STDMETHODIMP CDecoder::ReleaseInStream() { _inStream.Release(); return S_OK; } in ReleaseInStream()
233 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize) in Read()
299 HRESULT CDecoder::CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgr… in CodeResume()
306 HRESULT CDecoder::ReadFromInputStream(void *data, UInt32 size, UInt32 *processedSize) in ReadFromInputStream()