Home
last modified time | relevance | path

Searched refs:_in (Results 1 – 25 of 31) sorted by relevance

12

/external/jetty/src/java/org/eclipse/jetty/io/bio/
DStreamEndPoint.java32 InputStream _in; field in StreamEndPoint
43 _in=in; in StreamEndPoint()
67 return _in!=null; in isOpen()
93 if (_oshut&&_in!=null) in shutdownInput()
94 _in.close(); in shutdownInput()
107 if (_in!=null) in close()
108 _in.close(); in close()
109 _in=null; in close()
117 if (_in!=null) in idleExpired()
118 _in.close(); in idleExpired()
[all …]
DStringEndPoint.java41 _in=_bin; in StringEndPoint()
58 _in=_bin; in setInput()
DSocketEndPoint.java162 _in=null; in close()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1StreamParser.java12 private final InputStream _in; field in ASN1StreamParser
26 this._in = in; in ASN1StreamParser()
60 if (_in instanceof IndefiniteLengthInputStream) in readImplicit()
91 return new DEROctetStringParser((DefiniteLengthInputStream)_in); in readImplicit()
104 DefiniteLengthInputStream defIn = (DefiniteLengthInputStream)_in; in readTaggedObject()
110 if (_in instanceof IndefiniteLengthInputStream) in readTaggedObject()
125 int tag = _in.read(); in readObject()
139 int tagNo = ASN1InputStream.readTagNumber(_in, tag); in readObject()
146 int length = ASN1InputStream.readLength(_in, _limit); in readObject()
155 IndefiniteLengthInputStream indIn = new IndefiniteLengthInputStream(_in, _limit); in readObject()
[all …]
DLimitedInputStream.java8 protected final InputStream _in; field in LimitedInputStream
15 this._in = in; in LimitedInputStream()
27 if (_in instanceof IndefiniteLengthInputStream) in setParentEofDetect()
29 ((IndefiniteLengthInputStream)_in).setEofOn00(on); in setParentEofDetect()
DIndefiniteLengthInputStream.java65 int numRead = _in.read(b, off + 2, len - 2); in read()
76 _b1 = _in.read(); in read()
77 _b2 = _in.read(); in read()
96 int b = _in.read(); in read()
DDefiniteLengthInputStream.java50 int b = _in.read(); in read()
74 int numRead = _in.read(buf, off, toRead); in read()
98 if ((_remaining -= Streams.readFully(_in, bytes)) != 0) in toByteArray()
/external/jetty/src/java/org/eclipse/jetty/io/
DByteArrayEndPoint.java33 protected ByteArrayBuffer _in; field in ByteArrayEndPoint
93 _in=new ByteArrayBuffer(input); in ByteArrayEndPoint()
103 return _in; in getIn()
111 _in = in; in setIn()
214 if (_in!=null && _in.length()>0) in fill()
216 int len = buffer.put(_in); in fill()
217 _in.skip(len); in fill()
221 if (_in!=null && _in.length()==0 && _nonBlocking) in fill()
297 _in.clear(); in reset()
300 _in.setPutIndex(_inBytes.length); in reset()
/external/jmdns/src/javax/jmdns/impl/tasks/
DResponder.java29 private final DNSIncoming _in; field in Responder
38 this._in = in; in Responder()
57 return super.toString() + " incomming: " + _in; in toString()
74 for (DNSQuestion question : _in.getQuestions()) { in start()
83_in.isTruncated()) ? 0 : DNSConstants.RESPONSE_MIN_WAIT_INTERVAL + JmDNSImpl.getRandom().nextInt(D… in start()
97 this.getDns().respondToQuery(_in); in run()
106 for (DNSQuestion question : _in.getQuestions()) { in run()
121 for (DNSRecord knownAnswer : _in.getAnswers()) { in run()
135 …utgoing(DNSConstants.FLAGS_QR_RESPONSE | DNSConstants.FLAGS_AA, !_unicast, _in.getSenderUDPPayload… in run()
136 out.setId(_in.getId()); in run()
[all …]
/external/jetty/src/java/org/eclipse/jetty/util/resource/
DURLResource.java44 protected InputStream _in=null; field in URLResource
85 if (_in!=null) in release()
87 try{_in.close();}catch(IOException e){LOG.ignore(e);} in release()
88 _in=null; in release()
106 if (checkConnection() && _in==null ) in exists()
107 _in = _connection.getInputStream(); in exists()
114 return _in!=null; in exists()
213 if( _in != null) in getInputStream()
215 InputStream in = _in; in getInputStream()
216 _in=null; in getInputStream()
/external/jetty/src/java/org/eclipse/jetty/io/nio/
DDirectNIOBuffer.java48 private ReadableByteChannel _in; field in DirectNIOBuffer
240 if (_in==null || !_in.isOpen() || in!=_inStream) in readFrom()
242 _in=Channels.newChannel(in); in readFrom()
258 len=_in.read(_buf); in readFrom()
261 _in=null; in readFrom()
285 _in=null; in readFrom()
291 if (_in!=null && !_in.isOpen()) in readFrom()
293 _in=null; in readFrom()
DSslConnection.java76 final NIOBuffer _in; field in SslConnection.SslBuffers
82 _in=new IndirectNIOBuffer(packetSize); in SslBuffers()
147 _inbound=_buffers._in; in allocateBuffers()
/external/jetty/src/java/org/eclipse/jetty/util/
DMultiPartInputStream.java64 protected InputStream _in; field in MultiPartInputStream
341 _in = new ReadLineInputStream(in); in MultiPartInputStream()
492 line=((ReadLineInputStream)_in).readLine(); in parse()
512 line=((ReadLineInputStream)_in).readLine(); in parse()
531 line=((ReadLineInputStream)_in).readLine(); in parse()
609 partInput = new Base64InputStream((ReadLineInputStream)_in); in parse()
613 partInput = new FilterInputStream(_in) in parse()
635 partInput = _in; in parse()
809 ReadLineInputStream _in; field in MultiPartInputStream.Base64InputStream
817 _in = rlis; in Base64InputStream()
[all …]
/external/speex/libspeex/
Dfftwrap.c325 spx_word16_t _in[N]; in spx_fft_float() local
328 spx_word16_t _in[MAX_FFT_SIZE]; in spx_fft_float() local
332 _in[i] = (int)floor(.5+in[i]); in spx_fft_float()
333 spx_fft(table, _in, _out); in spx_fft_float()
361 spx_word16_t _in[N]; in spx_ifft_float() local
364 spx_word16_t _in[MAX_FFT_SIZE]; in spx_ifft_float() local
368 _in[i] = (int)floor(.5+in[i]); in spx_ifft_float()
369 spx_ifft(table, _in, _out); in spx_ifft_float()
Dvq_sse.h36 void vq_nbest(spx_word16_t *_in, const __m128 *codebook, int len, int entries, __m128 *E, int N, in… in vq_nbest() argument
47 in[i] = _mm_set_ps1(_in[i]); in vq_nbest()
75 void vq_nbest_sign(spx_word16_t *_in, const __m128 *codebook, int len, int entries, __m128 *E, int … in vq_nbest_sign() argument
86 in[i] = _mm_set_ps1(_in[i]); in vq_nbest_sign()
/external/emma/core/java12/com/vladium/jcd/lib/
DUDataInputStream.java30 public UDataInputStream (final InputStream _in) in UDataInputStream() argument
32 super (_in); in UDataInputStream()
/external/jetty/src/java/org/eclipse/jetty/server/
DAbstractHttpConnection.java116 protected volatile ServletInputStream _in; field in AbstractHttpConnection
345 if (_in == null) in getInputStream()
346 _in = new HttpInput(AbstractHttpConnection.this); in getInputStream()
347 return _in; in getInputStream()
/external/libopus/src/
Dopus_compare.c89 const float *_in,int _nchannels,size_t _nframes,int _window_sz, in band_energy() argument
118 x[ci*_window_sz+xk]=window[xk]*_in[(xi*_step+xk)*_nchannels+ci]; in band_energy()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/ceres-solver/cmake/
DFindEigen.cmake54 # are set with valid values _in the CMake cache_. This means that if these
DFindGlog.cmake52 # are set with valid values _in the CMake cache_. This means that if these
DFindGflags.cmake52 # are set with valid values _in the CMake cache_. This means that if these
DFindCXSparse.cmake59 # are set with valid values _in the CMake cache_. This means that if these
/external/bison/djgpp/
Dconfig.bat242 if errorlevel 1 mv -f %XSRC%/doc/yacc.1_in %XSRC%/doc/yacc.1-in

12