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

<<21222324252627282930>>

  /frameworks/base/media/tests/omxjpegdecoder/
StreamSource.cpp 23 StreamSource::StreamSource(SkStream *stream)
24 : mStream(stream) {
25 CHECK(stream != NULL);
26 mSize = stream->getLength();
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3Channel.h 83 QCamera3Stream *stream) = 0;
94 QCamera3Stream *stream, void *userdata);
103 int32_t allocateStreamInfoBuf(camera3_stream_t *stream);
131 camera3_stream_t *stream);
137 camera3_stream_t *stream,
146 QCamera3Stream *stream);
160 // width and height of internal stream may be different than what's
161 // specified in camera3_stream_t. For example: ZSL stream size is
167 /* QCamera3MetadataChannel is for metadata stream generated by camera daemon. */
184 QCamera3Stream *stream);
    [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
DataStream.java 28 * @return true if there is the input data in the stream,
34 * Retrieves the data of specified length from the stream.
35 * If the data size in the stream is less than specified length,
36 * method returns all the data contained in the stream.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
stream.h 4 /* $Id: stream.h 2067 2007-11-21 01:30:40Z lennart $ */
53 * To access a stream, a pa_stream object must be created using
59 * stream. To use the stream, a server-side object must be created and
60 * associated with the local object. Depending on which type of stream is
63 * \li Playback stream - pa_stream_connect_playback()
64 * \li Record stream - pa_stream_connect_record()
65 * \li Upload stream - pa_stream_connect_upload() (see \ref scache)
67 * Similar to how connections are done in contexts, connecting a stream will
70 * pa_stream_set_state_callback(), and wait for the stream to enter an activ
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
stream.h 4 /* $Id: stream.h 2067 2007-11-21 01:30:40Z lennart $ */
53 * To access a stream, a pa_stream object must be created using
59 * stream. To use the stream, a server-side object must be created and
60 * associated with the local object. Depending on which type of stream is
63 * \li Playback stream - pa_stream_connect_playback()
64 * \li Record stream - pa_stream_connect_record()
65 * \li Upload stream - pa_stream_connect_upload() (see \ref scache)
67 * Similar to how connections are done in contexts, connecting a stream will
70 * pa_stream_set_state_callback(), and wait for the stream to enter an activ
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
stream.h 4 /* $Id: stream.h 2067 2007-11-21 01:30:40Z lennart $ */
53 * To access a stream, a pa_stream object must be created using
59 * stream. To use the stream, a server-side object must be created and
60 * associated with the local object. Depending on which type of stream is
63 * \li Playback stream - pa_stream_connect_playback()
64 * \li Record stream - pa_stream_connect_record()
65 * \li Upload stream - pa_stream_connect_upload() (see \ref scache)
67 * Similar to how connections are done in contexts, connecting a stream will
70 * pa_stream_set_state_callback(), and wait for the stream to enter an activ
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 39 TokenRewriteStream is a specialized form of CommonTokenStream that provides simple stream editing functionality. By creating <i>rewrite programs</i>, new text output can be created based upon the tokens in the stream. The basic token stream itself is preserved, and text output is rendered on demand using the #to_s method.
46 RewriteOperation = Struct.new( :stream, :location, :text )
52 be executed by a token rewrite stream at some time in future when the stream is
53 rendering a rewritten stream.
55 To perform token stream rewrites safely and efficiently, the rewrites are
62 define specific implementations of stream edits.
112 token = stream[ location
    [all...]
  /external/chromium/net/spdy/
spdy_stream.h 32 // The SpdyStream is used by the SpdySession to represent each stream known
36 // a SpdyNetworkTransaction) will maintain a reference to the stream. When
38 // until such a time as a client object requests a stream for the path.
43 // Delegate handles protocol specific behavior of spdy stream.
52 // Called when stream is ready to send data.
65 // Because a stream may have a SYN_* frame and multiple HEADERS frames,
104 // Detach delegate from the stream. It will cancel the stream if it was not
108 // Is this stream a pushed stream from the server
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_platform_audio_output.h 29 // when the stream is created.
38 // stream is created or after the stream is closed.
41 // Stops the playback. Returns false on error or if called before the stream
42 // is created or after the stream is closed.
45 // Closes the stream. Make sure to call this before the object is
76 // The client to notify when the stream is created. THIS MUST ONLY BE
  /external/chromium_org/net/http/
http_stream_factory.h 57 // called as a result of a stream request.
63 // |stream| is now owned by the delegate.
65 // stream, since the HttpStreamRequest may have modified the configuration
66 // during stream processing.
67 // |used_proxy_info| indicates the actual ProxyInfo used for this stream,
72 HttpStreamBase* stream) = 0;
75 // |stream| is now owned by the delegate.
77 // stream, since the HttpStreamRequest may have modified the configuration
78 // during stream processing.
79 // |used_proxy_info| indicates the actual ProxyInfo used for this stream,
    [all...]
  /external/chromium_org/net/tools/quic/
quic_client_session_test.cc 65 // Initialize crypto before the client session will create a stream.
68 QuicReliableClientStream* stream = local
70 ASSERT_TRUE(stream);
73 // Close a stream and ensure I can now open a new one.
74 session_->CloseStream(stream->id());
75 stream = session_->CreateOutgoingReliableStream();
76 EXPECT_TRUE(stream);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStreamEvent.cpp 34 : stream(0)
43 PassRefPtr<MediaStreamEvent> MediaStreamEvent::create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream)
45 return adoptRef(new MediaStreamEvent(type, canBubble, cancelable, stream));
58 MediaStreamEvent::MediaStreamEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStream> stream)
60 , m_stream(stream)
67 , m_stream(initializer.stream)
76 MediaStream* MediaStreamEvent::stream() const function in class:WebCore::MediaStreamEvent
  /external/chromium_org/third_party/WebKit/public/platform/
