HomeSort by relevance Sort by last modified time
    Searched full:stream (Results 726 - 750 of 9695) sorted by null

<<21222324252627282930>>

  /external/jdiff/src/jdiff/
StreamReader.java 7 * Reads in lines from an input stream and displays them.
13 /** The input stream. */
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 8 HRESULT COffsetOutStream::Init(IOutStream *stream, UInt64 offset)
11 _stream = stream;
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java 32 /** A logical bidirectional stream. */
68 * The number of unacknowledged bytes at which the input stream will send
71 * stream. (Chrome 25 uses 5 MiB.)
82 /** Headers sent by the stream initiator. Immutable and non null. */
85 /** Headers sent in the stream reply. Null if reply is either not sent or not sent yet. */
92 * The reason why this stream was abnormally closed. If there are multiple
93 * reasons to abnormally close this stream (such as both peers closing it
122 * Returns true if this stream is open. A stream is open until either:
124 * <li>A {@code SYN_RESET} frame abnormally terminates the stream
    [all...]
  /external/zlib/src/contrib/iostream3/
zfstream.h 20 * @brief Gzipped file stream buffer class.
96 * @brief Number of characters available in stream buffer.
99 * This indicates number of characters in get area of stream buffer.
109 * This actually reads characters from gzipped file to stream
120 * This actually writes characters in stream buffer to
128 * @brief Installs external stream buffer.
140 * @brief Flush stream buffer to file.
202 * @brief Stream buffer.
210 * @brief Stream buffer size.
218 * @brief True if this object owns stream buffer
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3OutputStreamInterface.h 27 * An interface for managing a single stream of output data from the camera
33 * Set the transform on the output stream; one of the
  /libcore/luni/src/main/java/java/util/zip/
GZIPOutputStream.java 24 * The {@code GZIPOutputStream} class is used to write data to a stream in the
30 * This code creates a GZIP stream, similar to the {@code gzip(1)} utility.
51 * the given stream.
59 * the given stream with the given flushing behavior (see {@link DeflaterOutputStream#flush}).
68 * the given stream with the given internal buffer size and
77 * the given stream with the given internal buffer size and
92 * Indicates to the stream that all data has been written out, and any GZIP
107 * to the underlying stream in GZIP format.
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderServer.cpp 84 SocketStream *stream = m_listenSock->accept(); local
85 if (!stream) {
91 if (!stream->readFully(&clientFlags, sizeof(unsigned int))) {
93 delete stream;
97 DBG("RenderServer: Got new stream!\n");
105 RenderThread *rt = RenderThread::create(stream);
108 delete stream;
109 stream = NULL;
  /external/chromium_org/third_party/libjingle/source/talk/sound/
pulseaudiosoundsystem.cc 66 // Every time a playback stream underflows, we will reconfigure it with target
143 PulseAudioStream(PulseAudioSoundSystem *pulse, pa_stream *stream, int flags)
144 : pulse_(pulse), stream_(stream), flags_(flags) {
158 LOG(LS_ERROR) << "Can't disconnect stream";
203 pa_stream *stream() { function in class:cricket::PulseAudioStream
228 // Implementation of an input stream. See soundinputstreaminterface.h regarding
246 pa_stream *stream,
248 : stream_(pulse, stream, flags),
252 symbol_table()->pa_stream_set_overflow_callback()(stream, &OverflowCallback,
275 // Unlike output streams, input streams have no concept of a stream volume
1419 pa_stream *stream = symbol_table_.pa_stream_new()(context_, stream_name, local
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 49 * It transparently coalesces chunks of a HTTP stream that uses chunked
50 * transfer coding. After the stream is read to the end, it provides access
53 * Note that this class NEVER closes the underlying stream, even when close
84 /** True if we'are at the beginning of stream */
87 /** True if we've reached the end of stream */
90 /** True if this stream is closed */
106 * <p> Returns all the data in a chunked stream in coalesced form. A chunk
110 * <p> Trailer headers are read automcatically at the end of the stream and
113 * @return -1 of the end of the stream has been reached or the next data
119 throw new IOException("Attempted read from closed stream.")
    [all...]
ContentLengthInputStream.java 40 * Stream that cuts off after a specified number of bytes.
41 * Note that this class NEVER closes the underlying stream, even when close
49 * the underlying stream. That's tricky, though, because you then have to
75 * The maximum number of bytes that can be read from the stream. Subsequent
83 /** True if the stream is closed. */
87 * Wrapped input stream that all calls are delegated to.
92 * Creates a new length limited stream
96 * the stream. Subsequent read operations will return -1.
101 throw new IllegalArgumentException("Input stream may not be null");
133 * Read the next byte from the stream
    [all...]
  /frameworks/av/libvideoeditor/vss/common/inc/
M4AMRR_CoreReader.h 86 * @brief Reads the next available stream in the file
87 * @note Get the stream description of the stream.
88 * - This function assumes that there is only one stream in AMR file.
90 * @param pStreamDesc(OUT): Description of the next read stream
106 * @brief Prepares the AMR reading of the specified stream Ids
109 * @param pStreamIDs(IN) : Array of stream Ids to be prepared.
116 * @returns M4ERR_BAD_STREAM_ID : Atleast one of the stream Id. does not exist.
124 * @brief Reads the access unit into the providing stream
128 * @param StreamID(IN) : Selects the stream
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
residual.cpp 25 AVCEncBitstream *stream = encvid->bitstream; local
35 ue_v(stream, 25);
37 i = stream->bit_left & 0x7;
40 BitstreamWriteBits(stream, 0, i);
58 status = BitstreamWriteBits(stream, 32, code);
67 status = BitstreamWriteBits(stream, 16, code);
91 status = BitstreamWriteBits(stream, 32, code);
100 status = BitstreamWriteBits(stream, 16, code);
124 status = BitstreamWriteBits(stream, 32, code);
133 status = BitstreamWriteBits(stream, 16, code)
152 AVCEncBitstream *stream = encvid->bitstream; local
    [all...]
  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
CtsAudioClientActivity.java 68 int setVolume(int stream, int level) {
70 mgr.setStreamMute(stream, false);
74 targetLevel = mgr.getStreamMaxVolume(stream);
76 mgr.setStreamVolume(stream, targetLevel, 0);
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTParser.java 25 * Create a new parser instance, pre-supplying the input token stream.
27 * @param input The stream of tokens that will be pulled from the lexer
34 * Create a new parser instance, pre-supplying the input token stream
40 * @param input The stream of tokesn that will be pulled from the lexer
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3lexer.h 11 * A lexer class contains a character input stream, a base recognizer interface
15 * tokens in place of a raw character stream.
19 * - Create a character stream (something which implements ANTLR3_INPUT_STREAM)
21 * - Create a lexer interface and tell it where it its input stream is.
91 /** A pointer to the character stream whence this lexer is receiving
94 * the input stream as per the java implementation.
112 /** Pointer to a function that switches the current character input stream to
118 /** Pointer to a function that abandons the current input stream, whether it
119 * is empty or not and reverts to the previous stacked input stream.
124 * the stream
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t001lexer.html 26 var stream = new org.antlr.runtime.ANTLRStringStream("0"),
27 lexer = new TLexer(stream),
38 var stream = new org.antlr.runtime.ANTLRStringStream('1'),
39 lexer = new TLexer(stream),
t002lexer.html 26 var stream = new org.antlr.runtime.ANTLRStringStream("01"),
27 lexer = new TLexer(stream),
41 var stream = new org.antlr.runtime.ANTLRStringStream('2'),
42 lexer = new TLexer(stream),
t003lexer.html 27 var stream = new org.antlr.runtime.ANTLRStringStream("0fooze1"),
28 lexer = new TLexer(stream),
45 var stream = new org.antlr.runtime.ANTLRStringStream('2'),
46 lexer = new TLexer(stream),
t006lexer.html 27 var stream = new org.antlr.runtime.ANTLRStringStream("fofaaooa"),
28 lexer = new TLexer(stream),
48 var stream = new org.antlr.runtime.ANTLRStringStream('fofoaooaoa2'),
49 lexer = new TLexer(stream),
t007lexer.html 27 var stream = new org.antlr.runtime.ANTLRStringStream("fofababbooabb"),
28 lexer = new TLexer(stream),
48 var stream = new org.antlr.runtime.ANTLRStringStream('foaboao'),
49 lexer = new TLexer(stream),
  /external/antlr/antlr-3.4/runtime/Python/tests/
t004lexer.py 24 stream = antlr3.StringStream('ffofoofooo')
25 lexer = self.getLexer(stream)
56 stream = antlr3.StringStream('2')
57 lexer = self.getLexer(stream)
t006lexer.py 24 stream = antlr3.StringStream('fofaaooa')
25 lexer = self.getLexer(stream)
44 stream = antlr3.StringStream('fofoaooaoa2')
45 lexer = self.getLexer(stream)
t008lexer.py 24 stream = antlr3.StringStream('ffaf')
25 lexer = self.getLexer(stream)
50 stream = antlr3.StringStream('fafb')
51 lexer = self.getLexer(stream)
t009lexer.py 24 stream = antlr3.StringStream('085')
25 lexer = self.getLexer(stream)
50 stream = antlr3.StringStream('2a')
51 lexer = self.getLexer(stream)
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
JcaDigestCalculatorProviderBuilder.java 47 final DigestOutputStream stream;
53 stream = new DigestOutputStream(dig);
69 return stream;
74 return stream.getDigest();

Completed in 742 milliseconds

<<21222324252627282930>>