Lines Matching defs:names
400 _cleanup_strv_free_ char **names = NULL;
405 r = sd_bus_list_names(a, NULL, &names);
409 /* Let's sort the names list to make it stable */
410 strv_sort(names);
412 return synthetic_reply_method_return_strv(m, names);
415 _cleanup_strv_free_ char **names = NULL;
420 r = sd_bus_list_names(a, &names, NULL);
424 r = strv_extend(&names, "org.freedesktop.DBus");
428 /* Let's sort the names list to make it stable */
429 strv_sort(names);
431 return synthetic_reply_method_return_strv(m, names);