Home
last modified time | relevance | path

Searched refs:_out (Results 1 – 25 of 39) sorted by relevance

12

/external/jetty/src/java/org/eclipse/jetty/server/
DHttpWriter.java45 final HttpOutput _out; field in HttpWriter
53 _out=out; in HttpWriter()
54 _generator=_out._generator; in HttpWriter()
72 … if (_out._characterEncoding == null || !_out._characterEncoding.equalsIgnoreCase(encoding)) in setCharacterEncoding()
73 _out._converter = null; // Set lazily in getConverter() in setCharacterEncoding()
76 _out._characterEncoding = encoding; in setCharacterEncoding()
77 if (_out._bytes==null) in setCharacterEncoding()
78 _out._bytes = new ByteArrayOutputStream2(MAX_OUTPUT_CHARS); in setCharacterEncoding()
85 _out.close(); in close()
92 _out.flush(); in flush()
[all …]
DNCSARequestLog.java81 private transient OutputStream _out; field in NCSARequestLog
670 _out = _fileOut; in doStart()
683 _writer = new OutputStreamWriter(_out); in doStart()
709 if (_out != null && _closeOut) in doStop()
712 _out.close(); in doStop()
719 _out = null; in doStop()
DAbstractHttpConnection.java121 protected volatile Output _out; field in AbstractHttpConnection
356 if (_out == null) in getOutputStream()
357 _out = new Output(); in getOutputStream()
358 return _out; in getOutputStream()
487 if (_out!=null) in handleRequest()
488 _out.reopen(); in handleRequest()
716 if (_out!=null) in included()
717 _out.reopen(); in included()
1237 _out.flush(); in sendContent()
1244 _out.flush(); in sendContent()
[all …]
/external/jetty/src/java/org/eclipse/jetty/io/
DByteArrayEndPoint.java34 protected ByteArrayBuffer _out; field in ByteArrayEndPoint
94 _out=new ByteArrayBuffer(outputSize); in ByteArrayEndPoint()
119 return _out; in getOut()
127 _out = out; in setOut()
236 if (_growOutput && buffer.length()>_out.space()) in flush()
238 _out.compact(); in flush()
240 if (buffer.length()>_out.space()) in flush()
242 ByteArrayBuffer n = new ByteArrayBuffer(_out.putIndex()+buffer.length()); in flush()
244 n.put(_out.peek(0,_out.putIndex())); in flush()
245 if (_out.getIndex()>0) in flush()
[all …]
/external/jetty/src/java/org/eclipse/jetty/http/gzip/
DAbstractCompressedStream.java46 protected OutputStream _out; field in AbstractCompressedStream
77 _out = null; in resetBuffer()
116 if (_out == null || _bOut != null) in flush()
125 _out.flush(); in flush()
155 else if (_out == null) in close()
164 _out.close(); in close()
179 if (_out == null || _bOut != null) in finish()
204 _out.write(b); in write()
215 _out.write(b); in write()
226 _out.write(b,off,len); in write()
[all …]
/external/jetty/src/java/org/eclipse/jetty/io/bio/
DStreamEndPoint.java33 OutputStream _out; field in StreamEndPoint
44 _out=out; in StreamEndPoint()
81 if (_ishut && _out!=null) in shutdownOutput()
82 _out.close(); in shutdownOutput()
110 if (_out!=null) in close()
111 _out.close(); in close()
112 _out=null; in close()
160 if (_out==null) in flush()
164 buffer.writeTo(_out); in flush()
295 return _out; in getOutputStream()
[all …]
DStringEndPoint.java42 _out=_bout; in StringEndPoint()
60 _out=_bout; in setInput()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DBERGenerator.java34 return _out; in getRawOutputStream()
41 _out.write(tag); in writeHdr()
42 _out.write(0x80); in writeHdr()
84 _out.write(ch); in writeBERBody()
91 _out.write(0x00); in writeBEREnd()
92 _out.write(0x00); in writeBEREnd()
96 _out.write(0x00); in writeBEREnd()
97 _out.write(0x00); in writeBEREnd()
DASN1Generator.java7 protected OutputStream _out; field in ASN1Generator
11 _out = out; in ASN1Generator()
DBEROctetStringGenerator.java51 _derOut = new DEROutputStream(_out); in BufferedBEROctetStream()
/external/sepolicy/tools/
Dinsertkeys.py166 self._out = out
167 self._out.write(ReplaceTags.XML_ENCODING_TAG)
168 self._out.write("<!-- AUTOGENERATED FILE DO NOT MODIFY -->")
169 self._out.write("<policy>")
172 self._out.write("</policy>")
178 self._out.write('<' + tag)
185 self._out.write(' %s="%s"' % (name, saxutils.escape(key)))
187 self._out.write(' %s="%s"' % (name, saxutils.escape(value)))
190 self._out.write('>')
192 self._out.write('/>')
[all …]
/external/jetty/src/java/org/eclipse/jetty/io/nio/
DDirectNIOBuffer.java50 private WritableByteChannel _out; field in DirectNIOBuffer
305 if (_out==null || !_out.isOpen() || out!=_outStream) in writeTo()
307 _out=Channels.newChannel(out); in writeTo()
316 while(hasContent() && _out.isOpen()) in writeTo()
320 int len=_out.write(_buf); in writeTo()
335 _out=null; in writeTo()
341 if (_out!=null && !_out.isOpen()) in writeTo()
343 _out=null; in writeTo()
DSslConnection.java77 final NIOBuffer _out; field in SslConnection.SslBuffers
83 _out=new IndirectNIOBuffer(packetSize); in SslBuffers()
148 _outbound=_buffers._out; in allocateBuffers()
/external/jetty/src/java/org/eclipse/jetty/server/handler/
DDebugHandler.java46 private OutputStream _out; field in DebugHandler
127 if (_out==null) in doStart()
128 _out=new RolloverFileOutputStream("./logs/yyyy_mm_dd.debug.log",true); in doStart()
129 _print=new PrintStream(_out); in doStart()
148 return _out; in getOutputStream()
156 _out = out; in setOutputStream()
/external/speex/libspeex/
Dfftwrap.c326 spx_word16_t _out[N]; in spx_fft_float() local
329 spx_word16_t _out[MAX_FFT_SIZE]; in spx_fft_float() local
333 spx_fft(table, _in, _out); in spx_fft_float()
335 out[i] = _out[i]; in spx_fft_float()
362 spx_word16_t _out[N]; in spx_ifft_float() local
365 spx_word16_t _out[MAX_FFT_SIZE]; in spx_ifft_float() local
369 spx_ifft(table, _in, _out); in spx_ifft_float()
371 out[i] = _out[i]; in spx_ifft_float()
/external/emma/core/java12/com/vladium/jcd/lib/
DUDataOutputStream.java30 public UDataOutputStream (final OutputStream _out) in UDataOutputStream() argument
32 super (_out); in UDataOutputStream()
/external/jetty/src/java/org/eclipse/jetty/util/
DMultiPartInputStream.java79 protected OutputStream _out; field in MultiPartInputStream.MultiPart
113 _out = _bout= new ByteArrayOutputStream2(); in open()
120 _out.close(); in close()
132 _out.write(b); in write()
145 _out.write(bytes, offset, length); in write()
158 if (_size > 0 && _out != null) in createFile()
161 _out.flush(); in createFile()
163 _out.close(); in createFile()
166 _out = bos; in createFile()
/external/jmdns/src/javax/jmdns/impl/
DDNSOutgoing.java23 private final DNSOutgoing _out; field in DNSOutgoing.MessageOutputStream
41 _out = out; in MessageOutputStream()
129 Integer offset = _out._names.get(aName); in writeName()
136 _out._names.put(aName, Integer.valueOf(this.size() + _offset)); in writeName()
157 …writeShort(rec.getRecordClass().indexValue() | ((rec.isUnique() && _out.isMulticast()) ? DNSRecord… in writeRecord()
161 … MessageOutputStream record = new MessageOutputStream(512, _out, _offset + this.size() + 2); in writeRecord()
/external/libxml2/
Dacinclude.m46 (eval [$]$1) 2>&AS_MESSAGE_LOG_FD; _out=`eval [$]$1 2>&1` && test "x$_out" = x; }])
/external/harfbuzz_ng/src/
Dhb-buffer-deserialize-json.hh479 goto _out; in _hb_buffer_deserialize_glyphs_json()
628 goto _out; in _hb_buffer_deserialize_glyphs_json()
632 _out: {} in _hb_buffer_deserialize_glyphs_json()
Dhb-buffer-deserialize-text.hh356 goto _out; in _hb_buffer_deserialize_glyphs_text()
484 goto _out; in _hb_buffer_deserialize_glyphs_text()
560 _out: {} in _hb_buffer_deserialize_glyphs_text()
/external/wpa_supplicant_8/src/crypto/
Dtls_internal.c376 u8 *_out = out; in tls_connection_prf() local
385 _out = tmp_out; in tls_connection_prf()
392 _out, out_len); in tls_connection_prf()
399 _out, out_len); in tls_connection_prf()
403 os_memcpy(out, _out + skip, out_len); in tls_connection_prf()
/external/libopus/src/
Dopus_compare.c88 static void band_energy(float *_out,float *_ps,const int *_bands,int _nbands, in band_energy() argument
142 if(_out){ in band_energy()
143 _out[(xi*_nbands+bi)*_nchannels]=p[0]/(_bands[bi+1]-_bands[bi]); in band_energy()
145 _out[(xi*_nbands+bi)*_nchannels+1]=p[1]/(_bands[bi+1]-_bands[bi]); in band_energy()
/external/boringssl/src/crypto/aes/asm/
Daes-586.pl2029 my $_out=&DWP(36,"esp"); # copy of wparam(1)
2105 &mov ($_out,$s1); # save copy of out
2161 &mov ($key,$_out); # load out
2172 &mov ($_out,$s3); # save out
2202 &cmp ($acc,$_out);
2224 &mov ($key,$_out); # load out
2237 &mov ($_out,$key); # save out
2270 &mov ($acc,$_out); # load out
2282 &mov ($_out,$acc); # save out
2357 &mov ($_out,$s1); # save copy of out
[all …]
/external/emma/core/java12/com/vladium/logging/
DLogger.java102 final PrintWriter _out = (out != null) && ! out.checkError () in create() local
117 return new Logger (_level, _out, _prefix, _classMask); in create()

12