Lines Matching defs:client
32 #include <pulsecore/client.h>
41 #include "iface-client.h"
88 pa_client *client;
103 pa_client_free(c->client);
171 /* Called by D-Bus when a new client connection is received. */
176 pa_client *client;
184 pa_proplist_sets(new_data.proplist, PA_PROP_APPLICATION_NAME, "D-Bus client");
185 client = pa_client_new(s->userdata->module->core, &new_data);
188 if (!client) {
203 c->client = client;
205 c->client->kill = client_kill_cb;
206 c->client->send_event = client_send_event_cb;
207 c->client->userdata = c;
213 pa_assert_se(pa_dbus_protocol_register_connection(s->userdata->dbus_protocol, new_connection, c->client) >= 0);
498 /* Frees dead client connections. */