HomeSort by relevance Sort by last modified time
    Searched refs:streams (Results 76 - 100 of 548) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
StreamFlagsTest.java 30 import java.util.stream.Streams;
50 Stream<?>[] streams = { arrayList, linkedList, hashSet, treeSet, linkedHashSet, repeat }; field in class:StreamFlagsTest
88 for (Stream<?> s : streams) {
  /system/update_engine/
sideload_main.cc 30 #include <brillo/streams/file_stream.h>
31 #include <brillo/streams/stream.h>
  /art/build/
Android.cpplint.mk 20 ART_CPPLINT_FILTER := --filter=-whitespace/line_length,-build/include,-readability/function,-readability/streams,-readability/todo,-runtime/references,-runtime/sizeof,-runtime/threadsafe_fn,-runtime/printf
  /device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_preview.c 78 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
79 p_stream = &channel->streams[i];
161 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
162 m_stream = &channel->streams[i];
189 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_POSTVIEW) {
190 p_stream = &channel->streams[i];
279 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_PREVIEW) {
280 p_stream = &channel->streams[i];
358 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_PREVIEW) {
359 p_stream = &channel->streams[i]
    [all...]
  /external/libbrillo/brillo/streams/
input_stream_set.h 12 #include <brillo/streams/stream.h>
16 // Multiplexer stream allows to bundle a bunch of secondary streams in one
18 // all those source streams.
20 // When created on a set of source streams like stream1, stream2, stream3, etc.,
24 // InputStreamSet has an option of owning the underlying source streams
25 // or just referencing them. Owned streams are passed to InputStreamSet
26 // with exclusive ownership transfer (using StreamPtr) and those streams will
28 // Referenced source streams' life time is maintained elsewhere and they must
30 // muliplexer stream does not close the referenced streams.
36 // streams. |source_streams| is the list of all source stream reference
    [all...]
stream_utils.h 10 #include <brillo/streams/stream.h>
88 // streams for the duration of the operation and then gives them back when
100 // streams for the duration of the operation and then gives them back when
tls_stream.h 14 #include <brillo/streams/stream.h>
input_stream_set.cc 5 #include <brillo/streams/input_stream_set.h>
9 #include <brillo/streams/stream_errors.h>
10 #include <brillo/streams/stream_utils.h>
34 // Make sure we have only readable streams.
39 "The stream list must contain only readable streams");
146 // We want to close only the owned streams.
149 success = false; // Keep going for other streams...
input_stream_set_unittest.cc 5 #include <brillo/streams/input_stream_set.h>
8 #include <brillo/streams/mock_stream.h>
9 #include <brillo/streams/stream_errors.h>
47 // Methods that should just succeed/fail without calling underlying streams.
68 // Methods that redirect calls to underlying streams.
memory_containers_unittest.cc 5 #include <brillo/streams/memory_containers.h>
10 #include <brillo/streams/mock_stream.h>
11 #include <brillo/streams/stream_errors.h>
memory_stream.cc 5 #include <brillo/streams/memory_stream.h>
11 #include <brillo/streams/stream_errors.h>
12 #include <brillo/streams/stream_utils.h>
  /external/webrtc/talk/app/webrtc/
peerconnection.h 232 // Makes sure a MediaStreamTrack is created for each StreamParam in |streams|,
236 // |media_type| is the type of the |streams| and can be either audio or video.
239 const std::vector<cricket::StreamParams>& streams,
268 // Loops through the vector of |streams| and finds added and removed
272 void UpdateLocalTracks(const std::vector<cricket::StreamParams>& streams,
278 // streams in the local SessionDescription can be mapped to a MediaStreamTrack
295 void UpdateLocalRtpDataChannels(const cricket::StreamParamsVec& streams);
296 void UpdateRemoteRtpDataChannels(const cricket::StreamParamsVec& streams);
360 // Streams added via AddStream.
362 // Streams created as a result of SetRemoteDescription
    [all...]
peerconnection.cc 350 // as containing no streams.
355 ? desc->streams()
371 session_options->streams.clear();
    [all...]
  /external/webrtc/webrtc/
config.h 110 std::vector<VideoStream> streams; member in struct:webrtc::VideoEncoderConfig
  /external/webrtc/webrtc/video/
video_quality_test.h 63 std::vector<VideoStream> streams; // If empty, one stream is assumed. member in struct:webrtc::VideoQualityTest::Params::__anon39297
video_quality_test.cc 205 // TODO(ivica): Make this work for > 2 streams.
337 // TODO(ivica): Make this work for > 2 streams.
617 if (params_.ss.streams.size() > 1)
627 if (params_.ss.streams.empty())
628 params_.ss.streams.push_back(VideoQualityTest::DefaultVideoStream(params_));
651 RTC_CHECK_LT(params_.ss.selected_stream, params_.ss.streams.size());
652 for (const VideoStream& stream : params_.ss.streams) {
659 // TODO(ivica): Should we check if the sum of all streams/layers is equal to
670 RTC_CHECK_EQ(params_.ss.streams.size(), 1u);
729 RTC_CHECK(params->ss.streams.empty())
    [all...]
end_to_end_tests.cc 221 video_encoder_config_.streams[0].width,
222 video_encoder_config_.streams[0].height));
258 encoder_config->streams[0].min_bitrate_bps = 50000;
259 encoder_config->streams[0].target_bitrate_bps =
260 encoder_config->streams[0].max_bitrate_bps = 2000000;
311 encoder_config->streams[0].min_bitrate_bps = 50000;
312 encoder_config->streams[0].target_bitrate_bps =
313 encoder_config->streams[0].max_bitrate_bps = 2000000;
888 ASSERT_EQ(1u, video_encoder_config_.streams.size()) << "Test setup error.";
889 video_encoder_config_.streams[0].width = kWidth
    [all...]
