Searched refs:next (Results 1 - 25 of 39) sorted by relevance

12

/systemd/src/libudev/
H A Dlibudev-list.c52 list->next = list;
58 return list->next == list;
63 struct udev_list_node *next)
65 next->prev = new;
66 new->next = next;
68 prev->next = new;
79 struct udev_list_node *next = entry->next; local
81 next
61 udev_list_node_insert_between(struct udev_list_node *new, struct udev_list_node *prev, struct udev_list_node *next) argument
274 struct udev_list_node *next; local
[all...]
H A Dlibudev-private.h87 struct udev_list_node *next, *prev; member in struct:udev_list_node
102 for (node = (list)->next; \
104 node = (node)->next)
106 for (node = (list)->next, tmp = (node)->next; \
108 node = tmp, tmp = (tmp)->next)
/systemd/src/udev/
H A Dudev-builtin-keyboard.c106 char *next; local
112 val = strtol(current, &next, 0);
113 if (*next && *next != ':')
116 if (next != current)
119 if (*next)
120 next++;
122 return next;
129 char *next; local
137 next
[all...]
H A Dudev-rules.c810 /* move line to next key */
1748 const char *next; local
1750 next = strchr(s, '|');
1751 if (next != NULL) {
1752 size_t matchlen = (size_t)(next - s);
1761 s = &next[1];
1869 /* loop through token list, match, run actions or forward to next rule */
1987 struct token *next; local
1990 next = cur;
1991 while (next
2447 char *pos, *next; local
[all...]
/systemd/src/basic/
H A Dcalendarspec.h34 struct CalendarComponent *next; member in struct:CalendarComponent
58 int calendar_spec_next_usec(const CalendarSpec *spec, usec_t usec, usec_t *next);
H A Dmempool.c29 struct pool *next; member in struct:pool
38 * place the next pointer at its offset 0. */
66 p->next = mp->first_pool;
98 n = p->next;
H A Dcalendarspec.c41 n = c->next;
80 CalendarComponent **b, *i, **j, *next; local
84 for (i = *c; i; i = i->next)
91 for (i = *c; i; i = i->next)
96 b[n-1]->next = NULL;
97 next = b[n-1];
101 if (b[k-1]->value == next->value &&
102 b[k-1]->repeat == next->repeat) {
107 b[k-1]->next = next;
1063 calendar_spec_next_usec(const CalendarSpec *spec, usec_t usec, usec_t *next) argument
[all...]
H A Dc-rbtree.c103 * c_rbnode_next() - return next node
107 * returns the logically next node to @n. If @n is NULL, the last node or
112 * Return: Pointer to next node, or NULL.
236 * recursive repaint is required, the next node to be re-painted
576 CRBNode *p, *s, *gc, *x, *next = NULL; local
603 * next: next node to rebalance on
626 next = (c == C_RBNODE_BLACK) ? p : NULL;
649 /* right child is next, no need to touch grandchild */
673 next
[all...]
H A Dcopy.c96 goto next;
112 goto next;
130 next:
/systemd/src/resolve/
H A Dresolved-dns-search-domain.c174 DnsSearchDomain *next; local
179 next = first->domains_next;
182 dns_search_domain_unlink_all(next);
186 DnsSearchDomain *next; local
191 next = first->domains_next;
196 dns_search_domain_unlink_marked(next);
H A Dresolved-dns-server.c592 DnsServer *next; local
597 next = first->servers_next;
600 dns_server_unlink_all(next);
604 DnsServer *next; local
609 next = first->servers_next;
614 dns_server_unlink_marked(next);
706 /* If there's currently no DNS server set, then the next
711 /* Change to the next one, but make sure to follow the linked
718 /* If there was no next one, then start from the beginning of
H A Dresolved-dns-query.c91 DnsSearchDomain *next = NULL; local
96 next = c->search_domain->domains_next;
98 next = dns_scope_get_search_domains(c->scope);
101 if (!next) /* We hit the end of the list */
104 if (!next->route_only)
108 next = next->domains_next;
112 c->search_domain = dns_search_domain_ref(next);
/systemd/src/login/
H A Dlogind-utmp.c110 usec_t n, next; local
122 next = when_wall(n, m->scheduled_shutdown_timeout);
123 if (next > 0) {
124 r = sd_event_source_set_time(s, n + next);
H A Dsysfs-show.c49 struct udev_list_entry *next, *lookahead; local
83 lookahead = next = udev_list_entry_get_next(*item);
129 *item = next;
/systemd/src/bootchart/
H A Dbootchart.h51 struct ps_sched_struct *next; member in struct:ps_sched_struct
72 struct ps_struct *next; /* siblings */ member in struct:ps_struct
H A Dsvg.c337 while (ps->sample->next) {
338 ps->sample = ps->sample->next;
371 while (ps->sample->next) {
372 ps->sample = ps->sample->next;
427 while (ps->sample->next) {
428 ps->sample = ps->sample->next;
457 while (ps->sample->next) {
459 ps->sample = ps->sample->next;
513 while (ps->sample->next) {
514 ps->sample = ps->sample->next;
[all...]
H A Dstore.c351 while (children->next)
352 children = children->next;
354 children->next = ps;
385 ps->sample->next = new0(struct ps_sched_struct, 1);
386 if (!ps->sample->next)
389 ps->sample->next->prev = ps->sample;
390 ps->sample = ps->sample->next;
H A Dbootchart.c503 while (old->sample->next) {
506 old->sample = old->sample->next;
/systemd/src/libsystemd/sd-bus/
H A Dbus-match.c88 assert(node->prev->next == node);
89 node->prev->next = node->next;
92 node->parent->child = node->next;
95 if (node->next)
96 node->next->prev = node->prev;
342 return bus_match_run(bus, node->next, m);
425 for (c = node->child; c; c = c->next) {
439 return bus_match_run(bus, node->next, m);
457 for (c = where->child; c && c->type != t; c = c->next)
[all...]
H A Dbus-match.h53 struct bus_match_node *parent, *next, *prev, *child; member in struct:bus_match_node
H A Dbus-message.h54 struct bus_body_part *next; member in struct:bus_body_part
230 for ((i) = 0, (part) = &(m)->body; (i) < (m)->n_body_parts; (i)++, (part) = (part)->next)
/systemd/src/journal/
H A Djournal-verify.c525 uint64_t next, m, j; local
541 next = le64toh(o->entry_array.next_entry_array_offset);
542 if (next != 0 && next <= a) {
543 error(p, "Array chain has cycle (jumps back from "OFSfmt" to "OFSfmt")", a, next);
567 a = next;
607 uint64_t next; local
618 next = le64toh(o->data.next_hash_offset);
619 if (next != 0 && next <
744 uint64_t next, m, j; local
[all...]
/systemd/src/libsystemd/sd-netlink/
H A Dnetlink-internal.h119 sd_netlink_message *next; /* next in a chain of multi-part messages */ member in struct:sd_netlink_message
/systemd/src/libsystemd/sd-event/
H A Dsd-event.c127 usec_t next, accuracy; member in struct:sd_event_source::__anon147::__anon149
168 usec_t next; member in struct:clock_data
320 if (x->time.next < y->time.next)
322 if (x->time.next > y->time.next)
329 return usec_add(s->time.next, s->time.accuracy);
438 e->realtime.next = e->boottime.next = e->monotonic.next
2040 flush_timer(sd_event *e, int fd, uint32_t events, usec_t *next) argument
[all...]
/systemd/src/nss-myhostname/
H A Dnss-myhostname.c133 r_tuple->next = r_tuple_prev;
144 r_tuple->next = r_tuple_prev;
157 r_tuple->next = r_tuple_prev;

Completed in 878 milliseconds

12