Searched refs:rest (Results 1 - 6 of 6) sorted by relevance
/systemd/src/basic/ |
H A D | path-util.c | 440 char* path_join(const char *root, const char *path, const char *rest) { argument 446 rest ? (endswith(path, "/") ? "" : "/") : NULL, 447 rest && rest[0] == '/' ? rest+1 : rest, 451 rest ? (endswith(path, "/") ? "" : "/") : NULL, 452 rest && rest[0] == '/' ? rest [all...] |
H A D | path-util.h | 49 char* path_join(const char *root, const char *path, const char *rest);
|
/systemd/src/udev/ |
H A D | udev-builtin-net_id.c | 248 char *rest; local 253 i = strtol(dent->d_name, &rest, 10); 254 if (rest[0] != '\0')
|
H A D | udev-builtin-path_id.c | 409 char *rest; local 418 i = strtoul(&dent->d_name[4], &rest, 10); 419 if (rest[0] != '\0')
|
H A D | udev-event.c | 247 char *rest; local 255 i = strtoul(attr, &rest, 10); 277 if (rest[0] != '+') {
|
/systemd/src/test/ |
H A D | test-path-util.c | 173 #define test_join(root, path, rest, expected) { \ 175 z = path_join(root, path, rest); \
|
Completed in 106 milliseconds