Lines Matching defs:data
215 /* pa_log_warn("Failed to push data into output queue."); */
239 * ->thread_info data! */
261 * data. The next best thing we can do is to set the source's
263 * way it will have to send data at least that often. */
274 * the client-side buffer is only data that is on the way to
327 * ->thread_info data! */
364 pa_source_output_new_data data;
372 pa_source_output_new_data_init(&data);
374 pa_proplist_update(data.proplist, PA_UPDATE_REPLACE, p);
375 data.driver = __FILE__;
376 data.module = c->options->module;
377 data.client = c->client;
379 pa_source_output_new_data_set_source(&data, source, false, true);
381 pa_source_output_new_data_set_sample_spec(&data, ss);
383 pa_source_output_new_data_set_channel_map(&data, map);
385 pa_source_output_new_data_set_formats(&data, formats);
386 data.direct_on_input = direct_on_input;
388 pa_source_output_new_data_set_volume(&data, volume);
389 data.volume_is_absolute = !relative_volume;
390 data.save_volume = false;
393 pa_source_output_new_data_set_muted(&data, muted);
394 data.save_muted = false;
397 data.resample_method = PA_RESAMPLER_PEAKS;
398 data.flags = flags;
400 *ret = -pa_source_output_new(&source_output, c->protocol->core, &data);
402 pa_source_output_new_data_done(&data);
647 * ->thread_info data, such as the memblockq! */
690 * for data. The next best thing we can do is to set the sink's
707 * enough data to fulfill this request immediately and thus
827 pa_sink_input_new_data data;
857 pa_sink_input_new_data_init(&data);
859 pa_proplist_update(data.proplist, PA_UPDATE_REPLACE, p);
860 data.driver = __FILE__;
861 data.module = c->options->module;
862 data.client = c->client;
864 pa_sink_input_new_data_set_sink(&data, sink, false, true);
866 pa_sink_input_new_data_set_sample_spec(&data, ss);
868 pa_sink_input_new_data_set_channel_map(&data, map);
870 pa_sink_input_new_data_set_formats(&data, formats);
875 pa_sink_input_new_data_set_volume(&data, volume);
876 data.volume_is_absolute = !relative_volume;
877 data.save_volume = false;
880 pa_sink_input_new_data_set_muted(&data, muted);
881 data.save_muted = false;
883 data.sync_base = ssync ? ssync->sink_input : NULL;
884 data.flags = flags;
886 *ret = -pa_sink_input_new(&sink_input, c->protocol->core, &data);
888 pa_sink_input_new_data_done(&data);
1130 /* OK, the sink already asked for this data, so
1171 pa_log_warn("Failed to push data into queue");
1176 /* If more data is in queue, we rewind later instead. */
1266 * buffer has too little data. This must not be done when draining
2515 pa_log_warn("Denied access to client with invalid authentication data.");
2541 * user. This is a security measure because otherwise data
5080 pa_client_new_data data;
5092 pa_client_new_data_init(&data);
5093 data.module = o->module;
5094 data.driver = __FILE__;
5096 pa_proplist_setf(data.proplist, PA_PROP_APPLICATION_NAME, "Native client (%s)", pname);
5097 pa_proplist_sets(data.proplist, "native-protocol.peer", pname);
5098 client = pa_client_new(p->core, &data);
5099 pa_client_new_data_done(&data);