Home | History | Annotate | Download | only in Lzma

Lines Matching refs:outStream

55 static SRes Decode2(CLzmaDec *state, ISeqOutStream *outStream, ISeqInStream *inStream,

89 if (outStream)
90 if (outStream->Write(outStream, outBuf, outPos) != outPos)
108 static SRes Decode(ISeqOutStream *outStream, ISeqInStream *inStream)
129 res = Decode2(&state, outStream, inStream, unpackSize);
134 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, char *rs)
158 if (outStream->Write(outStream, header, headerSize) != headerSize)
163 res = LzmaEnc_Encode(enc, outStream, inStream, NULL, &g_Alloc, &g_Alloc);
173 CFileOutStream outStream;
182 FileOutStream_CreateVTable(&outStream);
183 File_Construct(&outStream.file);
212 if (OutFile_Open(&outStream.file, args[3]) != 0)
222 res = Encode(&outStream.s, &inStream.s, fileSize, rs);
226 res = Decode(&outStream.s, useOutFile ? &inStream.s : NULL);
230 File_Close(&outStream.file);