Searched defs:tags (Results 1 - 6 of 6) sorted by relevance
/systemd/src/libudev/ |
H A D | libudev-device-internal.h | 47 struct udev_list tags; member in struct:udev_device
|
/systemd/src/libsystemd/sd-device/ |
H A D | device-internal.h | 46 Set *tags; member in struct:sd_device 48 uint64_t tags_generation; /* changes whenever the tags are changed */
|
H A D | sd-device.c | 87 set_free_free(device->tags); 1061 r = set_ensure_allocated(&device->tags, &string_hash_ops); 1065 r = set_put_strdup(device->tags, tag); 1400 set_iterate(device->tags, &device->tags_iterator, &v); 1414 set_iterate(device->tags, &device->tags_iterator, &v); 1478 char *tags = NULL; local 1483 tags = strjoina(":", tag); 1486 tags = strjoina(tags, ":", tag); 1488 tags [all...] |
/systemd/src/core/ |
H A D | manager.c | 1497 _cleanup_strv_free_ char **tags = NULL; local 1504 tags = strv_split(buf, "\n\r"); 1505 if (!tags) { 1511 UNIT_VTABLE(u)->notify_message(u, pid, tags, fds);
|
H A D | service.c | 2955 static void service_notify_message(Unit *u, pid_t pid, char **tags, FDSet *fds) { argument 2963 cc = strv_join(tags, ", "); 2978 e = strv_find_startswith(tags, "MAINPID="); 2990 if (strv_find(tags, "RELOADING=1")) { 3001 if (strv_find(tags, "READY=1")) { 3019 if (strv_find(tags, "STOPPING=1")) { 3030 e = strv_find_startswith(tags, "STATUS="); 3055 e = strv_find_startswith(tags, "ERRNO="); 3070 if (strv_find(tags, "WATCHDOG=1")) 3073 if (strv_find(tags, "FDSTOR [all...] |
/systemd/src/udev/ |
H A D | udev-rules.c | 2573 _cleanup_strv_free_ char **tags = NULL; local 2597 tags = strv_free(tags); 2609 r = strv_extend(&tags, rules_str(rules, cur->key.value_off)); 2622 if (mode == 0 && uid == 0 && gid == 0 && tags == NULL) 2631 /* export the tags to a directory as symlinks, allowing otherwise dead nodes to be tagged */ 2632 if (tags) { 2633 STRV_FOREACH(t, tags) { 2636 strscpyl(tags_dir, sizeof(tags_dir), "/run/udev/static_node-tags/", *t, "/", NULL); 2653 /* don't touch the permissions if only the tags wer [all...] |
Completed in 280 milliseconds