/third_party/pulseaudio/src/modules/dbus/ |
H A D | iface-client.c | 159 const char *owner_module = NULL; in handle_get_owner_module() local 170 owner_module = pa_dbusiface_core_get_module_path(c->core, c->client->module); in handle_get_owner_module() 172 pa_dbus_send_basic_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, &owner_module); in handle_get_owner_module() 269 const char *owner_module = NULL; in handle_get_all() local 281 owner_module = pa_dbusiface_core_get_module_path(c->core, c->client->module); in handle_get_all() 293 if (owner_module) in handle_get_all() 294 pa_dbus_append_basic_variant_dict_entry(&dict_iter, property_handlers[PROPERTY_HANDLER_OWNER_MODULE].property_name, DBUS_TYPE_OBJECT_PATH, &owner_module); in handle_get_all()
|
H A D | iface-card.c | 175 const char *owner_module; in handle_get_owner_module() local 186 owner_module = pa_dbusiface_core_get_module_path(c->core, c->card->module); in handle_get_owner_module() 188 pa_dbus_send_basic_variant_reply(conn, msg, DBUS_TYPE_OBJECT_PATH, &owner_module); in handle_get_owner_module() 376 const char *owner_module = NULL; in handle_get_all() local 391 owner_module = pa_dbusiface_core_get_module_path(c->core, c->card->module); in handle_get_all() 406 if (owner_module) in handle_get_all() 407 pa_dbus_append_basic_variant_dict_entry(&dict_iter, property_handlers[PROPERTY_HANDLER_OWNER_MODULE].property_name, DBUS_TYPE_OBJECT_PATH, &owner_module); in handle_get_all()
|
H A D | iface-stream.c | 228 pa_module *owner_module = NULL; in handle_get_owner_module() local 235 owner_module = (s->type == STREAM_TYPE_PLAYBACK) ? s->sink_input->module : s->source_output->module; in handle_get_owner_module() 237 if (!owner_module) { in handle_get_owner_module() 246 object_path = pa_dbusiface_core_get_module_path(s->core, owner_module); in handle_get_owner_module() 519 pa_module *owner_module = NULL; in handle_get_all() local 545 owner_module = s->sink_input->module; in handle_get_all() 555 owner_module = s->source_output->module; in handle_get_all() 563 if (owner_module) in handle_get_all() 564 owner_module_path = pa_dbusiface_core_get_module_path(s->core, owner_module); in handle_get_all() 582 if (owner_module) in handle_get_all() [all...] |
H A D | iface-device.c | 300 pa_module *owner_module = NULL; in handle_get_owner_module() local 307 owner_module = (d->type == PA_DEVICE_TYPE_SINK) ? d->sink->module : d->source->module; in handle_get_owner_module() 309 if (!owner_module) { in handle_get_owner_module() 319 object_path = pa_dbusiface_core_get_module_path(d->core, owner_module); in handle_get_owner_module() 802 pa_module *owner_module = NULL; in handle_get_all() local 836 owner_module = d->sink->module; in handle_get_all() 857 owner_module = d->source->module; in handle_get_all() 875 if (owner_module) in handle_get_all() 876 owner_module_path = pa_dbusiface_core_get_module_path(d->core, owner_module); in handle_get_all() 896 if (owner_module) in handle_get_all() [all...] |
/third_party/pulseaudio/src/pulse/ |
H A D | introspect.h | 273 uint32_t owner_module; /**< Index of the owning module of this sink, or PA_INVALID_INDEX. */ member 378 uint32_t owner_module; /**< Owning module index, or PA_INVALID_INDEX. */ member 517 uint32_t owner_module; /**< Index of the owning module, or PA_INVALID_INDEX. */ member 606 uint32_t owner_module; /**< Index of the owning module, or PA_INVALID_INDEX. */ member 649 uint32_t owner_module; /**< Index of the module this sink input belongs to, or PA_INVALID_INDEX when it does not belong to any module. */ member 701 uint32_t owner_module; /**< Index of the module this source output belongs to, or PA_INVALID_INDEX when it does not belong to any module. */ member
|
H A D | introspect.c | 178 pa_tagstruct_getu32(t, &i.owner_module) < 0 || in context_get_sink_info_callback() 458 pa_tagstruct_getu32(t, &i.owner_module) < 0 || in context_get_source_info_callback() 721 pa_tagstruct_getu32(t, &i.owner_module) < 0 || in context_get_client_info_callback() 954 pa_tagstruct_getu32(t, &i.owner_module) < 0 || in context_get_card_info_callback() 1234 pa_tagstruct_getu32(t, &i.owner_module) < 0 || in context_get_sink_input_info_callback() 1339 pa_tagstruct_getu32(t, &i.owner_module) < 0 || in context_get_source_output_info_callback()
|
/third_party/pulseaudio/src/utils/ |
H A D | pactl.c | 651 pa_json_encoder_add_member_int(encoder, "owner_module", i->owner_module); in get_sink_info_callback() 694 i->owner_module, in get_sink_info_callback() 836 pa_json_encoder_add_member_int(encoder, "owner_module", i->owner_module); in get_source_info_callback() 879 i->owner_module, in get_source_info_callback() 1028 pa_snprintf(t, sizeof(t), "%u", i->owner_module); in get_client_info_callback() 1055 i->owner_module != PA_INVALID_INDEX ? pa_json_encoder_add_member_string(encoder, "owner_module", t) : pa_json_encoder_add_member_null(encoder, "owner_module"); in get_client_info_callback() [all...] |
/third_party/pulseaudio/src/modules/ |
H A D | module-tunnel.c | 1239 uint32_t idx, owner_module, monitor_source, flags; in sink_info_cb() local 1263 pa_tagstruct_getu32(t, &owner_module) < 0 || in sink_info_cb() 1329 uint32_t idx, owner_module, client, sink; in sink_input_info_cb() local 1351 pa_tagstruct_getu32(t, &owner_module) < 0 || in sink_input_info_cb() 1440 uint32_t idx, owner_module, monitor_of_sink, flags; in source_info_cb() local 1464 pa_tagstruct_getu32(t, &owner_module) < 0 || in source_info_cb()
|