WebBlobRegistry.h 59 // Registers a stream URL referring to a stream with the specified media
63 // Registers a stream URL referring to the stream identified by the
67 // Add data to the stream referred by the URL.
70 // Tell the registry that this stream won't receive any more data.
73 // Unregisters a stream referred by the URL.
  /external/chromium_org/third_party/libjingle/source/talk/base/
filelock.cc 33 #include "talk/base/stream.h"
60 FileStream* stream = new FileStream(); local
64 ok = stream->OpenShare(path, "a", _SH_DENYRW, NULL);
66 ok = stream->Open(path, "a", NULL) && stream->TryLock();
69 return new FileLock(path, stream);
74 delete stream;
  /external/e2fsprogs/intl/
log.c 31 print_escaped (FILE *stream, const char *str)
33 putc ('"', stream);
37 fputs ("\\n\"", stream);
40 fputs ("\n\"", stream);
45 putc ('\\', stream);
46 putc (*str, stream);
48 putc ('"', stream);
  /external/guava/guava/src/com/google/common/collect/
HashMultiset.java 84 private void writeObject(ObjectOutputStream stream) throws IOException {
85 stream.defaultWriteObject();
86 Serialization.writeMultiset(this, stream);
90 private void readObject(ObjectInputStream stream)
92 stream.defaultReadObject();
93 int distinctElements = Serialization.readCount(stream);
96 Serialization.populateMultiset(this, stream, distinctElements);
  /external/lzma/CS/7zip/
ICoder.cs 8 /// The exception that is thrown when an error in input stream occurs during decoding.
43 /// input Stream.
46 /// output Stream.
58 /// if input stream is not valid
60 void Code(System.IO.Stream inStream, System.IO.Stream outStream,
150 void WriteCoderProperties(System.IO.Stream outStream);
  /external/srtp/googlepatches/
vidyo-4-srtp-rtx.patch 5 * for this stream (if any) */
14 struct srtp_policy_t *next; /**< Pointer to next stream policy. */
51 delta = rdbx_estimate_index(&stream->rtp_rdbx, &est, ntohs(hdr->seq));
52 status = rdbx_check(&stream->rtp_rdbx, delta);
55 - rdbx_add_index(&stream->rtp_rdbx, delta);
57 + if (status != err_status_replay_fail || !stream->allow_repeat_tx)
61 + rdbx_add_index(&stream->rtp_rdbx, delta);
113 direction[stream->direction],
114 stream->rtp_cipher->type->description,
115 stream->rtp_auth->type->description
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothOutputStream.java 37 * Close this output stream and the socket associated with it.
44 * Writes a single byte to this stream. Only the least significant byte of
45 * the integer {@code oneByte} is written to the stream.
50 * if an error occurs while writing to this stream.
61 * at position {@code offset} to this stream.
69 * stream.
71 * if an error occurs while writing to this stream.
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
HostConnection.cpp 64 QemuPipeStream *stream = new QemuPipeStream(STREAM_BUFFER_SIZE); local
65 if (!stream) {
70 if (stream->connect() < 0) {
72 delete stream;
76 con->m_stream = stream;
80 TcpStream *stream = new TcpStream(STREAM_BUFFER_SIZE); local
81 if (!stream) {
87 if (stream->connect("10.0.2.2", STREAM_PORT_NUM) < 0) {
89 delete stream;
93 con->m_stream = stream;
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
main.m 25 // create a stream over the input, so the lexer can seek back and forth, but don't copy the string,
30 ANTLRStringStream *stream = [ANTLRStringStream newANTLRStringStream:string];
32 // Actually create the lexer feeding of the character stream.
33 SimpleCLexer *lexer = [SimpleCLexer newSimpleCLexerWithCharStream:stream];
43 // Since the parser needs to scan back and forth over the tokens, we put them into a stream, too.
46 // Construct a parser and feed it the token stream.
50 // but it obviously has to match the input token stream. Otherwise parsing would fail.
61 // Create a new tree node stream that's feeding off of the root node (thus seeing the whole tree)
66 // Create the treeparser instance, passing it the stream of nodes
73 [stream release]
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
socketpool.h 55 virtual void ReturnConnectedStream(StreamInterface* stream) = 0;
71 virtual void ReturnConnectedStream(StreamInterface* stream);
77 void OnStreamEvent(StreamInterface* stream, int events, int err);
79 // We delegate stream creation and deletion to this pool.
89 // Creates a new stream on every request
100 virtual void ReturnConnectedStream(StreamInterface* stream);
120 virtual void ReturnConnectedStream(StreamInterface* stream);
123 void OnStreamEvent(StreamInterface* stream, int events, int err);
128 bool checked_out_; // Whether the stream is currently checked out
145 virtual void ReturnConnectedStream(StreamInterface* stream);
    [all...]
  /external/chromium_org/content/renderer/media/
video_source_handler.cc 106 WebKit::WebMediaStream stream; local
108 stream = registry_->GetMediaStream(url);
110 stream =
113 if (stream.isNull() || !stream.extraData()) {
118 // Get the first video track from the stream.
120 static_cast<MediaStreamExtraData*>(stream.extraData());
125 webrtc::MediaStreamInterface* native_stream = extra_data->stream().get();
127 LOG(ERROR) << "GetFirstVideoSource - native stream is NULL.";
133 LOG(ERROR) << "GetFirstVideoSource - stream has no video track."
    [all...]
  /external/chromium_org/media/audio/cras/
cras_unified.h 5 // Creates a unified stream based on the cras (ChromeOS audio server) interface.
60 // Handles notificaiton that there was an error with the playback stream.
66 // Chooses the correct audio callback based on stream direction.
73 // Receives input samples and write output samples for a unified I/O stream.
80 // Writes audio for a playback stream.
83 // Deals with an error that occured in the stream. Called from StreamError().
89 // ID of the playing stream.
92 // PCM parameters for the stream.
98 // True if stream is playing.
114 // Direciton of the stream
    [all...]
  /external/chromium_org/media/base/
stream_parser.h 37 // Second parameter - Indicates the stream duration. Only contains a valid
41 // Indicates when new stream configurations have been parsed.
43 // then it means that there isn't an audio stream.
45 // then it means that there isn't an audio stream.
52 // New stream buffers have been parsed.
61 // New stream buffers of inband text have been parsed.
72 // A new potentially encrypted stream has been parsed.
74 // stream.
75 // Second parameter - The initialization data associated with the stream.
82 // been parsed to determine the initial stream configurations, presentatio
    [all...]

Completed in 1405 milliseconds

<<21222324252627282930>>