Searched refs:new_stream (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/courgette/third_party/
H A Dbsdiff.h60 SourceStream* new_stream,
69 SinkStream* new_stream);
74 const base::FilePath& new_stream);
H A Dbsdiff_apply.cc63 SinkStream* new_stream) {
83 if (header->dlen && !new_stream->Reserve(header->dlen))
121 if (!new_stream->Write(&byte, 1))
130 if (!new_stream->Write(extra_position, extra_count))
156 SinkStream* new_stream) {
169 MBS_ApplyPatch(&header, patch_stream, old_start, old_size, new_stream);
60 MBS_ApplyPatch(const MBSPatchHeader *header, SourceStream* patch_stream, const uint8* old_start, size_t old_size, SinkStream* new_stream) argument
154 ApplyBinaryPatch(SourceStream* old_stream, SourceStream* patch_stream, SinkStream* new_stream) argument
H A Dbsdiff_create.cc203 SourceStream* new_stream,
244 const uint8* newbuf = new_stream->Buffer();
245 const int newsize = static_cast<int>(new_stream->Remaining());
202 CreateBinaryPatch(SourceStream* old_stream, SourceStream* new_stream, SinkStream* patch_stream) argument
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_dispatcher.cc250 Stream new_stream; local
251 new_stream.handler = request.handler;
252 new_stream.audio_array = audio_array;
253 new_stream.video_array = video_array;
254 label_stream_map_[label] = new_stream;
335 Stream new_stream; local
336 new_stream.handler = request.handler;
338 new_stream.audio_array.push_back(device_info);
340 new_stream.video_array.push_back(device_info);
344 label_stream_map_[label] = new_stream;
[all...]
/external/chromium_org/courgette/
H A Dcourgette_tool.cc268 courgette::SinkStream* new_stream = program_sinks.stream(i); local
269 if (old_stream == NULL && new_stream == NULL)
275 new_source.Init(new_stream ? *new_stream : empty_sink);
317 courgette::SourceStream new_stream; local
319 new_stream.Init(new_buffer);
323 courgette::GenerateEnsemblePatch(&old_stream, &new_stream, &patch_stream);
394 courgette::SourceStream new_stream; local
396 new_stream.Init(new_buffer);
400 courgette::CreateBinaryPatch(&old_stream, &new_stream,
418 courgette::SinkStream new_stream; local
[all...]
/external/srtp/srtp/
H A Dsrtp.c628 srtp_stream_ctx_t *new_stream; local
632 hdr->ssrc, &new_stream);
637 new_stream->next = ctx->stream_list;
638 ctx->stream_list = new_stream;
641 new_stream->direction = dir_srtp_sender;
644 stream = new_stream;
1083 srtp_stream_ctx_t *new_stream; local
1092 status = srtp_stream_clone(ctx->stream_template, hdr->ssrc, &new_stream);
1097 new_stream->next = ctx->stream_list;
1098 ctx->stream_list = new_stream;
1470 srtp_stream_ctx_t *new_stream; local
1847 srtp_stream_ctx_t *new_stream; local
[all...]
/external/oprofile/include/
H A Dsstream110 char_type* new_stream = new char_type[stream_len];
111 memcpy(new_stream, stream, old_stream_len);
113 stream = new_stream;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dpeerconnection.cc297 // Check if we can send |new_stream| on a PeerConnection.
301 webrtc::MediaStreamInterface* new_stream) {
302 if (!new_stream || !current_streams)
304 if (current_streams->find(new_stream->label()) != NULL) {
305 LOG(LS_ERROR) << "MediaStream with label " << new_stream->label()
300 CanAddLocalMediaStream(webrtc::StreamCollectionInterface* current_streams, webrtc::MediaStreamInterface* new_stream) argument
H A Dmediastreamsignaling.cc404 MediaStreamInterface* new_stream = new_streams->at(i); local
405 stream_observer_->OnAddRemoteStream(new_stream);
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-trees.rb16 def new_stream(t) method in class:TestTreeNodeStream
22 stream = new_stream(t)
65 stream = new_stream(t)
137 stream = new_stream(t)
154 stream = new_stream(t)
/external/chromium_org/media/audio/win/
H A Daudio_low_latency_input_win_unittest.cc253 void Reset(AudioInputStream* new_stream) { argument
255 stream_ = new_stream;
/external/chromium/net/http/
H A Dhttp_network_transaction.cc275 HttpStream* new_stream = NULL; local
280 new_stream = stream_->RenewStreamForAuth();
283 if (!new_stream) {
286 // reusable if new_stream is NULL.
292 stream_.reset(new_stream);
/external/chromium_org/net/http/
H A Dhttp_network_transaction.cc334 HttpStream* new_stream = NULL; local
339 new_stream =
343 if (!new_stream) {
346 // reusable if new_stream is NULL.
352 stream_.reset(new_stream);
/external/chromium_org/net/spdy/
H A Dspdy_session.cc670 scoped_ptr<SpdyStream> new_stream(
676 *stream = new_stream->GetWeakPtr();
677 InsertCreatedStream(new_stream.Pass());
/external/libvpx/libvpx/
H A Dvpxenc.c1265 static struct stream_state *new_stream(struct global_config *global, function
1973 stream = new_stream(&global, stream);

Completed in 493 milliseconds