Lines Matching defs:suffix
366 static int process_suffix(const char *suffix, const char *onlyprefix) {
377 assert(suffix);
378 assert(!startswith(suffix, "/"));
379 assert(!strstr(suffix, "//"));
381 dropins = nulstr_contains(have_dropins, suffix);
394 t = strjoin(p, "/", suffix, NULL);
467 /* Strip prefix from the suffix */
469 const char *suffix;
471 suffix = startswith(arg, p);
472 if (suffix) {
473 suffix += strspn(suffix, "/");
474 if (*suffix)
475 return process_suffix(suffix, NULL);
481 log_error("Invalid suffix specification %s.", arg);