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

/systemd/src/timesync/
H A Dtimesyncd-server.c29 ServerAddress *a, *tail; local
43 LIST_FIND_TAIL(addresses, n->addresses, tail);
44 LIST_INSERT_AFTER(addresses, n->addresses, tail, a);
74 ServerName *n, *tail; local
91 LIST_FIND_TAIL(names, m->system_servers, tail);
92 LIST_INSERT_AFTER(names, m->system_servers, tail, n);
94 LIST_FIND_TAIL(names, m->link_servers, tail);
95 LIST_INSERT_AFTER(names, m->link_servers, tail, n);
97 LIST_FIND_TAIL(names, m->fallback_servers, tail);
98 LIST_INSERT_AFTER(names, m->fallback_servers, tail,
[all...]
/systemd/src/resolve/
H A Dresolved-dns-search-domain.c141 DnsSearchDomain *tail; local
157 LIST_FIND_TAIL(domains, d, tail);
159 LIST_INSERT_AFTER(domains, d->link->search_domains, tail, d);
163 LIST_FIND_TAIL(domains, d, tail);
165 LIST_INSERT_AFTER(domains, d->manager->search_domains, tail, d);
H A Dresolved-dns-server.c187 DnsServer *tail; local
206 LIST_FIND_TAIL(servers, s, tail);
208 LIST_INSERT_AFTER(servers, s->link->dns_servers, tail, s);
212 LIST_FIND_TAIL(servers, s, tail);
214 LIST_INSERT_AFTER(servers, s->manager->dns_servers, tail, s);
218 LIST_FIND_TAIL(servers, s, tail);
220 LIST_INSERT_AFTER(servers, s->manager->fallback_dns_servers, tail, s);
/systemd/src/udev/
H A Dudev-node.c43 int tail = 0; local
50 tail = i+1;
60 l = strscpy(s, l, &node[tail]);
H A Dudev-rules.c695 const char *tail; local
703 tail = &pos[2];
713 strscpyl(attr, len, dirname, "/", dent->d_name, tail, NULL);
/systemd/src/libsystemd-network/
H A Dlldp-tlv.c269 tlv_section *section, *tail; local
312 LIST_FIND_TAIL(section, m->sections, tail);
313 LIST_INSERT_AFTER(section, m->sections, tail, section);
/systemd/src/bus-proxyd/
H A Dbus-xml-policy.c51 PolicyItem *tail; local
53 LIST_FIND_TAIL(items, *list, tail);
54 LIST_INSERT_AFTER(items, *list, tail, i);
/systemd/src/core/
H A Dload-fragment.c330 SocketPort *tail; local
415 LIST_FIND_TAIL(port, s->ports, tail);
416 LIST_INSERT_AFTER(port, s->ports, tail, p);
/systemd/src/journal/
H A Djournal-file.c574 Object *tail, *o; local
592 r = journal_file_move_to_object(f, OBJECT_UNUSED, p, &tail);
596 p += ALIGN64(le64toh(tail->object.size));
H A Djournalctl.c304 " --no-tail Show all lines, even in follow mode\n"
395 { "no-tail", no_argument, NULL, ARG_NO_TAIL },
1080 BootId *head = NULL, *tail = NULL; local
1093 * If no reference is given, the journal head/tail will do,
1158 LIST_INSERT_AFTER(boot_list, head, tail, current);
1159 tail = current;
2331 log_error_errno(r, "Failed to seek to tail: %m");
2340 log_error_errno(r, "Failed to seek to tail: %m");

Completed in 1673 milliseconds