HomeSort by relevance Sort by last modified time
    Searched refs:streams (Results 51 - 75 of 183) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/net/quic/
quic_session.h 5 // A QuicSession, which demuxes a single connection to individual streams.
73 // Called by streams when they want to write data to the peer.
82 // Called by streams when they want to close the stream in both directions.
85 // Called when the session wants to go away and not accept any new streams.
128 // Returns the number of currently open streams, including those which have
162 // stream. Returns NULL if max streams have already been opened.
180 // In this case, it deletes streams given that it's safe to do so (no other
181 // operations are being done on the streams at this time)
184 base::hash_map<QuicStreamId, ReliableQuicStream*>* streams() { function in class:net::QuicSession
188 const base::hash_map<QuicStreamId, ReliableQuicStream*>* streams() const function in class:net::QuicSession
    [all...]
quic_stream_factory_test.cc 158 // in streams on different sessions.
179 std::vector<QuicHttpStream*> streams; local
197 streams.push_back(stream.release());
210 streams.front()->Close(false);
218 STLDeleteElements(&streams);
  /external/chromium_org/net/spdy/
spdy_write_queue_unittest.cc 155 // RemovePendingWritesForStream() on one of the streams. No dequeued
189 // those streams without a stream id, or with a stream_id after that
202 base::WeakPtr<SpdyStream> streams[] = { local
209 streams[i % arraysize(streams)]);
214 for (int i = 0; i < 100; i += arraysize(streams)) {
  /frameworks/av/services/camera/libcameraservice/api1/client2/
StreamingProcessor.h 38 * Management and processing for preview and recording streams
135 static bool isStreamActive(const Vector<int32_t> &streams,
  /external/libvorbis/doc/
a1-encapsulation-ogg.tex 9 streams to encapsulate Vorbis compressed audio packet data into file
18 transport streams. This specification document assumes a working
25 streams use Ogg transport streams in degenerate, unmultiplexed
33 The Ogg stream may be chained, i.e., contain multiple, contigous logical streams (links).
155 streams. The number of samples to be discarded must not exceed
  /frameworks/av/camera/tests/
ProCameraTests.cpp 481 * Creating a streaming request for these output streams from a template,
495 // set the output streams. default is empty
631 int32_t streams[] = { depthStreamId }; local
633 streams,
705 // set the output streams to just this stream ID
777 // set the output streams to just this stream ID
847 // set the output streams to just this stream ID
923 // set the output streams to just this stream ID
976 int32_t streams[] = { streamId }; local
977 ASSERT_NO_FATAL_FAILURE(createSubmitRequestForStreams(streams, /*count*/1))
1004 int32_t streams[] = { streamId }; local
1051 int32_t streams[] = { streamId, depthStreamId }; local
1130 int32_t streams[] = { streamId }; local
1184 int32_t streams[] = { streamId }; local
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_channel.c 133 if ((MM_STREAM_STATE_NOTUSED != ch_obj->streams[i].state) &&
134 (handler == ch_obj->streams[i].my_hdl)) {
135 s_obj = &ch_obj->streams[i];
697 if (MM_STREAM_STATE_NOTUSED == my_obj->streams[idx].state) {
698 stream_obj = &my_obj->streams[idx];
703 CDBG_ERROR("%s: streams reach max, no more stream allowed to add", __func__);
805 * streams within this channel
826 if (my_obj->streams[i].my_hdl > 0) {
828 my_obj->streams[i].my_hdl);
836 __func__, i, my_obj->streams[i].my_hdl)
    [all...]
  /hardware/qcom/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_channel.c 133 if ((MM_STREAM_STATE_NOTUSED != ch_obj->streams[i].state) &&
134 (handler == ch_obj->streams[i].my_hdl)) {
135 s_obj = &ch_obj->streams[i];
699 if (MM_STREAM_STATE_NOTUSED == my_obj->streams[idx].state) {
700 stream_obj = &my_obj->streams[idx];
705 CDBG_ERROR("%s: streams reach max, no more stream allowed to add", __func__);
807 * streams within this channel
828 if (my_obj->streams[i].my_hdl > 0) {
830 my_obj->streams[i].my_hdl);
838 __func__, i, my_obj->streams[i].my_hdl)
    [all...]
  /device/asus/flo/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_snapshot.c 188 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
189 m_stream = &channel->streams[i];
216 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_POSTVIEW) {
217 p_stream = &channel->streams[i];
  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.h 43 // DiskCache - An LRU cache of streams, stored on disk.
45 // Streams are identified by a unique resource id. Multiple streams can be
47 // resources are flushed from the cache, all streams associated with those
84 size_t streams; member in struct:talk_base::DiskCache::Entry
  /external/chromium_org/media/base/
media_file_checker.cc 46 // Remember the codec context for any decodable audio or video streams.
49 AVCodecContext* c = format_context->streams[i]->codec;
  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 129 AVStream* av_stream = av_format_context_->streams[i];
145 AVStream* av_stream = av_format_context_->streams[i];
161 EXPECT_EQ(-1, audio_stream_index_) << "Found multiple audio streams.";
164 EXPECT_EQ(-1, video_stream_index_) << "Found multiple video streams.";
352 return av_format_context_->streams[audio_stream_index_];
355 return av_format_context_->streams[video_stream_index_];
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsessiondescriptionfactory.cc 50 typedef cricket::MediaSessionOptions::Streams Streams;
60 // Checks if each Stream within the |streams| has unique id.
61 static bool ValidStreams(const Streams& streams) {
62 Streams sorted_streams = streams;
64 Streams::iterator it =
193 if (!ValidStreams(options.streams)) {
194 error += " called with invalid media streams."
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
diskcache.h 43 // DiskCache - An LRU cache of streams, stored on disk.
45 // Streams are identified by a unique resource id. Multiple streams can be
47 // resources are flushed from the cache, all streams associated with those
84 size_t streams; member in struct:talk_base::DiskCache::Entry
  /external/chromium_org/third_party/openssl/openssl/crypto/rand/
rand_egd.c 119 # include <streams/un.h>
  /external/openssl/crypto/rand/
rand_egd.c 119 # include <streams/un.h>
  /hardware/libhardware/include/hardware/
camera3.h 82 * management. Bidirectional streams replace STREAM_FROM_STREAM construct.
109 * of input/output streams to the HAL device.
113 * output streams listed in configure_streams. The same stream is registered
128 * register_stream_buffers() for not-yet-registered streams, and call
147 * hardware and pipeline for a new set of input/output streams. Some streams
148 * may be reused from the previous configuration; if these streams' buffers
189 * images, raw sensor readout, or support for YUV output streams above maximum
1190 camera3_stream_t **streams; member in struct:camera3_stream_configuration
    [all...]
  /hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_snapshot.c 188 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
189 m_stream = &channel->streams[i];
216 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_POSTVIEW) {
217 p_stream = &channel->streams[i];
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_emit.c 953 struct r300_vertex_stream_state *streams = local
961 for (i = 0; i < streams->count; i++) {
963 streams->vap_prog_stream_cntl[i]);
966 for (i = 0; i < streams->count; i++) {
968 streams->vap_prog_stream_cntl_ext[i]);
973 OUT_CS_REG_SEQ(R300_VAP_PROG_STREAM_CNTL_0, streams->count);
974 OUT_CS_TABLE(streams->vap_prog_stream_cntl, streams->count);
975 OUT_CS_REG_SEQ(R300_VAP_PROG_STREAM_CNTL_EXT_0, streams->count);
976 OUT_CS_TABLE(streams->vap_prog_stream_cntl_ext, streams->count)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_emit.c 953 struct r300_vertex_stream_state *streams = local
961 for (i = 0; i < streams->count; i++) {
963 streams->vap_prog_stream_cntl[i]);
966 for (i = 0; i < streams->count; i++) {
968 streams->vap_prog_stream_cntl_ext[i]);
973 OUT_CS_REG_SEQ(R300_VAP_PROG_STREAM_CNTL_0, streams->count);
974 OUT_CS_TABLE(streams->vap_prog_stream_cntl, streams->count);
975 OUT_CS_REG_SEQ(R300_VAP_PROG_STREAM_CNTL_EXT_0, streams->count);
976 OUT_CS_TABLE(streams->vap_prog_stream_cntl_ext, streams->count)
    [all...]
  /external/chromium_org/media/tools/demuxer_bench/
demuxer_bench.cc 56 typedef std::vector<media::DemuxerStream* > Streams;
68 // Returns true when all streams have reached end of stream.
72 const Streams& streams() { return streams_; } function in class:StreamReader
83 Streams streams_;
156 // Ignore streams at EOS.
220 media::DemuxerStream* stream = stream_reader.streams()[i];
  /external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
OGGLoader.java 256 Collection<LogicalOggStream> streams = oggStream.getLogicalStreams(); local
257 loStream = streams.iterator().next();
298 // audio streams must remain open
  /device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/
mm_camera_channel.c 146 if (handler == ch_obj->streams[i].my_hdl) {
147 s_obj = &ch_obj->streams[i];
519 /* check if all streams are stopped
523 if (MM_STREAM_STATE_ACTIVE_STREAM_ON == my_obj->streams[i].state ||
524 MM_STREAM_STATE_ACTIVE_STREAM_OFF == my_obj->streams[i].state) {
652 if (MM_STREAM_STATE_NOTUSED == my_obj->streams[idx].state) {
653 stream_obj = &my_obj->streams[idx];
658 CDBG_ERROR("%s: streams reach max, no more stream allowed to add", __func__);
745 /* first check if all streams to be bundled are valid */
766 /* set bundled flag to streams */
    [all...]
  /external/chromium/net/tools/spdyshark/
packet-spdy.c 307 conv_data->streams = NULL;
339 if (conv_data->streams == NULL)
340 conv_data->streams = g_array_new(FALSE, TRUE, sizeof(spdy_stream_info_t *));
341 if (stream_id < conv_data->streams->len)
342 DISSECTOR_ASSERT(g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id) == NULL);
344 g_array_set_size(conv_data->streams, stream_id+1);
352 g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id) = si;
360 if (conv_data->streams == NULL || stream_id >= conv_data->streams->len)
363 return g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id)
    [all...]
  /external/chromium_org/net/tools/spdyshark/
packet-spdy.c 307 conv_data->streams = NULL;
339 if (conv_data->streams == NULL)
340 conv_data->streams = g_array_new(FALSE, TRUE, sizeof(spdy_stream_info_t *));
341 if (stream_id < conv_data->streams->len)
342 DISSECTOR_ASSERT(g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id) == NULL);
344 g_array_set_size(conv_data->streams, stream_id+1);
352 g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id) = si;
360 if (conv_data->streams == NULL || stream_id >= conv_data->streams->len)
363 return g_array_index(conv_data->streams, spdy_stream_info_t*, stream_id)
    [all...]

Completed in 460 milliseconds

1 23 4 5 6 7 8