/foundation/multimedia/image_framework/frameworks/innerkitsimpl/accessor/src/ |
H A D | metadata_accessor_factory.cpp | 76 std::shared_ptr<MetadataStream> stream = std::make_shared<BufferMetadataStream>(dataInfo.buffer, dataInfo.size, in Create() local 78 return Create(stream, error); in Create() 83 std::shared_ptr<MetadataStream> stream = std::make_shared<FileMetadataStream>(fd, originalFd); in Create() local 84 if (!stream->Open(OpenMode::ReadWrite)) { in Create() 85 IMAGE_LOGE("Failed to open the stream with file descriptor: %{public}d", fd); in Create() 88 return Create(stream, error); in Create() 94 std::shared_ptr<MetadataStream> stream = std::make_shared<FileMetadataStream>(path, originalPath); in Create() local 95 if (!stream->Open(OpenMode::ReadWrite)) { in Create() 96 IMAGE_LOGE("Failed to open the stream with file"); in Create() 99 return Create(stream, erro in Create() 102 Create(std::shared_ptr<MetadataStream> &stream, uint32_t &error) Create() argument 123 GetImageType(std::shared_ptr<MetadataStream> &stream, uint32_t &error) GetImageType() argument [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/uvc/ |
H A D | uvc_metadata.c | 29 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); in uvc_meta_v4l2_querycap() local 30 struct uvc_video_chain *chain = stream->chain; in uvc_meta_v4l2_querycap() 34 usb_make_path(stream->dev->udev, cap->bus_info, sizeof(cap->bus_info)); in uvc_meta_v4l2_querycap() 45 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); in uvc_meta_v4l2_get_format() local 53 fmt->dataformat = stream->meta.format; in uvc_meta_v4l2_get_format() 63 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); in uvc_meta_v4l2_try_format() local 64 struct uvc_device *dev = stream->dev; in uvc_meta_v4l2_try_format() 84 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); in uvc_meta_v4l2_set_format() local 97 mutex_lock(&stream->mutex); in uvc_meta_v4l2_set_format() 99 if (uvc_queue_allocated(&stream in uvc_meta_v4l2_set_format() 113 struct uvc_streaming *stream = video_get_drvdata(vfh->vdev); uvc_meta_v4l2_enum_formats() local 159 uvc_meta_register(struct uvc_streaming *stream) uvc_meta_register() argument [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuFormatUtil.hpp | 46 std::ostream& toStream (std::ostream& stream) const in toStream() 50 return stream << "0x" in toStream() 60 std::stringstream stream; in toString() local 62 toStream(stream); in toString() 63 return stream.str(); in toString() 71 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex) in operator <<() argument 73 return hex.toStream(stream); in operator <<() 100 std::ostream& toStream (std::ostream& stream) in toStream() argument 108 stream << "|"; in toStream() 109 stream << curDes in toStream() 131 operator <<(std::ostream& stream, Bitfield<BitfieldSize> decoder) operator <<() argument 174 operator <<(std::ostream& stream, const Enum<T, NumBytes>& fmt) operator <<() argument [all...] |
/kernel/linux/linux-6.6/include/sound/ |
H A D | soc-dai.h | 221 bool snd_soc_dai_stream_valid(struct snd_soc_dai *dai, int stream); 224 int stream, int action); 226 int stream) in snd_soc_dai_activate() 228 snd_soc_dai_action(dai, stream, 1); in snd_soc_dai_activate() 231 int stream) in snd_soc_dai_deactivate() 233 snd_soc_dai_action(dai, stream, -1); in snd_soc_dai_deactivate() 316 void *stream, int direction); 323 int (*mute_stream)(struct snd_soc_dai *dai, int mute, int stream); 454 struct snd_soc_dai_stream stream[SNDRV_PCM_STREAM_LAST + 1]; member 477 snd_soc_dai_get_pcm_stream(const struct snd_soc_dai *dai, int stream) in snd_soc_dai_get_pcm_stream() argument 225 snd_soc_dai_activate(struct snd_soc_dai *dai, int stream) snd_soc_dai_activate() argument 230 snd_soc_dai_deactivate(struct snd_soc_dai *dai, int stream) snd_soc_dai_deactivate() argument 486 snd_soc_dai_get_widget(struct snd_soc_dai *dai, int stream) snd_soc_dai_get_widget() argument 494 snd_soc_dai_set_widget(struct snd_soc_dai *dai, int stream, struct snd_soc_dapm_widget *widget) snd_soc_dai_set_widget() argument 502 snd_soc_dai_dma_data_get(const struct snd_soc_dai *dai, int stream) snd_soc_dai_dma_data_get() argument 510 snd_soc_dai_dma_data_set(struct snd_soc_dai *dai, int stream, void *data) snd_soc_dai_dma_data_set() argument 521 snd_soc_dai_tdm_mask_get(struct snd_soc_dai *dai, int stream) snd_soc_dai_tdm_mask_get() argument 526 snd_soc_dai_tdm_mask_set(struct snd_soc_dai *dai, int stream, unsigned int tdm_mask) snd_soc_dai_tdm_mask_set() argument 532 snd_soc_dai_stream_active(struct snd_soc_dai *dai, int stream) snd_soc_dai_stream_active() argument 561 snd_soc_dai_set_stream(struct snd_soc_dai *dai, void *stream, int direction) snd_soc_dai_set_stream() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/selftests/ |
H A D | i915_perf.c | 104 struct i915_perf_stream *stream; in test_stream() local 117 stream = kzalloc(sizeof(*stream), GFP_KERNEL); in test_stream() 118 if (!stream) { in test_stream() 123 stream->perf = perf; in test_stream() 126 if (i915_oa_stream_init(stream, ¶m, &props)) { in test_stream() 127 kfree(stream); in test_stream() 128 stream = NULL; in test_stream() 134 return stream; in test_stream() 137 static void stream_destroy(struct i915_perf_stream *stream) in stream_destroy() argument 149 struct i915_perf_stream *stream; live_sanitycheck() local 200 struct i915_perf_stream *stream; live_noa_delay() local 292 struct i915_perf_stream *stream; live_noa_gpr() local [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/ |
H A D | dvb-usb-urb.c | 70 static void dvb_usb_data_complete(struct usb_data_stream *stream, u8 *buffer, size_t length) in dvb_usb_data_complete() argument 72 struct dvb_usb_adapter *adap = stream->user_priv; in dvb_usb_data_complete() 77 static void dvb_usb_data_complete_204(struct usb_data_stream *stream, u8 *buffer, size_t length) in dvb_usb_data_complete_204() argument 79 struct dvb_usb_adapter *adap = stream->user_priv; in dvb_usb_data_complete_204() 84 static void dvb_usb_data_complete_raw(struct usb_data_stream *stream, in dvb_usb_data_complete_raw() argument 87 struct dvb_usb_adapter *adap = stream->user_priv; in dvb_usb_data_complete_raw() 97 adap->fe_adap[i].stream.udev = adap->dev->udev; in dvb_usb_adapter_stream_init() 99 adap->fe_adap[i].stream.complete = in dvb_usb_adapter_stream_init() 103 adap->fe_adap[i].stream.complete = in dvb_usb_adapter_stream_init() 106 adap->fe_adap[i].stream in dvb_usb_adapter_stream_init() [all...] |
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/ |
H A D | dvb-usb-urb.c | 70 static void dvb_usb_data_complete(struct usb_data_stream *stream, u8 *buffer, size_t length) in dvb_usb_data_complete() argument 72 struct dvb_usb_adapter *adap = stream->user_priv; in dvb_usb_data_complete() 77 static void dvb_usb_data_complete_204(struct usb_data_stream *stream, u8 *buffer, size_t length) in dvb_usb_data_complete_204() argument 79 struct dvb_usb_adapter *adap = stream->user_priv; in dvb_usb_data_complete_204() 84 static void dvb_usb_data_complete_raw(struct usb_data_stream *stream, in dvb_usb_data_complete_raw() argument 87 struct dvb_usb_adapter *adap = stream->user_priv; in dvb_usb_data_complete_raw() 97 adap->fe_adap[i].stream.udev = adap->dev->udev; in dvb_usb_adapter_stream_init() 99 adap->fe_adap[i].stream.complete = in dvb_usb_adapter_stream_init() 103 adap->fe_adap[i].stream.complete = in dvb_usb_adapter_stream_init() 106 adap->fe_adap[i].stream in dvb_usb_adapter_stream_init() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/link/accessories/ |
H A D | link_fpga.c | 36 struct dc *dc = pipe_ctx->stream->ctx->dc; in dp_fpga_hpo_enable_link_and_stream() 37 struct dc_stream_state *stream = pipe_ctx->stream; in dp_fpga_hpo_enable_link_and_stream() local 43 const struct link_hwss *link_hwss = get_link_hwss(stream->link, &pipe_ctx->link_res); in dp_fpga_hpo_enable_link_and_stream() 44 DC_LOGGER_INIT(pipe_ctx->stream->ctx->logger); in dp_fpga_hpo_enable_link_and_stream() 46 stream->link->cur_link_settings = link_settings; in dp_fpga_hpo_enable_link_and_stream() 49 link_hwss->ext.enable_dp_link_output(stream->link, &pipe_ctx->link_res, in dp_fpga_hpo_enable_link_and_stream() 50 stream->signal, pipe_ctx->clock_source->id, in dp_fpga_hpo_enable_link_and_stream() 57 if (pipe_ctx->stream->timing.flags.DSC) { in dp_fpga_hpo_enable_link_and_stream() 62 if ((stream in dp_fpga_hpo_enable_link_and_stream() [all...] |
/third_party/icu/icu4c/source/io/ |
H A D | ustream.cpp | 40 operator<<(STD_OSTREAM& stream, const UnicodeString& str) in operator <<() argument 61 stream << buffer; in operator <<() 68 /* stream.flush();*/ in operator <<() 69 return stream; in operator <<() 73 operator>>(STD_ISTREAM& stream, UnicodeString& str) in operator >>() argument 76 if (stream.fail()) { in operator >>() 77 return stream; in operator >>() 100 ch = stream.get(); in operator >>() 101 if (stream.eof()) { in operator >>() 104 stream in operator >>() [all...] |
/third_party/skia/third_party/externals/icu/source/io/ |
H A D | ustream.cpp | 40 operator<<(STD_OSTREAM& stream, const UnicodeString& str) in operator <<() argument 61 stream << buffer; in operator <<() 68 /* stream.flush();*/ in operator <<() 69 return stream; in operator <<() 73 operator>>(STD_ISTREAM& stream, UnicodeString& str) in operator >>() argument 76 if (stream.fail()) { in operator >>() 77 return stream; in operator >>() 100 ch = stream.get(); in operator >>() 101 if (stream.eof()) { in operator >>() 104 stream in operator >>() [all...] |
/third_party/skia/bench/ |
H A D | JSONBench.cpp | 71 if (auto stream = SkStream::MakeFromFile(kBenchFile)) { 72 SkASSERT(stream->hasLength()); 73 fCStringData = SkData::MakeUninitialized(stream->getLength() + 1); 75 SkAssertResult(stream->read(data8, stream->getLength()) == stream->getLength()); 76 data8[stream->getLength()] = '\0'; 123 if (auto stream = SkStream::MakeFromFile(kBenchFile)) { 124 SkASSERT(stream->hasLength()); 125 fCStringData = SkData::MakeUninitialized(stream [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/modules/info_packet/ |
H A D | info_packet.c | 133 void mod_build_vsc_infopacket(const struct dc_stream_state *stream, in mod_build_vsc_infopacket() argument 144 if (stream->timing.timing_3d_format != TIMING_3D_FORMAT_NONE && stream->view_format != VIEW_3D_FORMAT_NONE) { in mod_build_vsc_infopacket() 150 if (stream->link->psr_settings.psr_feature_enabled) { in mod_build_vsc_infopacket() 151 if (stream->link->psr_settings.psr_version == DC_PSR_VERSION_SU_1) in mod_build_vsc_infopacket() 153 else if (stream->link->psr_settings.psr_version == DC_PSR_VERSION_1) in mod_build_vsc_infopacket() 157 if (stream->link->replay_settings.config.replay_supported) in mod_build_vsc_infopacket() 161 if (stream->use_vsc_sdp_for_colorimetry) in mod_build_vsc_infopacket() 253 switch (stream->timing.timing_3d_format) { in mod_build_vsc_infopacket() 346 switch (stream in mod_build_vsc_infopacket() 454 mod_build_hf_vsif_infopacket(const struct dc_stream_state *stream, struct dc_info_packet *info_packet) mod_build_hf_vsif_infopacket() argument 527 mod_build_adaptive_sync_infopacket(const struct dc_stream_state *stream, enum adaptive_sync_type asType, const struct AS_Df_params *param, struct dc_info_packet *info_packet) mod_build_adaptive_sync_infopacket() argument 564 mod_build_adaptive_sync_infopacket_v2(const struct dc_stream_state *stream, const struct AS_Df_params *param, struct dc_info_packet *info_packet) mod_build_adaptive_sync_infopacket_v2() argument [all...] |
/third_party/node/test/fixtures/wpt/encoding/streams/ |
H A D | decode-attributes.any.js | 19 const stream = new TextDecoderStream(label); 20 assert_equals(stream.encoding, labelToName[label], 'encoding should match'); 26 const stream = new TextDecoderStream('utf-8', { fatal: falseValue }); 27 assert_false(stream.fatal, 'fatal should be false'); 31 const stream = new TextDecoderStream('utf-8', { ignoreBOM: falseValue }); 32 assert_false(stream.ignoreBOM, 'ignoreBOM should be false'); 38 const stream = new TextDecoderStream('utf-8', { fatal: trueValue }); 39 assert_true(stream.fatal, 'fatal should be true'); 43 const stream = new TextDecoderStream('utf-8', { ignoreBOM: trueValue }); 44 assert_true(stream [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_overlay.c | 50 * Each stream is a single overlay. In Xv these are called ports. 53 struct vmw_stream stream[VMW_MAX_NUM_STREAMS]; member 239 * Stop or pause a stream. 241 * If the stream is paused the no evict flag is removed from the buffer 247 * @stream_id which stream to stop/pause. 255 struct vmw_stream *stream = &overlay->stream[stream_id]; in vmw_overlay_stop() local 258 /* no buffer attached the stream is completely stopped */ in vmw_overlay_stop() 259 if (!stream->buf) in vmw_overlay_stop() 262 /* If the stream i in vmw_overlay_stop() 303 struct vmw_stream *stream = &overlay->stream[arg->stream_id]; vmw_overlay_update_stream() local 374 struct vmw_stream *stream = &overlay->stream[i]; vmw_overlay_resume_all() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_overlay.c | 50 * Each stream is a single overlay. In Xv these are called ports. 53 struct vmw_stream stream[VMW_MAX_NUM_STREAMS]; member 233 * Stop or pause a stream. 235 * If the stream is paused the no evict flag is removed from the buffer 241 * @stream_id which stream to stop/pause. 249 struct vmw_stream *stream = &overlay->stream[stream_id]; in vmw_overlay_stop() local 252 /* no buffer attached the stream is completely stopped */ in vmw_overlay_stop() 253 if (!stream->buf) in vmw_overlay_stop() 256 /* If the stream i in vmw_overlay_stop() 297 struct vmw_stream *stream = &overlay->stream[arg->stream_id]; vmw_overlay_update_stream() local 368 struct vmw_stream *stream = &overlay->stream[i]; vmw_overlay_resume_all() local [all...] |
/third_party/PyYAML/lib/yaml/ |
H A D | cyaml.py | 18 def __init__(self, stream): 19 CParser.__init__(self, stream) 25 def __init__(self, stream): 26 CParser.__init__(self, stream) 32 def __init__(self, stream): 33 CParser.__init__(self, stream) 39 def __init__(self, stream): 40 CParser.__init__(self, stream) 46 def __init__(self, stream): 47 CParser.__init__(self, stream) [all...] |
/third_party/node/test/parallel/ |
H A D | test-whatwg-transformstream.js | 11 } = require('stream/web'); 35 const stream = new TransformStream(); 37 async function test(stream) { 38 const writer = stream.writable.getWriter(); 39 const reader = stream.readable.getReader(); 49 test(stream).then(common.mustCall()); 68 const stream = new TransformStream(transform); 71 async function test(stream) { 72 const writer = stream.writable.getWriter(); 73 const reader = stream [all...] |
H A D | test-fs-write-stream.js | 35 const stream = fs.WriteStream(file); 43 stream.destroy(); 47 const stream = fs.createWriteStream(file); 49 stream.on('drain', function() { 51 'stream.write() has been called at least once.'); 53 stream.destroy(); 58 const stream = fs.createWriteStream(file); 59 stream.on('error', common.mustNotCall()); 61 stream.write(42); 66 stream [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/modules/freesync/ |
H A D | freesync.c | 111 const struct dc_stream_state *stream, in calc_duration_in_us_from_v_total() 117 * 10000) * stream->timing.h_total, in calc_duration_in_us_from_v_total() 118 stream->timing.pix_clk_100hz)); in calc_duration_in_us_from_v_total() 124 const struct dc_stream_state *stream, in mod_freesync_calc_v_total_from_refresh() 135 frame_duration_in_ns) * (stream->timing.pix_clk_100hz / 10)), in mod_freesync_calc_v_total_from_refresh() 136 stream->timing.h_total), 1000000); in mod_freesync_calc_v_total_from_refresh() 139 if (v_total < stream->timing.v_total) { in mod_freesync_calc_v_total_from_refresh() 140 ASSERT(v_total < stream->timing.v_total); in mod_freesync_calc_v_total_from_refresh() 141 v_total = stream->timing.v_total; in mod_freesync_calc_v_total_from_refresh() 148 const struct dc_stream_state *stream, in calc_v_total_from_duration() 110 calc_duration_in_us_from_v_total( const struct dc_stream_state *stream, const struct mod_vrr_params *in_vrr, unsigned int v_total) calc_duration_in_us_from_v_total() argument 123 mod_freesync_calc_v_total_from_refresh( const struct dc_stream_state *stream, unsigned int refresh_in_uhz) mod_freesync_calc_v_total_from_refresh() argument 147 calc_v_total_from_duration( const struct dc_stream_state *stream, const struct mod_vrr_params *vrr, unsigned int duration_in_us) calc_v_total_from_duration() argument 182 update_v_total_for_static_ramp( struct core_freesync *core_freesync, const struct dc_stream_state *stream, struct mod_vrr_params *in_out_vrr) update_v_total_for_static_ramp() argument 256 apply_below_the_range(struct core_freesync *core_freesync, const struct dc_stream_state *stream, unsigned int last_render_time_in_us, struct mod_vrr_params *in_out_vrr) apply_below_the_range() argument 412 apply_fixed_refresh(struct core_freesync *core_freesync, const struct dc_stream_state *stream, unsigned int last_render_time_in_us, struct mod_vrr_params *in_out_vrr) apply_fixed_refresh() argument 530 mod_freesync_get_vmin_vmax(struct mod_freesync *mod_freesync, const struct dc_stream_state *stream, unsigned int *vmin, unsigned int *vmax) mod_freesync_get_vmin_vmax() argument 541 mod_freesync_get_v_position(struct mod_freesync *mod_freesync, struct dc_stream_state *stream, unsigned int *nom_v_pos, unsigned int *v_pos) mod_freesync_get_v_position() argument 948 mod_freesync_build_vrr_infopacket(struct mod_freesync *mod_freesync, const struct dc_stream_state *stream, const struct mod_vrr_params *vrr, enum vrr_packet_type packet_type, enum color_transfer_func app_tf, struct dc_info_packet *infopacket, bool pack_sdp_v1_3) mod_freesync_build_vrr_infopacket() argument 984 mod_freesync_build_vrr_params(struct mod_freesync *mod_freesync, const struct dc_stream_state *stream, struct mod_freesync_config *in_config, struct mod_vrr_params *in_out_vrr) mod_freesync_build_vrr_params() argument 1134 mod_freesync_handle_preflip(struct mod_freesync *mod_freesync, const struct dc_plane_state *plane, const struct dc_stream_state *stream, unsigned int curr_time_stamp_in_us, struct mod_vrr_params *in_out_vrr) mod_freesync_handle_preflip() argument 1172 mod_freesync_handle_v_update(struct mod_freesync *mod_freesync, const struct dc_stream_state *stream, struct mod_vrr_params *in_out_vrr) mod_freesync_handle_v_update() argument 1292 mod_freesync_calc_nominal_field_rate( const struct dc_stream_state *stream) mod_freesync_calc_nominal_field_rate() argument [all...] |
/kernel/linux/linux-5.10/lib/kunit/ |
H A D | string-stream-test.c | 12 #include "string-stream.h" 16 struct string_stream *stream = alloc_string_stream(test, GFP_KERNEL); in string_stream_test_empty_on_creation() local 18 KUNIT_EXPECT_TRUE(test, string_stream_is_empty(stream)); in string_stream_test_empty_on_creation() 23 struct string_stream *stream = alloc_string_stream(test, GFP_KERNEL); in string_stream_test_not_empty_after_add() local 25 string_stream_add(stream, "Foo"); in string_stream_test_not_empty_after_add() 27 KUNIT_EXPECT_FALSE(test, string_stream_is_empty(stream)); in string_stream_test_not_empty_after_add() 32 struct string_stream *stream = alloc_string_stream(test, GFP_KERNEL); in string_stream_test_get_string() local 35 string_stream_add(stream, "Foo"); in string_stream_test_get_string() 36 string_stream_add(stream, " %s", "bar"); in string_stream_test_get_string() 38 output = string_stream_get_string(stream); in string_stream_test_get_string() [all...] |
/kernel/linux/linux-6.6/lib/kunit/ |
H A D | string-stream-test.c | 12 #include "string-stream.h" 16 struct string_stream *stream = alloc_string_stream(test, GFP_KERNEL); in string_stream_test_empty_on_creation() local 18 KUNIT_EXPECT_TRUE(test, string_stream_is_empty(stream)); in string_stream_test_empty_on_creation() 23 struct string_stream *stream = alloc_string_stream(test, GFP_KERNEL); in string_stream_test_not_empty_after_add() local 25 string_stream_add(stream, "Foo"); in string_stream_test_not_empty_after_add() 27 KUNIT_EXPECT_FALSE(test, string_stream_is_empty(stream)); in string_stream_test_not_empty_after_add() 32 struct string_stream *stream = alloc_string_stream(test, GFP_KERNEL); in string_stream_test_get_string() local 35 string_stream_add(stream, "Foo"); in string_stream_test_get_string() 36 string_stream_add(stream, " %s", "bar"); in string_stream_test_get_string() 38 output = string_stream_get_string(stream); in string_stream_test_get_string() [all...] |
/third_party/curl/docs/examples/ |
H A D | ftpget.c | 35 FILE *stream; member 38 static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream) in my_fwrite() argument 40 struct FtpFile *out = (struct FtpFile *)stream; in my_fwrite() 41 if(!out->stream) { in my_fwrite() 43 out->stream = fopen(out->filename, "wb"); in my_fwrite() 44 if(!out->stream) in my_fwrite() 47 return fwrite(buffer, size, nmemb, out->stream); in my_fwrite() 88 if(ftpfile.stream) in main() 89 fclose(ftpfile.stream); /* close the local file */ in main()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | FieldCodecTest.cs | 125 var stream = new MemoryStream(); in TestRoundTripRaw() 126 var codedOutput = new CodedOutputStream(stream); in TestRoundTripRaw() 139 stream.Position = 0; in TestRoundTripRaw() 140 var codedInput = new CodedInputStream(stream); in TestRoundTripRaw() 147 var stream = new MemoryStream(); in TestRoundTripWithTag() 148 var codedOutput = new CodedOutputStream(stream); in TestRoundTripWithTag() 151 stream.Position = 0; in TestRoundTripWithTag() 152 var codedInput = new CodedInputStream(stream); in TestRoundTripWithTag() 160 var stream = new MemoryStream(); in TestCalculateSizeWithTag() 161 var codedOutput = new CodedOutputStream(stream); in TestCalculateSizeWithTag() [all...] |
/kernel/linux/linux-6.6/sound/soc/intel/skylake/ |
H A D | skl-pcm.c | 65 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream); in get_bus_ctx() local 66 struct hdac_stream *hstream = hdac_stream(stream); in get_bus_ctx() 75 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream); in skl_substream_alloc_pages() local 77 hdac_stream(stream)->bufsize = 0; in skl_substream_alloc_pages() 78 hdac_stream(stream)->period_bytes = 0; in skl_substream_alloc_pages() 79 hdac_stream(stream)->format_val = 0; in skl_substream_alloc_pages() 103 * check if the stream opened is marked as ignore_suspend by machine, if so 116 w = snd_soc_dai_get_widget(dai, substream->stream); in skl_set_suspend_active() 130 struct hdac_ext_stream *stream; in skl_pcm_host_dma_prepare() local 133 hstream = snd_hdac_get_stream(bus, params->stream, in skl_pcm_host_dma_prepare() 177 struct hdac_ext_stream *stream; skl_pcm_link_dma_prepare() local 216 struct hdac_ext_stream *stream; skl_pcm_open() local 304 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream); skl_pcm_hw_params() local 345 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream); skl_pcm_close() local 383 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream); skl_pcm_hw_free() local 424 struct hdac_ext_stream *stream; skl_decoupled_trigger() local 472 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream); skl_pcm_trigger() local 610 struct hdac_ext_stream *stream = get_hdac_ext_stream(substream); skl_link_pcm_trigger() local 1090 struct hdac_ext_stream *stream; skl_coupled_trigger() local [all...] |
/foundation/multimedia/av_codec/test/unittest/dash_test/ |
H A D | dash_media_downloader_unit_test.cpp | 135 for (auto stream : streams) { in HWTEST_F() 136 if (stream.type != VIDEO) { in HWTEST_F() 141 usingStreamId = stream.streamId; in HWTEST_F() 145 if (stream.streamId != usingStreamId) { in HWTEST_F() 146 switchingBitrate = stream.bitRate; in HWTEST_F() 166 for (auto stream : streams) { in HWTEST_F() 167 if (stream.type != AUDIO) { in HWTEST_F() 171 switchingStreamId = stream.streamId; in HWTEST_F() 191 for (auto stream : streams) { in HWTEST_F() 192 if (stream in HWTEST_F() [all...] |