Searched refs:outStream (Results 1 – 5 of 5) sorted by relevance
/titanic_44/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/encoding/ |
H A D | UCEncoder.java | 53 protected void encodeAtom(OutputStream outStream, byte data[], in encodeAtom() argument 66 outStream.write(map_array[(a >>> 2 & 0x38) + (b >>> 5 & 0x7)]); in encodeAtom() 79 outStream.write(map_array[(a & 0x1f) + p1]); in encodeAtom() 80 outStream.write(map_array[(b & 0x1f) + p2]); in encodeAtom() 83 protected void encodeLinePrefix(OutputStream outStream, int length) in encodeLinePrefix() argument 86 outStream.write(42); in encodeLinePrefix() 91 encodeAtom(outStream, tmp, 0, 2); in encodeLinePrefix() 94 protected void encodeLineSuffix(OutputStream outStream) in encodeLineSuffix() argument 99 encodeAtom(outStream, tmp, 0, 2); in encodeLineSuffix() 111 OutputStream outStream) in encodeBuffer() argument [all …]
|
H A D | UCDecoder.java | 54 OutputStream outStream, int l) in decodeAtom() argument 92 outStream.write(high_byte); in decodeAtom() 96 outStream.write(low_byte); in decodeAtom() 102 OutputStream outStream) in decodeBufferPrefix() argument 108 OutputStream outStream) in decodeLinePrefix() argument 136 OutputStream outStream) in decodeLineSuffix() argument 195 ByteArrayOutputStream outStream = new ByteArrayOutputStream(); in decodeBuffer() local 196 decodeBuffer(inStream, outStream); in decodeBuffer() 197 return outStream.toByteArray(); in decodeBuffer()
|
/titanic_44/usr/src/common/lzma/ |
H A D | LzmaEnc.c | 229 ISeqOutStream *outStream; member 478 p->outStream = 0; in RangeEnc_Construct() 523 if (num != p->outStream->Write(p->outStream, p->bufBase, num)) in RangeEnc_FlushStream() 2058 static SRes LzmaEnc_Prepare(CLzmaEncHandle pp, ISeqInStream *inStream, ISeqOutStream *outStream, in LzmaEnc_Prepare() argument 2063 p->rc.outStream = outStream; in LzmaEnc_Prepare() 2144 CSeqOutStreamBuf outStream; in LzmaEnc_CodeOneMemBlock() local 2146 outStream.funcTable.Write = MyWrite; in LzmaEnc_CodeOneMemBlock() 2147 outStream.data = dest; in LzmaEnc_CodeOneMemBlock() 2148 outStream.rem = *destLen; in LzmaEnc_CodeOneMemBlock() 2149 outStream.overflow = False; in LzmaEnc_CodeOneMemBlock() [all …]
|
H A D | LzmaEnc.h | 57 SRes LzmaEnc_Encode(CLzmaEncHandle p, ISeqOutStream *outStream, ISeqInStream *inStream,
|
/titanic_44/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | RequestHandler.java | 62 private OutputStream outStream = null; field in RequestHandler 79 outStream = out; in RequestHandler() 344 dos = new DataOutputStream(outStream); in handleStream()
|