Home
last modified time | relevance | path

Searched defs:SetStream (Results 1 – 17 of 17) sorted by relevance

/third_party/lzma/CPP/7zip/Archive/Common/
DDummyOutStream.h17 void SetStream(ISequentialOutStream *outStream) { _stream = outStream; } in SetStream() function
DCoderMixer2.h39 void SetStream(ISequentialInStream *stream) { _stream = stream; } in SetStream() function
DOutStreamWithCRC.h21 void SetStream(ISequentialOutStream *stream) { _stream = stream; } in SetStream() function
DInStreamWithCRC.h28 void SetStream(ISequentialInStream *stream) { _stream = stream; } in SetStream() function
/third_party/lzma/CPP/7zip/UI/Common/
DArchiveExtractCallback.h36 void SetStream(ISequentialOutStream *stream) { _stream = stream; } in SetStream() function
/third_party/lzma/CPP/7zip/Common/
DLimitedStreams.h22 void SetStream(ISequentialInStream *stream) { _stream = stream; } in SetStream() function
DInBuffer.h53 void SetStream(ISequentialInStream *stream) { _stream = stream; } in SetStream() function
DOutBuffer.h43 void SetStream(ISequentialOutStream *stream) { _stream = stream; } in SetStream() function
/third_party/lzma/CS/7zip/Common/
DOutBuffer.cs19 public void SetStream(System.IO.Stream stream) { m_Stream = stream; } in SetStream() method in SevenZip.Buffer.OutBuffer
/third_party/lzma/CS/7zip/Compress/LZ/
DIMatchFinder.cs9 void SetStream(System.IO.Stream inStream); in SetStream() method
DLzInWindow.cs81 public void SetStream(System.IO.Stream stream) { _stream = stream; } in SetStream() method in SevenZip.Compression.LZ.InWindow
DLzBinTree.cs51 public new void SetStream(System.IO.Stream stream) { base.SetStream(stream); } in SetStream() method in SevenZip.Compression.LZ.BinTree
/third_party/lzma/Java/SevenZip/Compression/RangeCoder/
DDecoder.java17 public final void SetStream(java.io.InputStream stream) in SetStream() method in Decoder
DEncoder.java21 public void SetStream(java.io.OutputStream stream) in SetStream() method in Encoder
/third_party/lzma/Java/SevenZip/Compression/LZ/
DOutWindow.java24 public void SetStream(java.io.OutputStream stream) throws IOException in SetStream() method in OutWindow
DInWindow.java81 public void SetStream(java.io.InputStream stream) { _stream = stream; } in SetStream() method in InWindow
/third_party/lzma/CS/7zip/Compress/RangeCoder/
DRangeCoder.cs18 public void SetStream(System.IO.Stream stream) in SetStream() method in SevenZip.Compression.RangeCoder.Encoder