HomeSort by relevance Sort by last modified time
    Searched refs:new_stream (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/courgette/third_party/
bsdiff.h 60 SourceStream* new_stream,
69 SinkStream* new_stream);
74 const base::FilePath& new_stream);
bsdiff_apply.cc 63 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);
bsdiff_create.cc 203 SourceStream* new_stream,
244 const uint8* newbuf = new_stream->Buffer();
245 const int newsize = static_cast<int>(new_stream->Remaining());
  /external/chromium_org/content/renderer/media/
media_stream_dispatcher.cc 273 Stream new_stream; local
274 new_stream.handler = request.handler;
275 new_stream.audio_array = audio_array;
276 new_stream.video_array = video_array;
277 label_stream_map_[label] = new_stream;
382 Stream new_stream; local
383 new_stream.handler = request.handler;
385 new_stream.audio_array.push_back(device_info);
387 new_stream.video_array.push_back(device_info);
391 label_stream_map_[label] = new_stream;
    [all...]
  /external/chromium_org/courgette/
courgette_tool.cc 263 courgette::SinkStream* new_stream = program_sinks.stream(i); local
264 if (old_stream == NULL && new_stream == NULL)
270 new_source.Init(new_stream ? *new_stream : empty_sink);
312 courgette::SourceStream new_stream; local
314 new_stream.Init(new_buffer);
318 courgette::GenerateEnsemblePatch(&old_stream, &new_stream, &patch_stream);
389 courgette::SourceStream new_stream; local
391 new_stream.Init(new_buffer);
395 courgette::CreateBinaryPatch(&old_stream, &new_stream, &patch_stream)
413 courgette::SinkStream new_stream; local
    [all...]
  /external/srtp/srtp/
srtp.c 628 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/
sstream 110 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/
peerconnection.cc 232 // Check if we can send |new_stream| on a PeerConnection.
236 webrtc::MediaStreamInterface* new_stream) {
237 if (!new_stream || !current_streams)
239 if (current_streams->find(new_stream->label()) != NULL) {
240 LOG(LS_ERROR) << "MediaStream with label " << new_stream->label()
mediastreamsignaling.cc 385 MediaStreamInterface* new_stream = new_streams->at(i); local
386 stream_observer_->OnAddRemoteStream(new_stream);
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-trees.rb 16 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/net/http/
http_network_transaction.cc 275 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);
    [all...]
  /external/chromium_org/net/http/
http_network_transaction.cc 297 HttpStream* new_stream = NULL; local
302 new_stream =
306 if (!new_stream) {
309 // reusable if new_stream is NULL.
315 stream_.reset(new_stream);
    [all...]
  /external/chromium_org/net/spdy/
spdy_session.cc 628 scoped_ptr<SpdyStream> new_stream(
634 *stream = new_stream->GetWeakPtr();
635 InsertCreatedStream(new_stream.Pass());
    [all...]
  /external/libvpx/libvpx/
vpxenc.c 1265 static struct stream_state *new_stream(struct global_config *global, function
    [all...]

Completed in 505 milliseconds