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

/systemd/src/libsystemd/sd-bus/
H A Dsd-bus.c3462 _public_ int sd_bus_path_encode_many(char **out, const char *path_template, ...) { argument
3471 assert_return(path_template, -EINVAL);
3473 path_length = strlen(path_template);
3475 va_start(list, path_template);
3476 for (sep = strchr(path_template, '%'); sep; sep = strchr(sep + 1, '%')) {
3510 for (template_pos = path_template; *template_pos; ) {
3525 _public_ int sd_bus_path_decode_many(const char *path, const char *path_template, ...) { argument
3553 assert_return(path_template, -EINVAL);
3557 for (template_pos = path_template; *template_pos; ) {
3610 va_start(list, path_template);
[all...]

Completed in 1051 milliseconds