Searched defs:stream (Results 226 - 250 of 1254) sorted by relevance

1234567891011>>

/external/chromium_org/content/test/plugin/
H A Dplugin_get_javascript_url2_test.cc11 // The identifier for the self url stream.
14 // The maximum chunk size of stream data.
40 NPError ExecuteGetJavascriptUrl2Test::NewStream(NPMIMEType type, NPStream* stream, argument
42 if (stream == NULL) {
43 SetError("NewStream got null stream");
47 COMPILE_ASSERT(sizeof(unsigned long) <= sizeof(stream->notifyData),
49 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData);
60 int32 ExecuteGetJavascriptUrl2Test::WriteReady(NPStream *stream) { argument
64 int32 ExecuteGetJavascriptUrl2Test::Write(NPStream *stream, int32 offset, int32 len, argument
66 if (stream
91 DestroyStream(NPStream *stream, NPError reason) argument
[all...]
/external/chromium_org/extensions/browser/api/cast_channel/
H A Dlogger_unittest.cc33 z_stream stream = {0}; local
35 stream.next_in = reinterpret_cast<uint8*>(const_cast<char*>(input));
36 stream.avail_in = length;
37 stream.next_out = reinterpret_cast<uint8*>(&(*output)[0]);
38 stream.avail_out = output->size();
41 while (stream.avail_in > 0 && stream.avail_out > 0) {
43 int result = inflateInit2(&stream, MAX_WBITS + 16);
46 result = inflate(&stream, Z_FINISH);
53 result = inflateEnd(&stream);
[all...]
/external/chromium_org/media/audio/
H A Daudio_input_volume_unittest.cc62 // Helper method which checks if the stream has volume support.
63 bool HasDeviceVolumeControl(AudioInputStream* stream) { argument
64 if (!stream)
67 return (stream->GetMaxVolume() != 0.0);
126 DLOG(WARNING) << "Failed to open stream for device " << it->unique_id;
H A Daudio_io.h41 // Models an audio stream that gets rendered to the audio hardware output.
44 // An audio stream allocates several buffers for audio data and calls
47 // by |samples_per_packet| specified in AudioParameters when the stream is
70 virtual void OnError(AudioOutputStream* stream) = 0;
78 // Open the stream. false is returned if the stream cannot be opened. Open()
86 // The output stream does not take ownership of this callback.
99 // Close the stream. This also generates AudioSourceCallback::OnClose().
113 virtual void OnData(AudioInputStream* stream, argument
119 virtual void OnData(AudioInputStream* stream, argument
[all...]
H A Daudio_output_dispatcher_impl.cc44 // Ensure that there is at least one open stream.
115 // Leave at least a single stream running until the close timer fires to help
135 AudioOutputStream* stream = audio_manager_->MakeAudioOutputStream( local
137 if (!stream)
140 if (!stream->Open()) {
141 stream->Close();
146 audio_stream_ids_[stream] = stream_id;
150 idle_streams_.push_back(stream);
164 AudioOutputStream* stream = idle_streams_[i]; local
165 stream
[all...]
/external/chromium_org/media/audio/cras/
H A Dcras_input_unittest.cc43 // MakeAudioInputStream to create the stream in the tests.
44 virtual void ReleaseInputStream(AudioInputStream* stream) OVERRIDE {
45 DCHECK(stream); variable
46 delete stream;
/external/chromium_org/media/cast/logging/
H A Dlog_serializer.cc117 z_stream stream = {0}; local
118 int result = deflateInit2(&stream,
127 stream.next_in = reinterpret_cast<uint8*>(uncompressed_buffer);
128 stream.avail_in = uncompressed_bytes;
129 stream.next_out = reinterpret_cast<uint8*>(output);
130 stream.avail_out = max_output_bytes;
134 result = deflate(&stream, Z_FINISH);
140 result = deflateEnd(&stream);
144 *output_bytes = max_output_bytes - stream.avail_out;
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Darray_internal.cc15 std::ostringstream stream; local
16 stream << message << ": array size - " << size << "; index - " << index;
17 return stream.str();
23 std::ostringstream stream; local
24 stream << message << ": array size - " << size << "; expected size - "
26 return stream.str();
/external/chromium_org/net/quic/
H A Dquic_client_session_test.cc102 QuicReliableClientStream* stream = session_.CreateOutgoingDataStream(); local
103 EXPECT_TRUE(stream);
104 streams.push_back(stream);
108 // Close a stream and ensure I can now open a new one.
118 QuicReliableClientStream* stream = session_.CreateOutgoingDataStream(); local
119 EXPECT_TRUE(stream);
120 streams.push_back(stream);
123 QuicReliableClientStream* stream; local
127 stream_request.StartRequest(session_.GetWeakPtr(), &stream,
130 // Close a stream an
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_stream_test_util.h25 explicit ClosingDelegate(const base::WeakPtr<SpdyStream>& stream);
36 // Returns whether or not the stream is closed.
47 explicit StreamDelegateBase(const base::WeakPtr<SpdyStream>& stream);
57 // Waits for the stream to be closed and returns the status passed
65 // Returns whether or not the stream is closed.
68 // Returns the stream's ID. If called when the stream is closed,
69 // returns the stream's ID when it was open.
76 const base::WeakPtr<SpdyStream>& stream() { return stream_; } function in class:net::test::StreamDelegateBase
88 // stream,
[all...]
H A Dspdy_write_queue.cc23 const base::WeakPtr<SpdyStream>& stream)
26 stream(stream),
27 has_stream(stream.get() != NULL) {}
48 const base::WeakPtr<SpdyStream>& stream) {
52 if (stream.get())
53 DCHECK_EQ(stream->priority(), priority);
55 PendingWrite(frame_type, frame_producer.release(), stream));
60 base::WeakPtr<SpdyStream>* stream) {
68 *stream
20 PendingWrite( SpdyFrameType frame_type, SpdyBufferProducer* frame_producer, const base::WeakPtr<SpdyStream>& stream) argument
45 Enqueue(RequestPriority priority, SpdyFrameType frame_type, scoped_ptr<SpdyBufferProducer> frame_producer, const base::WeakPtr<SpdyStream>& stream) argument
58 Dequeue(SpdyFrameType* frame_type, scoped_ptr<SpdyBufferProducer>* frame_producer, base::WeakPtr<SpdyStream>* stream) argument
77 RemovePendingWritesForStream( const base::WeakPtr<SpdyStream>& stream) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathByteStreamSource.cpp26 SVGPathByteStreamSource::SVGPathByteStreamSource(const SVGPathByteStream* stream) argument
28 ASSERT(stream);
29 m_streamCurrent = stream->begin();
30 m_streamEnd = stream->end();
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DMediaStreamCenter.cpp83 bool MediaStreamCenter::didAddMediaStreamTrack(MediaStreamDescriptor* stream, MediaStreamComponent* component) argument
85 return m_private && m_private->didAddMediaStreamTrack(stream, component);
88 bool MediaStreamCenter::didRemoveMediaStreamTrack(MediaStreamDescriptor* stream, MediaStreamComponent* component) argument
90 return m_private && m_private->didRemoveMediaStreamTrack(stream, component);
93 void MediaStreamCenter::didStopLocalMediaStream(MediaStreamDescriptor* stream) argument
96 m_private->didStopLocalMediaStream(stream);
104 void MediaStreamCenter::didCreateMediaStreamAndTracks(MediaStreamDescriptor* stream) argument
109 for (size_t i = 0; i < stream->numberOfAudioComponents(); ++i)
110 didCreateMediaStreamTrack(stream->audioComponent(i));
112 for (size_t i = 0; i < stream
119 didCreateMediaStream(MediaStreamDescriptor* stream) argument
146 MediaStreamDescriptor* stream = webStream; local
[all...]
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DPreprocessor.cpp68 std::ostringstream stream; local
69 stream << value;
73 token.text = stream.str();
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDirectiveHandler.cpp160 std::stringstream stream; local
161 stream << version;
162 std::string str = stream.str();
H A DInfoSink.h45 TPersistStringStream stream; local
46 stream << t;
47 sink.append(stream.str());
74 TPersistStringStream stream; local
76 stream.precision(1);
77 stream << std::showpoint << std::fixed << f;
79 stream.unsetf(std::ios::fixed);
80 stream.unsetf(std::ios::scientific);
81 stream.precision(8);
82 stream <<
[all...]
H A DintermOut.cpp62 TStringStream stream; local
65 stream << getQualifierString() << " " << getPrecisionString() << " ";
67 stream << "array[" << getArraySize() << "] of ";
69 stream << getCols() << "X" << getRows() << " matrix of ";
71 stream << getNominalSize() << "-component vector of ";
73 stream << getBasicString();
74 return stream.str();
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DVertexDeclarationCache.cpp66 // Find an indexed attribute to be mapped to D3D stream 0
102 int stream = i; local
115 stream = 0;
119 stream = indexedAttribute;
133 device->SetStreamSourceFreq(stream, frequency);
140 if (mAppliedVBs[stream].serial != attributes[i].serial ||
141 mAppliedVBs[stream].stride != attributes[i].stride ||
142 mAppliedVBs[stream].offset != attributes[i].offset)
144 device->SetStreamSource(stream, vertexBuffer->getBuffer(), attributes[i].offset, attributes[i].stride);
145 mAppliedVBs[stream]
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftpatent.c28 _tt_check_patents_in_range( FT_Stream stream, argument
39 p = stream->cursor;
116 FT_Stream stream = face->stream; local
138 result = _tt_check_patents_in_range( stream, length_i );
149 FT_Stream stream = face->stream; local
234 result = _tt_check_patents_in_range( stream, num_ins );
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dttbdf.c48 FT_Stream stream = FT_FACE(face)->stream; local
63 FT_Stream stream )
72 error = tt_face_goto_table( face, TTAG_BDF, stream, &length );
157 error = tt_face_load_bdf_props( face, FT_FACE( face )->stream );
H A Dttpost.c157 FT_Stream stream,
160 FT_Memory memory = stream->memory;
309 FT_Stream stream,
312 FT_Memory memory = stream->memory;
376 FT_Stream stream; local
383 /* get a stream for the face's resource */
384 stream = face->root.stream;
387 error = face->goto_table( face, TTAG_post, stream, &post_len );
401 error = load_format_20( face, stream, post_limi
156 load_format_20( TT_Face face, FT_Stream stream, FT_Long post_limit ) argument
308 load_format_25( TT_Face face, FT_Stream stream, FT_Long post_limit ) argument
[all...]
/external/chromium_org/third_party/icu/source/io/
H A Dustream.cpp37 operator<<(STD_OSTREAM& stream, const UnicodeString& str) argument
58 stream << buffer;
65 /* stream.flush();*/
66 return stream;
70 operator>>(STD_ISTREAM& stream, UnicodeString& str) argument
73 if (stream.fail()) {
74 return stream;
97 ch = stream.get();
98 if (stream.eof()) {
101 stream
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstreamcollection.h94 void AddStream(MediaStreamInterface* stream) { argument
97 if ((*it)->label().compare(stream->label()) == 0)
100 media_streams_.push_back(stream);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dpeerconnectiontestwrapper.h65 virtual void OnAddStream(webrtc::MediaStreamInterface* stream);
66 virtual void OnRemoveStream(webrtc::MediaStreamInterface* stream) {} argument
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dbundlefilter.cc86 bool BundleFilter::AddStream(const StreamParams& stream) { argument
87 if (GetStreamBySsrc(streams_, stream.first_ssrc(), NULL)) {
91 streams_.push_back(stream);

Completed in 4738 milliseconds

1234567891011>>