video_send_stream_tests.cc 847 int min_bitrate_bps = encoder_config->streams[0].min_bitrate_bps;
850 ASSERT_GT(encoder_config->streams[0].max_bitrate_bps,
    [all...]
  /device/huawei/angler/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_preview.c 67 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
68 p_stream = &channel->streams[i];
147 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_PREVIEW) {
148 p_stream = &channel->streams[i];
226 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_PREVIEW) {
227 p_stream = &channel->streams[i];
238 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
239 m_stream = &channel->streams[i];
250 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
251 md_stream = &channel->streams[i]
    [all...]
  /device/lge/bullhead/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_preview.c 67 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
68 p_stream = &channel->streams[i];
147 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_PREVIEW) {
148 p_stream = &channel->streams[i];
226 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_PREVIEW) {
227 p_stream = &channel->streams[i];
238 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_SNAPSHOT) {
239 m_stream = &channel->streams[i];
250 if (channel->streams[i].s_config.stream_info->stream_type == CAM_STREAM_TYPE_METADATA) {
251 md_stream = &channel->streams[i]
    [all...]
  /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
  /hardware/interfaces/camera/provider/2.4/vts/functional/
VtsHalCameraProviderV2_4TargetTest.cpp 2328 ::android::hardware::hidl_vec<Stream> streams = {stream}; local
2397 ::android::hardware::hidl_vec<Stream> streams = {stream}; local
2577 ::android::hardware::hidl_vec<Stream> streams = {inputStream, zslStream, local
2669 ::android::hardware::hidl_vec<Stream> streams = {previewStream, local
2747 ::android::hardware::hidl_vec<Stream> streams = {stream}; local
2910 ::android::hardware::hidl_vec<Stream> streams = {videoStream, blobStream}; local
3702 ::android::hardware::hidl_vec<Stream> streams = {*previewStream}; local
    [all...]
  /external/webrtc/talk/session/media/
channel.cc 149 // streams can).
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
AudioHalService.java 107 VehicleAudioFocusIndex.STREAMS;
144 * @param streams
148 void onFocusChange(int focusState, int streams, int externalFocus);
355 public void requestAudioFocusChange(int request, int streams, int audioContexts) {
356 requestAudioFocusChange(request, streams, VEHICLE_AUDIO_EXT_FOCUS_NONE_FLAG, audioContexts);
359 public void requestAudioFocusChange(int request, int streams, int extFocus, int audioContexts) {
360 int[] payload = { request, streams, extFocus, audioContexts };
448 if (config.configArray.get(0) == 0) { // physical streams only
478 * @return 0: focusState, 1: streams, 2: externalFocus
704 int streams = vec.get(VehicleAudioFocusIndex.STREAMS) local
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2_unittest.cc 919 std::vector<FakeVideoSendStream*> streams = local
936 std::vector<FakeVideoReceiveStream*> streams = local
2036 std::vector<webrtc::VideoStream> streams = stream->GetVideoStreams(); local
2056 std::vector<webrtc::VideoStream> streams = AddSendStream()->GetVideoStreams(); local
2109 std::vector<webrtc::VideoStream> streams = stream->GetVideoStreams(); local
2136 std::vector<webrtc::VideoStream> streams = stream->GetVideoStreams(); local
3287 std::vector<FakeVideoSendStream*> streams = local
3305 std::vector<FakeVideoReceiveStream*> streams = local
    [all...]

Completed in 1115 milliseconds

1 2 34 5 6 7 8 91011>>