Searched refs:sep (Results 1 - 8 of 8) sorted by relevance
/systemd/src/libsystemd/sd-bus/ |
H A D | bus-bloom.h | 41 void bloom_add_prefixes(uint64_t filter[], size_t size, unsigned n_hash, const char *a, const char *b, char sep);
|
H A D | bus-bloom.c | 103 void bloom_add_prefixes(uint64_t filter[], size_t size, unsigned k, const char *a, const char *b, char sep) { argument 122 e = strrchr(p, sep);
|
H A D | sd-bus.c | 3465 const char *sep, *template_pos; local 3476 for (sep = strchr(path_template, '%'); sep; sep = strchr(sep + 1, '%')) { 3511 sep = strchrnul(template_pos, '%'); 3512 path_pos = mempcpy(path_pos, template_pos, sep - template_pos); 3513 if (!*sep) 3517 template_pos = sep + 1; 3558 const char *sep; local [all...] |
/systemd/src/journal-remote/ |
H A D | journal-remote-parse.c | 325 char *line, *sep; local 354 sep = memchr(line, '=', n); 355 if (sep) { 372 log_trace("Received: %.*s (%s)", (int) n, line, sep ? "text" : "binary");
|
/systemd/src/basic/ |
H A D | string-util.c | 751 int split_pair(const char *s, const char *sep, char **l, char **r) { argument 755 assert(sep); 759 if (isempty(sep)) 762 x = strstr(s, sep); 770 b = strdup(x + strlen(sep));
|
H A D | hexdecoct.c | 555 const char *sep, int indent, 570 slen = sep ? strlen(sep) : 0; 575 memcpy(t + plen, sep, slen); 580 if (line > 0 || sep) { 554 base64_append_width(char **prefix, int plen, const char *sep, int indent, const void *p, size_t l, int width) argument
|
H A D | string-util.h | 163 int split_pair(const char *s, const char *sep, char **l, char **r);
|
/systemd/src/boot/efi/ |
H A D | boot.c | 912 static CHAR8 *line_get_key_value(CHAR8 *content, CHAR8 *sep, UINTN *pos, CHAR8 **key_ret, CHAR8 **value_ret) { argument 945 while (linelen > 0 && strchra(sep, line[linelen-1])) 954 while (*value && !strchra(sep, *value)) 960 while (*value && strchra(sep, *value))
|
Completed in 716 milliseconds