Lines Matching defs:core
24 #include <pulsecore/core-util.h>
78 pa_dbusiface_core *core;
319 object_path = pa_dbusiface_core_get_module_path(d->core, owner_module);
345 object_path = pa_dbusiface_core_get_card_path(d->core, card);
876 owner_module_path = pa_dbusiface_core_get_module_path(d->core, owner_module);
878 card_path = pa_dbusiface_core_get_card_path(d->core, card);
1003 monitor_source = pa_dbusiface_core_get_source_path(d->core, d->sink->monitor_source);
1020 monitor_source = pa_dbusiface_core_get_source_path(d->core, d->sink->monitor_source);
1050 monitor_of_sink = pa_dbusiface_core_get_sink_path(d->core, d->source->monitor_of);
1068 monitor_of_sink = pa_dbusiface_core_get_sink_path(d->core, d->source->monitor_of);
1246 pa_dbusiface_device *pa_dbusiface_device_new_sink(pa_dbusiface_core *core, pa_sink *sink) {
1251 pa_assert(core);
1255 d->core = core;
1266 d->dbus_protocol = pa_dbus_protocol_get(sink->core);
1267 d->volume_changed_slot = pa_hook_connect(&sink->core->hooks[PA_CORE_HOOK_SINK_VOLUME_CHANGED],
1269 d->mute_changed_slot = pa_hook_connect(&sink->core->hooks[PA_CORE_HOOK_SINK_MUTE_CHANGED],
1271 d->state_changed_slot = pa_hook_connect(&sink->core->hooks[PA_CORE_HOOK_SINK_STATE_CHANGED],
1273 d->port_changed_slot = pa_hook_connect(&sink->core->hooks[PA_CORE_HOOK_SINK_PORT_CHANGED],
1275 d->proplist_changed_slot = pa_hook_connect(&sink->core->hooks[PA_CORE_HOOK_SINK_PROPLIST_CHANGED],
1279 pa_dbusiface_device_port *p = pa_dbusiface_device_port_new(d, sink->core, port, d->next_port_index++);
1289 pa_dbusiface_device *pa_dbusiface_device_new_source(pa_dbusiface_core *core, pa_source *source) {
1294 pa_assert(core);
1298 d->core = core;
1309 d->dbus_protocol = pa_dbus_protocol_get(source->core);
1310 d->volume_changed_slot = pa_hook_connect(&source->core->hooks[PA_CORE_HOOK_SOURCE_VOLUME_CHANGED],
1312 d->mute_changed_slot = pa_hook_connect(&source->core->hooks[PA_CORE_HOOK_SOURCE_MUTE_CHANGED],
1314 d->state_changed_slot = pa_hook_connect(&source->core->hooks[PA_CORE_HOOK_SOURCE_STATE_CHANGED],
1316 d->port_changed_slot = pa_hook_connect(&source->core->hooks[PA_CORE_HOOK_SOURCE_PORT_CHANGED],
1318 d->proplist_changed_slot = pa_hook_connect(&source->core->hooks[PA_CORE_HOOK_SOURCE_PROPLIST_CHANGED],
1322 pa_dbusiface_device_port *p = pa_dbusiface_device_port_new(d, source->core, port, d->next_port_index++);