Searched defs:split (Results 1 - 4 of 4) sorted by relevance

/systemd/src/nspawn/
H A Dnspawn-expose-ports.c36 const char *split, *e; local
54 split = strchr(e, ':');
55 if (split) {
56 char v[split - e + 1];
58 memcpy(v, e, split - e);
59 v[split - e] = 0;
65 r = safe_atou16(split + 1, &container_port);
/systemd/src/shared/
H A Dacl-util.c229 _cleanup_strv_free_ char **split; local
234 split = strv_split(text, ",");
235 if (!split)
238 STRV_FOREACH(entry, split) {
/systemd/src/test/
H A Dtest-strv.c156 static void test_strv_quote_unquote(const char* const *split, const char *quoted) { argument
162 p = strv_join_quoted((char **)split);
173 assert_se(streq(*t, *split));
174 split++;
/systemd/src/basic/
H A Dstring-util.c142 const char* split(const char **state, size_t *l, const char *separator, bool quoted) { function

Completed in 488 milliseconds