/third_party/pulseaudio/src/modules/dbus/ |
D | iface-card.c | 193 const char **sinks = NULL; in get_sinks() local 201 *n = pa_idxset_size(c->card->sinks); in get_sinks() 206 sinks = pa_xnew(const char *, *n); in get_sinks() 208 PA_IDXSET_FOREACH(sink, c->card->sinks, idx) { in get_sinks() 209 sinks[i] = pa_dbusiface_core_get_sink_path(c->core, sink); in get_sinks() 213 return sinks; in get_sinks() 218 const char **sinks; in handle_get_sinks() local 225 sinks = get_sinks(c, &n_sinks); in handle_get_sinks() 227 pa_dbus_send_basic_array_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, sinks, n_sinks); in handle_get_sinks() 229 pa_xfree(sinks); in handle_get_sinks() [all …]
|
D | iface-card-profile.c | 114 dbus_uint32_t sinks = 0; in handle_get_sinks() local 120 sinks = p->profile->n_sinks; in handle_get_sinks() 122 pa_dbus_send_basic_variant_reply(conn, msg, DBUS_TYPE_UINT32, &sinks); in handle_get_sinks() 169 dbus_uint32_t sinks = 0; in handle_get_all() local 178 sinks = p->profile->n_sinks; in handle_get_all() 191 …try(&dict_iter, property_handlers[PROPERTY_HANDLER_SINKS].property_name, DBUS_TYPE_UINT32, &sinks); in handle_get_all()
|
/third_party/cef/libcef_dll/cpptoc/ |
D | media_observer_cpptoc.cc | 27 struct _cef_media_sink_t* const* sinks) { in media_observer_on_sinks() argument 36 DCHECK(sinksCount == 0 || sinks); in media_observer_on_sinks() 37 if (sinksCount > 0 && !sinks) in media_observer_on_sinks() 44 CefRefPtr<CefMediaSink> sinksVal = CefMediaSinkCToCpp::Wrap(sinks[i]); in media_observer_on_sinks()
|
/third_party/gstreamer/gst_libav/tests/check/generic/ |
D | libavcodec-locking.c | 100 gchar *sink[NUM_SINKS + 1], *s, *sinks; in GST_START_TEST() local 111 sinks = g_strjoinv (" ", sink); in GST_START_TEST() 115 sinks); in GST_START_TEST() 124 g_free (sinks); in GST_START_TEST()
|
/third_party/ffmpeg/libavdevice/ |
D | lavfi.c | 52 AVFilterContext **sinks; member 91 av_freep(&lavfi->sinks); in lavfi_read_close() 247 lavfi->sinks = av_malloc_array(lavfi->nb_sinks, sizeof(AVFilterContext *)); in lavfi_read_header() 248 if (!lavfi->sinks) in lavfi_read_header() 294 lavfi->sinks[i] = sink; in lavfi_read_header() 316 AVFilterContext *sink = lavfi->sinks[lavfi->stream_sink_map[i]]; in lavfi_read_header() 399 AVRational tb = av_buffersink_get_time_base(lavfi->sinks[i]); in lavfi_read_packet() 406 ret = av_buffersink_get_frame_flags(lavfi->sinks[i], frame, in lavfi_read_packet() 428 av_buffersink_get_frame_flags(lavfi->sinks[min_pts_sink_idx], frame, 0); in lavfi_read_packet()
|
/third_party/cef/libcef_dll/ctocpp/ |
D | media_observer_ctocpp.cc | 24 const std::vector<CefRefPtr<CefMediaSink>>& sinks) { in OnSinks() argument 34 const size_t sinksCount = sinks.size(); in OnSinks() 41 sinksList[i] = CefMediaSinkCppToC::Wrap(sinks[i]); in OnSinks()
|
D | media_observer_ctocpp.h | 39 void OnSinks(const std::vector<CefRefPtr<CefMediaSink>>& sinks) override;
|
/third_party/gstreamer/gstreamer/gst/parse/ |
D | grammar.y | 679 GSList *sinks = link->sink.pads; in gst_parse_perform_link() local 687 g_slist_length (srcs), g_slist_length (sinks), link->caps); in gst_parse_perform_link() 689 if (!srcs || !sinks) { in gst_parse_perform_link() 692 sinks ? (const gchar *) sinks->data : NULL, link->caps); in gst_parse_perform_link() 701 sinks ? (const gchar *) sinks->data : NULL, link->caps)); in gst_parse_perform_link() 709 sink, sinks ? (const gchar *) sinks->data : NULL, link->caps, in gst_parse_perform_link() 719 while (srcs && sinks) { in gst_parse_perform_link() 721 const gchar *sink_pad = (const gchar *) sinks->data; in gst_parse_perform_link() 723 sinks = g_slist_next (sinks); in gst_parse_perform_link()
|
D | grammar.y.in | 679 GSList *sinks = link->sink.pads; local 687 g_slist_length (srcs), g_slist_length (sinks), link->caps); 689 if (!srcs || !sinks) { 692 sinks ? (const gchar *) sinks->data : NULL, link->caps); 701 sinks ? (const gchar *) sinks->data : NULL, link->caps)); 709 sink, sinks ? (const gchar *) sinks->data : NULL, link->caps, 719 while (srcs && sinks) { 721 const gchar *sink_pad = (const gchar *) sinks->data; 723 sinks = g_slist_next (sinks);
|
D | grammar.tab.c | 753 GSList *sinks = link->sink.pads; in gst_parse_perform_link() local 761 g_slist_length (srcs), g_slist_length (sinks), link->caps); in gst_parse_perform_link() 763 if (!srcs || !sinks) { in gst_parse_perform_link() 766 sinks ? (const gchar *) sinks->data : NULL, link->caps); in gst_parse_perform_link() 775 sinks ? (const gchar *) sinks->data : NULL, link->caps)); in gst_parse_perform_link() 783 sink, sinks ? (const gchar *) sinks->data : NULL, link->caps, in gst_parse_perform_link() 793 while (srcs && sinks) { in gst_parse_perform_link() 795 const gchar *sink_pad = (const gchar *) sinks->data; in gst_parse_perform_link() 797 sinks = g_slist_next (sinks); in gst_parse_perform_link()
|
/third_party/pulseaudio/src/modules/macosx/ |
D | module-coreaudio-device.c | 99 PA_LLIST_HEAD(coreaudio_sink, sinks); 150 if (u->sinks) in io_render_proc() 151 pa_assert_se(pa_asyncmsgq_send(u->async_msgq, PA_MSGOBJECT(u->sinks->pa_sink), in io_render_proc() 265 for (ca_sink = u->sinks; ca_sink; ca_sink = ca_sink->next) in ca_device_check_device_state() 510 PA_LLIST_PREPEND(coreaudio_sink, u->sinks, ca_sink); in ca_device_create_sink() 734 PA_LLIST_FOREACH(ca_sink, u->sinks) { in thread_func() 856 PA_LLIST_HEAD_INIT(coreaudio_sink, u->sinks); in pa__init() 894 for (ca_sink = u->sinks; ca_sink; ca_sink = ca_sink->next) in pa__init() 926 for (ca_sink = u->sinks; ca_sink; ca_sink = ca_sink->next) in pa__done() 945 for (ca_sink = u->sinks; ca_sink;) { in pa__done()
|
/third_party/pulseaudio/shell-completion/zsh/ |
D | _pulseaudio | 21 set-sink-*) cmd=('sinks');; 22 set-default-sink) cmd=('sinks');; 26 suspend-sink) cmd=('sinks');; 35 move-sink-input) cmd=('sinks');; 37 play-sample) cmd=('sinks');; 45 cmd=('sinks') 50 cmd=('sinks' 'sources') 60 cmd=('sinks') 65 cmd=('sinks' 'sources') 136 set-sink-port) cmd="sinks";; [all …]
|
/third_party/pulseaudio/src/pulsecore/ |
D | card.c | 175 c->sinks = pa_idxset_new(NULL, NULL); in pa_card_new() 281 pa_assert(pa_idxset_isempty(c->sinks)); in pa_card_free() 282 pa_idxset_free(c->sinks, NULL); in pa_card_free() 323 PA_IDXSET_FOREACH(sink, c->sinks, state) in update_port_preferred_profile() 452 PA_IDXSET_FOREACH(sink, c->sinks, idx) { in pa_card_suspend()
|
D | core.c | 140 c->sinks = pa_idxset_new(NULL, NULL); in pa_core_new() 232 pa_assert(pa_idxset_isempty(c->sinks)); in core_free() 233 pa_idxset_free(c->sinks, NULL); in core_free() 367 PA_IDXSET_FOREACH(sink, core->sinks, idx) { in pa_core_update_default_sink() 541 PA_IDXSET_FOREACH(si, c->sinks, idx) in pa_core_maybe_vacuum()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
D | remove_phonies.cc | 74 std::unordered_map<SinkSignature, Symbol, SinkSignature::Hasher> sinks; in Run() local 122 auto sink = utils::GetOrCreate(sinks, sig, [&] { in Run()
|
/third_party/pulseaudio/src/modules/ |
D | module-switch-on-port-available.c | 89 PA_IDXSET_FOREACH(sink, card->sinks, idx) { in profile_good_for_output() 220 PA_IDXSET_FOREACH(pp.sink, card->sinks, state) in find_port_pointers() 503 …if (pa_idxset_size(card->sinks) > 0 && !pa_safe_streq(old_profile->output_name, new_profile->outpu… in update_preferred_input_port() 529 if (pa_idxset_size(card->sinks) != 1) { in update_preferred_output_port() 544 sink = pa_idxset_first(card->sinks, NULL); in update_preferred_output_port()
|
D | module-device-manager.c | 367 …!= u->preferred_sinks[role_index] && (s = pa_idxset_get_by_index(u->core->sinks, u->preferred_sink… in dump_database_helper() 603 PA_IDXSET_FOREACH(sink, u->core->sinks, idx) { in update_highest_priority_device_indexes() 689 if (!(sink = pa_idxset_get_by_index(u->core->sinks, device_index))) in route_sink_input() 842 if (!(sink = pa_idxset_get_by_index(c->sinks, idx))) in subscribe_callback() 998 if ((sink = pa_idxset_get_by_index(u->core->sinks, device_index))) { in sink_input_new_hook_callback() 1115 PA_IDXSET_FOREACH(s, u->core->sinks, idx) { in apply_entry() 1200 PA_IDXSET_FOREACH(s, u->core->sinks, idx) { in extension_cb() 1615 total_devices = PA_MAX(pa_idxset_size(m->core->sinks), pa_idxset_size(m->core->sources)); in pa__init() 1622 PA_IDXSET_FOREACH(sink, m->core->sinks, idx) { in pa__init() 1661 PA_IDXSET_FOREACH(sink, m->core->sinks, idx) in pa__init()
|
/third_party/cef/libcef/browser/media_router/ |
D | media_router_manager.h | 38 virtual void OnMediaSinks(const MediaSinkVector& sinks) = 0; 78 void OnResultsUpdated(const MediaSinkVector& sinks) override;
|
/third_party/cef/tests/cefclient/browser/ |
D | media_router_test.cc | 174 void OnSinks(const MediaSinkVector& sinks) override { in OnSinks() argument 180 pending_sink_callbacks_ = sinks.size(); in OnSinks() 183 if (sinks.empty()) { in OnSinks() 189 MediaSinkVector::const_iterator it = sinks.begin(); in OnSinks() 190 for (size_t idx = 0; it != sinks.end(); ++it, ++idx) { in OnSinks()
|
/third_party/gstreamer/gstreamer/tests/check/elements/ |
D | tee.c | 45 GstElement *sinks[NUM_SUBSTREAMS]; in GST_START_TEST() local 71 sinks[i] = gst_check_setup_element ("fakesink"); in GST_START_TEST() 73 gst_object_set_name (GST_OBJECT (sinks[i]), name); in GST_START_TEST() 74 fail_unless (gst_bin_add (GST_BIN (pipeline), sinks[i])); in GST_START_TEST() 75 fail_unless (gst_element_link (queues[i], sinks[i])); in GST_START_TEST() 76 g_object_set (sinks[i], "signal-handoffs", TRUE, NULL); in GST_START_TEST() 77 g_signal_connect (sinks[i], "handoff", (GCallback) handoff, &counts[i]); in GST_START_TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
D | cfa.h | 322 auto sinks = TraversalRoots(reversed_blocks, pred_func, succ_func); in ComputeAugmentedCFG() local 335 (*augmented_predecessors_map)[pseudo_exit_block] = sinks; in ComputeAugmentedCFG() 336 for (auto block : sinks) { in ComputeAugmentedCFG()
|
/third_party/skia/third_party/externals/spirv-tools/source/ |
D | cfa.h | 322 auto sinks = TraversalRoots(reversed_blocks, pred_func, succ_func); in ComputeAugmentedCFG() local 335 (*augmented_predecessors_map)[pseudo_exit_block] = sinks; in ComputeAugmentedCFG() 336 for (auto block : sinks) { in ComputeAugmentedCFG()
|
/third_party/gstreamer/gstreamer/docs/random/company/ |
D | push-vs-pull | 21 on sinks and PUSH-based on sinks). This often requires costly wrapping.
|
/third_party/spirv-tools/source/ |
D | cfa.h | 365 auto sinks = TraversalRoots(reversed_blocks, pred_func, succ_func); in ComputeAugmentedCFG() local 378 (*augmented_predecessors_map)[pseudo_exit_block] = sinks; in ComputeAugmentedCFG() 379 for (auto block : sinks) { in ComputeAugmentedCFG()
|
/third_party/pulseaudio/shell-completion/bash/ |
D | pactl | 12 done < <(pactl list sinks short 2> /dev/null) 18 done < <(pactl list sinks short 2> /dev/null) 261 local commands=(exit help list-modules list-cards list-sinks list-sources list-clients
|