Lines Matching defs:core

25 #include <pulsecore/core-util.h>
40 pa_dbusiface_core *core;
246 object_path = pa_dbusiface_core_get_module_path(s->core, owner_module);
271 object_path = pa_dbusiface_core_get_client_path(s->core, client);
285 device = pa_dbusiface_core_get_sink_path(s->core, s->sink);
287 device = pa_dbusiface_core_get_source_path(s->core, s->source);
547 device = pa_dbusiface_core_get_sink_path(s->core, s->sink);
557 device = pa_dbusiface_core_get_source_path(s->core, s->source);
564 owner_module_path = pa_dbusiface_core_get_module_path(s->core, owner_module);
566 client_path = pa_dbusiface_core_get_client_path(s->core, client);
619 pa_sink *sink = pa_dbusiface_core_get_sink(s->core, device);
632 pa_source *source = pa_dbusiface_core_get_source(s->core, device);
703 new_device_path = pa_dbusiface_core_get_sink_path(s->core, new_sink);
720 new_device_path = pa_dbusiface_core_get_source_path(s->core, new_source);
889 pa_dbusiface_stream *pa_dbusiface_stream_new_playback(pa_dbusiface_core *core, pa_sink_input *sink_input) {
892 pa_assert(core);
896 s->core = core;
911 s->dbus_protocol = pa_dbus_protocol_get(sink_input->core);
912 s->send_event_slot = pa_hook_connect(&sink_input->core->hooks[PA_CORE_HOOK_SINK_INPUT_SEND_EVENT],
916 s->move_finish_slot = pa_hook_connect(&sink_input->core->hooks[PA_CORE_HOOK_SINK_INPUT_MOVE_FINISH],
918 s->volume_changed_slot = pa_hook_connect(&sink_input->core->hooks[PA_CORE_HOOK_SINK_INPUT_VOLUME_CHANGED],
920 s->mute_changed_slot = pa_hook_connect(&sink_input->core->hooks[PA_CORE_HOOK_SINK_INPUT_MUTE_CHANGED],
922 s->proplist_changed_slot = pa_hook_connect(&sink_input->core->hooks[PA_CORE_HOOK_SINK_INPUT_PROPLIST_CHANGED],
924 s->state_changed_slot = pa_hook_connect(&sink_input->core->hooks[PA_CORE_HOOK_SINK_INPUT_STATE_CHANGED],
932 pa_dbusiface_stream *pa_dbusiface_stream_new_record(pa_dbusiface_core *core, pa_source_output *source_output) {
935 pa_assert(core);
939 s->core = core;
949 s->dbus_protocol = pa_dbus_protocol_get(source_output->core);
950 s->send_event_slot = pa_hook_connect(&source_output->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_SEND_EVENT],
954 s->move_finish_slot = pa_hook_connect(&source_output->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_MOVE_FINISH],
956 s->volume_changed_slot = pa_hook_connect(&source_output->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_VOLUME_CHANGED],
958 s->mute_changed_slot = pa_hook_connect(&source_output->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_MUTE_CHANGED],
960 s->proplist_changed_slot = pa_hook_connect(&source_output->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_PROPLIST_CHANGED],
962 s->state_changed_slot = pa_hook_connect(&source_output->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_STATE_CHANGED],