Searched refs:existing (Results 1 - 9 of 9) sorted by relevance

/systemd/src/sysctl/
H A Dsysctl.c81 char l[LINE_MAX], *p, *value, *new_value, *property, *existing; local
128 existing = hashmap_get2(sysctl_options, p, &v);
129 if (existing) {
130 if (streq(value, existing))
/systemd/src/login/
H A Dpam_systemd.c232 int session_fd = -1, existing, r; local
427 &existing);
481 r = pam_set_data(handle, "systemd.existing", INT_TO_PTR(!!existing), NULL);
483 pam_syslog(handle, LOG_ERR, "Failed to install existing flag.");
512 const void *existing = NULL; local
518 /* Only release session if it wasn't pre-existing when we
520 pam_get_data(handle, "systemd.existing", &existing);
523 if (id && !existing) {
[all...]
/systemd/src/tmpfiles/
H A Dtmpfiles.c1144 [CREATION_EXISTING] = "Found existing",
1814 ItemArray *existing; local
2069 existing = ordered_hashmap_get(h, i.path);
2070 if (existing) {
2073 for (n = 0; n < existing->count; n++) {
2074 if (!item_compatible(existing->items + n, &i)) {
2081 existing = new0(ItemArray, 1);
2082 r = ordered_hashmap_put(h, i.path, existing);
2087 if (!GREEDY_REALLOC(existing->items, existing
[all...]
/systemd/src/network/
H A Dnetworkd-address.c381 Address address = {}, *existing; local
391 existing = set_get(link->addresses, &address);
392 if (existing) {
393 *ret = existing;
397 existing = set_get(link->addresses_foreign, &address);
398 if (!existing)
402 *ret = existing;
H A Dnetworkd-route.c190 }, *existing; local
198 existing = set_get(link->routes, &route);
199 if (existing) {
200 *ret = existing;
203 existing = set_get(link->routes_foreign, &route);
204 if (!existing)
208 *ret = existing;
/systemd/src/resolve/
H A Dresolved-dns-zone.c217 DnsZoneItem *existing; local
229 existing = dns_zone_get(z, rr);
230 if (existing)
H A Dresolved-dns-cache.c379 DnsCacheItem *existing; local
411 existing = dns_cache_get(c, rr);
412 if (existing) {
415 existing,
/systemd/src/sysusers/
H A Dsysusers.c641 /* we will update the existing entry */
1389 Item *existing; local
1510 /* Try to extend an existing member or group item */
1664 existing = hashmap_get(h, i->name);
1665 if (existing) {
1668 if (!item_equal(existing, i))
/systemd/src/libsystemd/sd-bus/
H A Dbus-objects.c1625 struct node_vtable *i, *existing = NULL; local
1667 existing = i;
1791 LIST_INSERT_AFTER(vtables, n->vtables, existing, &s->node_vtable);

Completed in 3126 milliseconds