Home
last modified time | relevance | path

Searched refs:pa_core (Results 1 – 25 of 153) sorted by relevance

1234567

/third_party/pulseaudio/src/pulsecore/
Dcore-scache.h32 pa_core *core;
50 int pa_scache_add_item(pa_core *c, const char *name, const pa_sample_spec *ss, const pa_channel_map…
51 int pa_scache_add_file(pa_core *c, const char *name, const char *filename, uint32_t *idx);
52 int pa_scache_add_file_lazy(pa_core *c, const char *name, const char *filename, uint32_t *idx);
54 int pa_scache_add_directory_lazy(pa_core *c, const char *pathname);
56 int pa_scache_remove_item(pa_core *c, const char *name);
57 int pa_scache_play_item(pa_core *c, const char *name, pa_sink *sink, pa_volume_t volume, pa_proplis…
58 int pa_scache_play_item_by_name(pa_core *c, const char *name, const char*sink_name, pa_volume_t vol…
59 void pa_scache_free_all(pa_core *c);
61 const char *pa_scache_get_name_by_id(pa_core *c, uint32_t id);
[all …]
Dcli-command.c65 int (*proc) (pa_core *c, pa_tokenizer*t, pa_strbuf *buf, bool *fail);
84 static int pa_cli_command_exit(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
85 static int pa_cli_command_help(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
86 static int pa_cli_command_modules(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
87 static int pa_cli_command_clients(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
88 static int pa_cli_command_cards(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
89 static int pa_cli_command_sinks(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
90 static int pa_cli_command_sources(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
91 static int pa_cli_command_sink_inputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
92 static int pa_cli_command_source_outputs(pa_core *c, pa_tokenizer *t, pa_strbuf *buf, bool *fail);
[all …]
Dcli-text.h28 char *pa_sink_input_list_to_string(pa_core *c);
29 char *pa_source_output_list_to_string(pa_core *c);
30 char *pa_sink_list_to_string(pa_core *core);
31 char *pa_source_list_to_string(pa_core *c);
32 char *pa_card_list_to_string(pa_core *c);
33 char *pa_client_list_to_string(pa_core *c);
34 char *pa_module_list_to_string(pa_core *c);
35 char *pa_scache_list_to_string(pa_core *c);
37 char *pa_full_status_string(pa_core *c);
Dcore.h154 struct pa_core { struct
240 PA_DECLARE_PUBLIC_CLASS(pa_core); argument
248 pa_core* pa_core_new(pa_mainloop_api *m, bool shared, bool enable_memfd, size_t shm_size);
250 void pa_core_set_configured_default_sink(pa_core *core, const char *sink);
251 void pa_core_set_configured_default_source(pa_core *core, const char *source);
262 void pa_core_update_default_sink(pa_core *core);
263 void pa_core_update_default_source(pa_core *core);
265 void pa_core_set_exit_idle_time(pa_core *core, int time);
268 void pa_core_check_idle(pa_core *c);
270 int pa_core_exit(pa_core *c, bool force, int retval);
[all …]
Dcore.c51 PA_DEFINE_PUBLIC_CLASS(pa_core, pa_msgobject);
54 pa_core *c = PA_CORE(o); in core_process_msg()
72 static char *message_handler_list(pa_core *c) { in message_handler_list()
94 pa_core *c = userdata; in core_message_handler()
109 pa_core* pa_core_new(pa_mainloop_api *m, bool shared, bool enable_memfd, size_t shm_size) { in pa_core_new()
111 pa_core* c; in pa_core_new()
134 c = pa_msgobject_new(pa_core); in pa_core_new()
214 pa_core *c = PA_CORE(o); in core_free()
280 void pa_core_set_configured_default_sink(pa_core *core, const char *sink) { in pa_core_set_configured_default_sink()
302 void pa_core_set_configured_default_source(pa_core *core, const char *source) { in pa_core_set_configured_default_source()
[all …]
Dshared.h37 void* pa_shared_get(pa_core *c, const char *name);
42 int pa_shared_set(pa_core *c, const char *name, void *data);
45 int pa_shared_remove(pa_core *c, const char *name);
50 int pa_shared_replace(pa_core *c, const char *name, void *data);
53 void pa_shared_dump(pa_core *c, pa_strbuf *s);
Dcli-command.h30 int pa_cli_command_execute_line(pa_core *c, const char *s, pa_strbuf *buf, bool *fail);
33 int pa_cli_command_execute_file(pa_core *c, const char *fn, pa_strbuf *buf, bool *fail);
36 int pa_cli_command_execute_file_stream(pa_core *c, FILE *f, pa_strbuf *buf, bool *fail);
39 int pa_cli_command_execute(pa_core *c, const char *s, pa_strbuf *buf, bool *fail);
42 int pa_cli_command_execute_line_stateful(pa_core *c, const char *s, pa_strbuf *buf, bool *fail, int…
Dcore-scache.c66 pa_core *c = userdata; in timeout_callback()
92 static pa_scache_entry* scache_add_item(pa_core *c, const char *name, bool *new_sample) { in scache_add_item()
145 pa_core *c, in pa_scache_add_item()
207 int pa_scache_add_file(pa_core *c, const char *name, const char *filename, uint32_t *idx) { in pa_scache_add_file()
240 int pa_scache_add_file_lazy(pa_core *c, const char *name, const char *filename, uint32_t *idx) { in pa_scache_add_file_lazy()
274 int pa_scache_remove_item(pa_core *c, const char *name) { in pa_scache_remove_item()
292 void pa_scache_free_all(pa_core *c) { in pa_scache_free_all()
303 int pa_scache_play_item(pa_core *c, const char *name, pa_sink *sink, pa_volume_t volume, pa_proplis… in pa_scache_play_item()
378 int pa_scache_play_item_by_name(pa_core *c, const char *name, const char*sink_name, pa_volume_t vol… in pa_scache_play_item_by_name()
390 const char *pa_scache_get_name_by_id(pa_core *c, uint32_t id) { in pa_scache_get_name_by_id()
[all …]
Dcore-subscribe.c41 pa_core *core;
52 pa_core *core;
60 static void sched_event(pa_core *c);
63 pa_subscription* pa_subscription_new(pa_core *c, pa_subscription_mask_t m, pa_subscription_cb_t cal… in pa_subscription_new()
110 void pa_subscription_free_all(pa_core *c) { in pa_subscription_free_all()
156 pa_core *c = userdata; in defer_cb()
194 static void sched_event(pa_core *c) { in sched_event()
206 void pa_subscription_post(pa_core *c, pa_subscription_event_type_t t, uint32_t idx) { in pa_subscription_post()
Dcore-subscribe.h29 typedef void (*pa_subscription_cb_t)(pa_core *c, pa_subscription_event_type_t t, uint32_t idx, void…
31 pa_subscription* pa_subscription_new(pa_core *c, pa_subscription_mask_t m, pa_subscription_cb_t cb…
33 void pa_subscription_free_all(pa_core *c);
35 void pa_subscription_post(pa_core *c, pa_subscription_event_type_t t, uint32_t idx);
Dmessage-handler.h43 void pa_message_handler_register(pa_core *c, const char *object_path, const char *description, pa_m…
44 void pa_message_handler_unregister(pa_core *c, const char *object_path);
47 int pa_message_handler_send_message(pa_core *c, const char *object_path, const char *message, const…
50 int pa_message_handler_set_description(pa_core *c, const char *object_path, const char *description…
Dshared.c56 void* pa_shared_get(pa_core *c, const char *name) { in pa_shared_get()
69 int pa_shared_set(pa_core *c, const char *name, void *data) { in pa_shared_set()
85 int pa_shared_remove(pa_core *c, const char *name) { in pa_shared_remove()
99 void pa_shared_dump(pa_core *c, pa_strbuf *s) { in pa_shared_dump()
110 int pa_shared_replace(pa_core *c, const char *name, void *data) { in pa_shared_replace()
Dmodule.h39 pa_core *core;
60 int pa_module_load(pa_module** m, pa_core *c, const char *name, const char *argument);
63 void pa_module_unload_by_index(pa_core *c, uint32_t idx, bool force);
66 void pa_module_unload_request_by_index(pa_core *c, uint32_t idx, bool force);
68 void pa_module_unload_all(pa_core *c);
Dnamereg.h35 const char *pa_namereg_register(pa_core *c, const char *name, pa_namereg_type_t type, void *data, b…
36 void pa_namereg_unregister(pa_core *c, const char *name);
37 void* pa_namereg_get(pa_core *c, const char *name, pa_namereg_type_t type);
Dmessage-handler.c70 void pa_message_handler_register(pa_core *c, const char *object_path, const char *description, pa_m… in pa_message_handler_register()
91 void pa_message_handler_unregister(pa_core *c, const char *object_path) { in pa_message_handler_unregister()
105 int pa_message_handler_send_message(pa_core *c, const char *object_path, const char *message, const… in pa_message_handler_send_message()
166 int pa_message_handler_set_description(pa_core *c, const char *object_path, const char *description… in pa_message_handler_set_description()
Ddbus-shared.c35 pa_core *core;
39 static pa_dbus_connection* dbus_connection_new(pa_core *c, pa_dbus_wrap_connection *conn, const cha… in dbus_connection_new()
53 pa_dbus_connection* pa_dbus_bus_get(pa_core *c, DBusBusType type, DBusError *error) { in pa_dbus_bus_get()
/third_party/pulseaudio/src/modules/
Dmodule-allow-passthrough.c55 static pa_sink *ensure_null_sink_for_sink(struct userdata *u, pa_sink *s, pa_core *c) { in ensure_null_sink_for_sink()
88 static void unload_null_sink_module_for_sink(struct userdata *u, pa_sink *s, pa_core *c) { in unload_null_sink_module_for_sink()
128 static pa_hook_result_t new_passthrough_stream(struct userdata *u, pa_core *c, pa_sink *sink, pa_si… in new_passthrough_stream()
155 static pa_sink * new_normal_stream(struct userdata *u, pa_core *c, pa_sink *sink) { in new_normal_stream()
163 static pa_hook_result_t sink_input_new_cb(pa_core *core, pa_sink_input_new_data *new_data, struct u… in sink_input_new_cb()
206 static pa_hook_result_t passthrough_stream_removed(struct userdata *u, pa_core *c, pa_sink_input *i… in passthrough_stream_removed()
228 static pa_hook_result_t sink_input_removed(pa_core *core, pa_sink_input *i, struct userdata *u) { in sink_input_removed()
237 static pa_hook_result_t sink_input_unlink_cb(pa_core *core, pa_sink_input *i, struct userdata *u) { in sink_input_unlink_cb()
241 static pa_hook_result_t sink_input_move_start_cb(pa_core *core, pa_sink_input *i, struct userdata *… in sink_input_move_start_cb()
248 static pa_hook_result_t sink_input_move_finish_cb(pa_core *core, pa_sink_input *i, struct userdata … in sink_input_move_finish_cb()
[all …]
Dmodule-suspend-on-idle.c47 pa_core *core;
112 static pa_hook_result_t sink_input_fixate_hook_cb(pa_core *c, pa_sink_input_new_data *data, struct … in sink_input_fixate_hook_cb()
133 static pa_hook_result_t source_output_fixate_hook_cb(pa_core *c, pa_source_output_new_data *data, s… in source_output_fixate_hook_cb()
161 static pa_hook_result_t sink_input_unlink_hook_cb(pa_core *c, pa_sink_input *s, struct userdata *u)… in sink_input_unlink_hook_cb()
178 static pa_hook_result_t source_output_unlink_hook_cb(pa_core *c, pa_source_output *s, struct userda… in source_output_unlink_hook_cb()
202 static pa_hook_result_t sink_input_move_start_hook_cb(pa_core *c, pa_sink_input *s, struct userdata… in sink_input_move_start_hook_cb()
216 static pa_hook_result_t sink_input_move_finish_hook_cb(pa_core *c, pa_sink_input *s, struct userdat… in sink_input_move_finish_hook_cb()
232 static pa_hook_result_t source_output_move_start_hook_cb(pa_core *c, pa_source_output *s, struct us… in source_output_move_start_hook_cb()
253 static pa_hook_result_t source_output_move_finish_hook_cb(pa_core *c, pa_source_output *s, struct u… in source_output_move_finish_hook_cb()
274 static pa_hook_result_t sink_input_state_changed_hook_cb(pa_core *c, pa_sink_input *s, struct userd… in sink_input_state_changed_hook_cb()
[all …]
Dmodule-filter-heuristics.c46 pa_core *core;
88 static pa_hook_result_t sink_input_put_cb(pa_core *core, pa_sink_input *i, struct userdata *u) { in sink_input_put_cb()
96 static pa_hook_result_t sink_input_move_finish_cb(pa_core *core, pa_sink_input *i, struct userdata … in sink_input_move_finish_cb()
108 static pa_hook_result_t source_output_put_cb(pa_core *core, pa_source_output *i, struct userdata *u… in source_output_put_cb()
116 static pa_hook_result_t source_output_move_finish_cb(pa_core *core, pa_source_output *i, struct use… in source_output_move_finish_cb()
Dstream-interaction.c46 pa_core *core;
304 static pa_hook_result_t sink_input_put_cb(pa_core *core, pa_sink_input *i, struct userdata *u) { in sink_input_put_cb()
311 static pa_hook_result_t sink_input_unlink_cb(pa_core *core, pa_sink_input *i, struct userdata *u) { in sink_input_unlink_cb()
317 static pa_hook_result_t sink_input_move_start_cb(pa_core *core, pa_sink_input *i, struct userdata *… in sink_input_move_start_cb()
324 static pa_hook_result_t sink_input_move_finish_cb(pa_core *core, pa_sink_input *i, struct userdata … in sink_input_move_finish_cb()
331 static pa_hook_result_t sink_input_state_changed_cb(pa_core *core, pa_sink_input *i, struct userdat… in sink_input_state_changed_cb()
341 static pa_hook_result_t sink_input_mute_changed_cb(pa_core *core, pa_sink_input *i, struct userdata… in sink_input_mute_changed_cb()
351 static pa_hook_result_t sink_input_proplist_changed_cb(pa_core *core, pa_sink_input *i, struct user… in sink_input_proplist_changed_cb()
361 static pa_hook_result_t source_output_put_cb(pa_core *core, pa_source_output *o, struct userdata *u… in source_output_put_cb()
368 static pa_hook_result_t source_output_unlink_cb(pa_core *core, pa_source_output *o, struct userdata… in source_output_unlink_cb()
[all …]
Dmodule-switch-on-port-available.c299 static pa_hook_result_t port_available_hook_callback(pa_core *c, pa_device_port *port, void* userda… in port_available_hook_callback()
387 static pa_hook_result_t card_profile_available_hook_callback(pa_core *c, pa_card_profile *profile, … in card_profile_available_hook_callback()
411 static void handle_all_unavailable(pa_core *core) { in handle_all_unavailable()
448 static pa_hook_result_t sink_new_hook_callback(pa_core *c, pa_sink_new_data *new_data, void *u) { in sink_new_hook_callback()
459 static pa_hook_result_t source_new_hook_callback(pa_core *c, pa_source_new_data *new_data, void *u)… in source_new_hook_callback()
470 static pa_hook_result_t card_put_hook_callback(pa_core *core, pa_card *card, struct userdata *u) { in card_put_hook_callback()
476 static pa_hook_result_t card_unlink_hook_callback(pa_core *core, pa_card *card, struct userdata *u)… in card_unlink_hook_callback()
554 static pa_hook_result_t card_profile_changed_callback(pa_core *core, pa_card *card, struct userdata… in card_profile_changed_callback()
575 static pa_hook_result_t source_port_changed_callback(pa_core *core, pa_source *source, void *userda… in source_port_changed_callback()
584 static pa_hook_result_t sink_port_changed_callback(pa_core *core, pa_sink *sink, void *userdata) { in sink_port_changed_callback()
Dmodule-intended-roles.c49 pa_core *core;
68 static pa_hook_result_t sink_input_new_hook_callback(pa_core *c, pa_sink_input_new_data *new_data, … in sink_input_new_hook_callback()
112 static pa_hook_result_t source_output_new_hook_callback(pa_core *c, pa_source_output_new_data *new_… in source_output_new_hook_callback()
163 static pa_hook_result_t sink_put_hook_callback(pa_core *c, pa_sink *sink, struct userdata *u) { in sink_put_hook_callback()
207 static pa_hook_result_t source_put_hook_callback(pa_core *c, pa_source *source, struct userdata *u)… in source_put_hook_callback()
257 static pa_hook_result_t sink_unlink_hook_callback(pa_core *c, pa_sink *sink, struct userdata *u) { in sink_unlink_hook_callback()
308 static pa_hook_result_t source_unlink_hook_callback(pa_core *c, pa_source *source, struct userdata … in source_unlink_hook_callback()
/third_party/pulseaudio/src/modules/echo-cancel/
Decho-cancel.h88 bool (*init) (pa_core *c,
143 bool pa_null_ec_init(pa_core *c, pa_echo_canceller *ec,
153 bool pa_speex_ec_init(pa_core *c, pa_echo_canceller *ec,
164 bool pa_adrian_ec_init(pa_core *c, pa_echo_canceller *ec,
176 bool pa_webrtc_ec_init(pa_core *c, pa_echo_canceller *ec,
/third_party/pulseaudio/src/modules/bluetooth/
Dmodule-bluetooth-policy.c65 static pa_hook_result_t source_put_hook_callback(pa_core *c, pa_source *source, void *userdata) { in source_put_hook_callback()
106 static pa_hook_result_t sink_put_hook_callback(pa_core *c, pa_sink *sink, void *userdata) { in sink_put_hook_callback()
243 static unsigned source_output_count(pa_core *c, void *userdata) { in source_output_count()
265 static pa_hook_result_t source_output_put_hook_callback(pa_core *c, pa_source_output *source_output… in source_output_put_hook_callback()
277 static pa_hook_result_t source_output_unlink_hook_callback(pa_core *c, pa_source_output *source_out… in source_output_unlink_hook_callback()
292 static pa_hook_result_t card_init_profile_hook_callback(pa_core *c, pa_card *card, void *userdata) { in card_init_profile_hook_callback()
320 static pa_hook_result_t card_unlink_hook_callback(pa_core *c, pa_card *card, void *userdata) { in card_unlink_hook_callback()
345 static pa_hook_result_t profile_available_hook_callback(pa_core *c, pa_card_profile *profile, void … in profile_available_hook_callback()
394 static void handle_all_profiles(pa_core *core) { in handle_all_profiles()
Dbluez5-util.h182 pa_bluetooth_backend *pa_bluetooth_ofono_backend_new(pa_core *c, pa_bluetooth_discovery *y);
185 static inline pa_bluetooth_backend *pa_bluetooth_ofono_backend_new(pa_core *c, pa_bluetooth_discove… in pa_bluetooth_ofono_backend_new()
192 pa_bluetooth_backend *pa_bluetooth_native_backend_new(pa_core *c, pa_bluetooth_discovery *y, bool e…
196 static inline pa_bluetooth_backend *pa_bluetooth_native_backend_new(pa_core *c, pa_bluetooth_discov… in pa_bluetooth_native_backend_new()
241 pa_bluetooth_discovery* pa_bluetooth_discovery_get(pa_core *core, int headset_backend, bool enable_…

1234567