Lines Matching defs:outStream
229 ISeqOutStream *outStream;
478 p->outStream = 0;
523 if (num != p->outStream->Write(p->outStream, p->bufBase, num))
2058 static SRes LzmaEnc_Prepare(CLzmaEncHandle pp, ISeqInStream *inStream, ISeqOutStream *outStream,
2063 p->rc.outStream = outStream;
2144 CSeqOutStreamBuf outStream;
2146 outStream.funcTable.Write = MyWrite;
2147 outStream.data = dest;
2148 outStream.rem = *destLen;
2149 outStream.overflow = False;
2160 p->rc.outStream = &outStream.funcTable;
2165 *destLen -= outStream.rem;
2166 if (outStream.overflow)
2172 SRes LzmaEnc_Encode(CLzmaEncHandle pp, ISeqOutStream *outStream, ISeqInStream *inStream, ICompressProgress *progress,
2185 RINOK(LzmaEnc_Prepare(pp, inStream, outStream, alloc, allocBig));
2241 CSeqOutStreamBuf outStream;
2245 outStream.funcTable.Write = MyWrite;
2246 outStream.data = dest;
2247 outStream.rem = *destLen;
2248 outStream.overflow = False;
2251 res = LzmaEnc_Encode(pp, &outStream.funcTable, &p->seqBufInStream.funcTable,
2254 *destLen -= outStream.rem;
2255 if (outStream.overflow)