mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
Rename functions with "tostring" in the name to one with "to_string" to conform with the convention.
component: core <EP-E358F00C1D9A449EAE69225B9D2530F8> BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=88833 Signed-off-by: Deepak Srivastava <srivastava.d@samsung.com>
This commit is contained in:
parent
bb88d90950
commit
2d5eec2d2c
24 changed files with 46 additions and 46 deletions
|
|
@ -4273,7 +4273,7 @@ static int profile_verify(pa_alsa_profile *p) {
|
|||
pa_strbuf_printf(sb, _("%s Input"), m->description);
|
||||
}
|
||||
|
||||
p->description = pa_strbuf_tostring_free(sb);
|
||||
p->description = pa_strbuf_to_string_free(sb);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
@ -4333,7 +4333,7 @@ void pa_alsa_decibel_fix_dump(pa_alsa_decibel_fix *db_fix) {
|
|||
for (i = 0; i < nsteps; ++i)
|
||||
pa_strbuf_printf(buf, "[%li]:%0.2f ", i + db_fix->min_step, db_fix->db_values[i] / 100.0);
|
||||
|
||||
db_values = pa_strbuf_tostring_free(buf);
|
||||
db_values = pa_strbuf_to_string_free(buf);
|
||||
}
|
||||
|
||||
pa_log_debug("Decibel fix %s, min_step=%li, max_step=%li, db_values=%s",
|
||||
|
|
|
|||
|
|
@ -1504,7 +1504,7 @@ static void handle_load_module(DBusConnection *conn, DBusMessage *msg, void *use
|
|||
dbus_message_iter_next(&dict_iter);
|
||||
}
|
||||
|
||||
arg_string = pa_strbuf_tostring(arg_buffer);
|
||||
arg_string = pa_strbuf_to_string(arg_buffer);
|
||||
|
||||
if (!(module = pa_module_load(c->core, name, arg_string))) {
|
||||
pa_dbus_send_error(conn, msg, DBUS_ERROR_FAILED, "Failed to load module.");
|
||||
|
|
|
|||
|
|
@ -411,7 +411,7 @@ static int ca_device_create_sink(pa_module *m, AudioBuffer *buf, int channel_idx
|
|||
pa_strbuf_puts(strbuf, tmp);
|
||||
}
|
||||
|
||||
ca_sink->name = pa_strbuf_tostring_free(strbuf);
|
||||
ca_sink->name = pa_strbuf_to_string_free(strbuf);
|
||||
|
||||
pa_log_debug("Stream name is >%s<", ca_sink->name);
|
||||
|
||||
|
|
@ -529,7 +529,7 @@ static int ca_device_create_source(pa_module *m, AudioBuffer *buf, int channel_i
|
|||
pa_strbuf_puts(strbuf, tmp);
|
||||
}
|
||||
|
||||
ca_source->name = pa_strbuf_tostring_free(strbuf);
|
||||
ca_source->name = pa_strbuf_to_string_free(strbuf);
|
||||
|
||||
pa_log_debug("Stream name is >%s<", ca_source->name);
|
||||
|
||||
|
|
|
|||
|
|
@ -937,7 +937,7 @@ static DBusHandlerResult sinks_and_sources_handler(DBusConnection *c, DBusMessag
|
|||
}
|
||||
|
||||
pa_strbuf_puts(sb, CONTAINER_INTROSPECT_XML_POSTFIX);
|
||||
xml = pa_strbuf_tostring_free(sb);
|
||||
xml = pa_strbuf_to_string_free(sb);
|
||||
|
||||
pa_assert_se(r = dbus_message_new_method_return(m));
|
||||
pa_assert_se(dbus_message_append_args(r, DBUS_TYPE_STRING, &xml, DBUS_TYPE_INVALID));
|
||||
|
|
|
|||
|
|
@ -421,7 +421,7 @@ static void card_changed(struct userdata *u, struct udev_device *dev) {
|
|||
if (u->tsched_buffer_size_valid)
|
||||
pa_strbuf_printf(args_buf, " tsched_buffer_size=%" PRIu32, u->tsched_buffer_size);
|
||||
|
||||
d->args = pa_strbuf_tostring_free(args_buf);
|
||||
d->args = pa_strbuf_to_string_free(args_buf);
|
||||
|
||||
pa_hashmap_put(u->devices, d->path, d);
|
||||
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@ char *pa_headerlist_to_string(pa_headerlist *p) {
|
|||
pa_strbuf_printf(buf, "%s: %s\r\n", key, v);
|
||||
}
|
||||
|
||||
return pa_strbuf_tostring_free(buf);
|
||||
return pa_strbuf_to_string_free(buf);
|
||||
}
|
||||
|
||||
int pa_headerlist_contains(pa_headerlist *p, const char *key) {
|
||||
|
|
|
|||
|
|
@ -205,7 +205,7 @@ static void line_callback(pa_ioline *line, const char *s, void *userdata) {
|
|||
/* End of headers */
|
||||
/* We will have a header left from our looping iteration, so add it in :) */
|
||||
if (c->last_header) {
|
||||
char *tmp = pa_strbuf_tostring_free(c->header_buffer);
|
||||
char *tmp = pa_strbuf_to_string_free(c->header_buffer);
|
||||
/* This is not a continuation header so let's dump it into our proplist */
|
||||
pa_headerlist_puts(c->response_headers, c->last_header, tmp);
|
||||
pa_xfree(tmp);
|
||||
|
|
@ -233,7 +233,7 @@ static void line_callback(pa_ioline *line, const char *s, void *userdata) {
|
|||
}
|
||||
|
||||
if (c->last_header) {
|
||||
char *tmp = pa_strbuf_tostring_free(c->header_buffer);
|
||||
char *tmp = pa_strbuf_to_string_free(c->header_buffer);
|
||||
/* This is not a continuation header so let's dump the full
|
||||
header/value into our proplist */
|
||||
pa_headerlist_puts(c->response_headers, c->last_header, tmp);
|
||||
|
|
@ -432,7 +432,7 @@ static int rtsp_exec(pa_rtsp_client* c, const char* cmd,
|
|||
}
|
||||
|
||||
/* Our packet is created... now we can send it :) */
|
||||
hdrs = pa_strbuf_tostring_free(buf);
|
||||
hdrs = pa_strbuf_to_string_free(buf);
|
||||
/*pa_log_debug("Submitting request:");
|
||||
pa_log_debug(hdrs);*/
|
||||
pa_ioline_puts(c->ioline, hdrs);
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ static void publish_servers(struct userdata *u, pa_strlist *l) {
|
|||
char *s;
|
||||
|
||||
l = pa_strlist_reverse(l);
|
||||
s = pa_strlist_tostring(l);
|
||||
s = pa_strlist_to_string(l);
|
||||
pa_strlist_reverse(l);
|
||||
|
||||
pa_x11_set_prop(pa_x11_wrapper_get_xcb_connection(u->x11_wrapper), screen, "PULSE_SERVER", s);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue