Searched refs:strv_join_full (Results 1 – 4 of 4) sorted by relevance
/systemd-251/src/test/ |
D | test-strv.c | 160 TEST(strv_join_full) { in TEST() argument 161 _cleanup_free_ char *p = strv_join_full((char **)input_table_multiple, ", ", "foo", false); in TEST() 165 _cleanup_free_ char *q = strv_join_full((char **)input_table_multiple, ";", "foo", false); in TEST() 169 _cleanup_free_ char *r = strv_join_full(STRV_MAKE("a", "a;b", "a:c"), ";", NULL, true); in TEST() 173 …_cleanup_free_ char *s = strv_join_full(STRV_MAKE("a", "a;b", "a;;c", ";", ";x"), ";", NULL, true); in TEST() 177 _cleanup_free_ char *t = strv_join_full(STRV_MAKE("a", "a;b", "a:c", ";"), ";", "=", true); in TEST() 182 _cleanup_free_ char *u = strv_join_full((char **)input_table_multiple, NULL, "foo", false); in TEST() 186 _cleanup_free_ char *v = strv_join_full((char **)input_table_one, ", ", "foo", false); in TEST() 190 _cleanup_free_ char *w = strv_join_full((char **)input_table_none, ", ", "foo", false); in TEST() 194 … _cleanup_free_ char *x = strv_join_full((char **)input_table_two_empties, ", ", "foo", false); in TEST() [all …]
|
/systemd-251/src/basic/ |
D | strv.h | 104 char* strv_join_full(char * const *l, const char *separator, const char *prefix, bool escape_separa… 106 return strv_join_full(l, separator, NULL, false); in strv_join()
|
D | strv.c | 354 char* strv_join_full(char * const *l, const char *separator, const char *prefix, bool escape_separa… in strv_join_full() function
|
/systemd-251/src/shared/ |
D | fstab-util.c | 199 f = strv_join_full(filtered, ",", NULL, true); in fstab_filter_options()
|