/systemd-251/src/udev/ |
D | udev-builtin-keyboard.c | 91 char *next; in parse_token() local 97 val = strtol(current, &next, 0); in parse_token() 98 if (*next && *next != ':') in parse_token() 101 if (next != current) in parse_token() 104 if (*next) in parse_token() 105 next++; in parse_token() 107 return next; in parse_token() 112 const char *next; in override_abs() local 117 next = parse_token(value, &absinfo.minimum); in override_abs() 118 next = parse_token(next, &absinfo.maximum); in override_abs() [all …]
|
D | udev-builtin-hwdb.c | 83 goto next; in udev_builtin_hwdb_search() 87 goto next; in udev_builtin_hwdb_search() 103 goto next; in udev_builtin_hwdb_search() 113 next: in udev_builtin_hwdb_search()
|
/systemd-251/src/basic/ |
D | path-util.c | 810 const char *q, *first, *end_first, *next; in path_find_first_component() local 872 next = skip_slash_or_dot(end_first); in path_find_first_component() 874 *p = next + streq(next, "."); in path_find_first_component() 894 int path_find_last_component(const char *path, bool accept_dot_dot, const char **next, const char *… in path_find_last_component() argument 927 if (next) in path_find_last_component() 928 *next = path; in path_find_last_component() 934 if (next && *next) { in path_find_last_component() 935 if (*next < path || *next > path + strlen(path)) in path_find_last_component() 937 if (*next == path) { in path_find_last_component() 942 if (!IN_SET(**next, '\0', '/')) in path_find_last_component() [all …]
|
D | mempool.c | 14 struct pool *next; member 50 p->next = mp->first_pool; in mempool_alloc_tile() 95 n = p->next; in mempool_drop()
|
D | fs-util.c | 588 goto next; in getenv_tmp_dir() 592 goto next; in getenv_tmp_dir() 597 goto next; in getenv_tmp_dir() 600 goto next; in getenv_tmp_dir() 606 next: in getenv_tmp_dir()
|
/systemd-251/src/libsystemd/sd-bus/ |
D | bus-match.c | 71 assert(node->prev->next == node); in bus_match_node_free() 72 node->prev->next = node->next; in bus_match_node_free() 75 node->parent->child = node->next; in bus_match_node_free() 78 if (node->next) in bus_match_node_free() 79 node->next->prev = node->prev; in bus_match_node_free() 294 return bus_match_run(bus, node->next, m); in bus_match_run() 329 return bus_match_run(bus, node->next, m); in bus_match_run() 407 for (struct bus_match_node *c = node->child; c; c = c->next) { in bus_match_run() 423 return bus_match_run(bus, node->next, m); in bus_match_run() 441 for (c = where->child; c && c->type != t; c = c->next) in bus_match_add_compare_value() [all …]
|
D | bus-message.h | 36 struct bus_body_part *next; member 211 for ((i) = 0, (part) = &(m)->body; (i) < (m)->n_body_parts; (i)++, (part) = (part)->next)
|
/systemd-251/src/analyze/ |
D | analyze-calendar.c | 62 usec_t next; in test_calendar_one() local 64 r = calendar_spec_next_usec(spec, n, &next); in test_calendar_one() 82 TABLE_TIMESTAMP, next, in test_calendar_one() 99 TABLE_TIMESTAMP, next, in test_calendar_one() 108 TABLE_TIMESTAMP_UTC, next); in test_calendar_one() 115 TABLE_TIMESTAMP_RELATIVE, next); in test_calendar_one() 119 n = next; in test_calendar_one()
|
/systemd-251/src/systemctl/ |
D | systemctl-list-units.c | 510 dual_timestamp *next) { in get_next_elapse() argument 518 assert(next); in get_next_elapse() 544 *next = t; in get_next_elapse() 665 usec_t calc_next_elapse(dual_timestamp *nw, dual_timestamp *next) { in calc_next_elapse() argument 669 assert(next); in calc_next_elapse() 671 if (timestamp_is_set(next->monotonic)) { in calc_next_elapse() 674 if (next->monotonic > nw->monotonic) in calc_next_elapse() 675 converted = nw->realtime + (next->monotonic - nw->monotonic); in calc_next_elapse() 677 converted = nw->realtime - (nw->monotonic - next->monotonic); in calc_next_elapse() 679 if (timestamp_is_set(next->realtime)) in calc_next_elapse() [all …]
|
D | systemctl-list-units.h | 8 usec_t calc_next_elapse(dual_timestamp *nw, dual_timestamp *next);
|
/systemd-251/src/resolve/ |
D | resolved-dns-search-domain.c | 143 DnsSearchDomain *next; in dns_search_domain_unlink_all() local 148 next = first->domains_next; in dns_search_domain_unlink_all() 151 dns_search_domain_unlink_all(next); in dns_search_domain_unlink_all() 155 DnsSearchDomain *next; in dns_search_domain_unlink_marked() local 161 next = first->domains_next; in dns_search_domain_unlink_marked() 169 return dns_search_domain_unlink_marked(next) || changed; in dns_search_domain_unlink_marked()
|
D | resolved-dns-query.c | 93 DnsSearchDomain *next; in dns_query_candidate_next_search_domain() local 98 next = c->search_domain->domains_next; in dns_query_candidate_next_search_domain() 100 next = dns_scope_get_search_domains(c->scope); in dns_query_candidate_next_search_domain() 103 if (!next) /* We hit the end of the list */ in dns_query_candidate_next_search_domain() 106 if (!next->route_only) in dns_query_candidate_next_search_domain() 110 next = next->domains_next; in dns_query_candidate_next_search_domain() 114 c->search_domain = dns_search_domain_ref(next); in dns_query_candidate_next_search_domain()
|
D | resolved-dns-server.c | 781 DnsServer *next; in dns_server_unlink_all() local 786 next = first->servers_next; in dns_server_unlink_all() 789 dns_server_unlink_all(next); in dns_server_unlink_all() 796 DnsServer *next; in dns_server_unlink_marked() local 798 next = server->servers_next; in dns_server_unlink_marked() 805 server = next; in dns_server_unlink_marked()
|
D | resolved-dnssd.c | 26 DnssdTxtData *next; in dnssd_txtdata_free_all() local 31 next = txt_data->items_next; in dnssd_txtdata_free_all() 35 return dnssd_txtdata_free_all(next); in dnssd_txtdata_free_all()
|
/systemd-251/src/shared/ |
D | calendarspec.c | 39 CalendarComponent *n = c->next; in chain_free() 82 for (CalendarComponent *i = *c; i; i = i->next) { in normalize_chain() 106 for (CalendarComponent *i = *c; i; i = i->next) in normalize_chain() 111 b[n-1]->next = NULL; in normalize_chain() 112 CalendarComponent *next = b[n-1]; in normalize_chain() local 116 if (component_compare(&b[k-1], &next) == 0) { in normalize_chain() 121 b[k-1]->next = next; in normalize_chain() 122 next = b[k-1]; in normalize_chain() 125 *c = next; in normalize_chain() 144 c = c->next; in fix_year() [all …]
|
D | calendarspec.h | 17 struct CalendarComponent *next; member 43 int calendar_spec_next_usec(const CalendarSpec *spec, usec_t usec, usec_t *next);
|
/systemd-251/src/udev/dmi_memory_id/ |
D | dmi_memory_id.c | 538 const uint8_t *next; in dmi_table_decode() local 552 next = data + h.length; in dmi_table_decode() 553 while ((size_t)(next - buf + 1) < len && (next[0] != 0 || next[1] != 0)) in dmi_table_decode() 554 next++; in dmi_table_decode() 555 next += 2; in dmi_table_decode() 558 if ((size_t)(next - buf) > len) in dmi_table_decode() 564 data = next; in dmi_table_decode()
|
/systemd-251/src/login/ |
D | logind-utmp.c | 96 usec_t n, next; in wall_message_timeout_handler() local 108 next = when_wall(n, m->scheduled_shutdown_timeout); in wall_message_timeout_handler() 109 if (next > 0) { in wall_message_timeout_handler() 110 r = sd_event_source_set_time(s, n + next); in wall_message_timeout_handler()
|
/systemd-251/src/libsystemd/sd-journal/ |
D | journal-verify.c | 471 uint64_t next, m, j; in verify_data() local 487 next = le64toh(o->entry_array.next_entry_array_offset); in verify_data() 488 if (next != 0 && next <= a) { in verify_data() 489 … error(p, "Array chain has cycle (jumps back from "OFSfmt" to "OFSfmt")", a, next); in verify_data() 522 a = next; in verify_data() 562 uint64_t next; in verify_data_hash_table() local 573 next = le64toh(o->data.next_hash_offset); in verify_data_hash_table() 574 if (next != 0 && next <= p) { in verify_data_hash_table() 589 p = next; in verify_data_hash_table() 709 uint64_t next, m, j; in verify_entry_array() local [all …]
|
/systemd-251/src/shared/linux/ |
D | dm-ioctl.h | 168 __u32 next; member 193 __u32 next; /* offset to the next record from member 216 __u32 next; member
|
/systemd-251/src/network/ |
D | networkd-bridge-vlan.c | 79 goto next; in bridge_vlan_append_info() 85 goto next; in bridge_vlan_append_info() 133 next: in bridge_vlan_append_info()
|
/systemd-251/src/libsystemd/sd-event/ |
D | event-source.h | 96 usec_t next, accuracy; member 147 usec_t next; member
|
/systemd-251/src/partition/ |
D | repart.c | 1440 uint64_t offset, next = UINT64_MAX; in determine_current_padding() local 1472 if (start >= offset && (next == UINT64_MAX || next > start)) in determine_current_padding() 1473 next = start; in determine_current_padding() 1476 if (next == UINT64_MAX) { in determine_current_padding() 1478 next = fdisk_get_last_lba(c); in determine_current_padding() 1479 assert(next < UINT64_MAX); in determine_current_padding() 1480 next++; /* The last LBA is one sector before the end */ in determine_current_padding() 1482 assert(next < UINT64_MAX / secsz); in determine_current_padding() 1483 next *= secsz; in determine_current_padding() 1485 if (offset > next) in determine_current_padding() [all …]
|
/systemd-251/shell-completion/zsh/ |
D | _bootctl | 48 "set-oneshot:Set the default boot loader entry only for the next boot" 50 "set-timeout-oneshot:Set the menu timeout for the next boot only"
|
/systemd-251/src/nss-myhostname/ |
D | nss-myhostname.c | 117 r_tuple->next = r_tuple_prev; in _nss_myhostname_gethostbyname4_r() 129 r_tuple->next = r_tuple_prev; in _nss_myhostname_gethostbyname4_r() 144 r_tuple->next = r_tuple_prev; in _nss_myhostname_gethostbyname4_r()
|