Searched defs:last (Results 1 - 13 of 13) sorted by relevance

/systemd/src/bootchart/
H A Dbootchart.h85 /* pointers to first/last seen timestamps */
87 struct ps_sched_struct *last; member in struct:ps_struct
/systemd/src/udev/
H A Dudev-builtin-hwdb.c88 bool last = false; local
96 for (d = srcdev; d && !last; d = udev_device_get_parent(d)) {
116 last = true;
/systemd/src/core/
H A Dtransaction.c90 JobDependency *l, *last; local
105 last = NULL;
109 last = l;
113 if (last) {
114 last->subject_next = j->subject_list;
116 j->subject_list->subject_prev = last;
121 last = NULL;
125 last = l;
129 if (last) {
130 last
[all...]
H A Dexecute.c1110 int af, first = 0, last = 0; local
1127 if (last == 0 || af > last)
1128 last = af;
1131 assert((first == 0) == (last == 0));
1156 /* Block everything above the last entry */
1162 SCMP_A0(SCMP_CMP_GT, last));
1166 /* Block everything between the first and last
/systemd/src/fsck/
H A Dfsck.c179 usec_t last = 0; local
227 if (last + 50 * USEC_PER_MSEC > t)
230 last = t;
/systemd/src/libudev/
H A Dlibudev-list.c102 /* insert entry into a list as the last element */
105 /* inserting before the list head make the node the last node in the list */
120 unsigned int first, last; local
123 last = list->entries_cur;
124 while (first < last) {
128 i = (first + last)/2;
131 last = i;
/systemd/src/shared/
H A Dcgroup-show.c129 _cleanup_free_ char *fn = NULL, *p1 = NULL, *last = NULL, *p2 = NULL; local
167 if (last) {
168 printf("%s%s%s\n", prefix, draw_special_char(DRAW_TREE_BRANCH), cg_unescape(basename(last)));
176 show_cgroup_by_path(last, p1, n_columns-2, kernel_threads, flags);
177 free(last);
180 last = k;
188 show_cgroup_one_by_path(path, prefix, n_columns, !!last, kernel_threads, flags);
190 if (last) {
191 printf("%s%s%s\n", prefix, draw_special_char(DRAW_TREE_RIGHT), cg_unescape(basename(last)));
199 show_cgroup_by_path(last, p
[all...]
/systemd/src/journal/
H A Djournal-verify.c495 uint64_t i, n, a, last, q; local
518 last = q = le64toh(o->data.entry_offset);
551 if (q <= last) {
555 last = q;
599 uint64_t last = 0, p; local
633 last = p;
637 if (last != le64toh(f->data_hash_table[i].tail_hash_offset)) {
732 uint64_t i = 0, a, n, last = 0; local
775 if (p <= last) {
779 last
[all...]
H A Djournalctl.c146 uint64_t last; member in struct:BootId
1004 /* We expect the journal to be on the last position of a boot
1008 * to the last location of the new boot by using a _BOOT_ID match
1038 /* Now seek to the last occurrence of this boot ID. */
1061 r = sd_journal_get_realtime_usec(j, &next_boot->last);
1086 * the last (and current) boot, while 1 is considered the
1199 format_timestamp_maybe_utc(b, sizeof(b), id->last));
1699 usec_t first = 0, validated = 0, last = 0; local
1706 k = journal_file_verify(f, arg_verify_key, &first, &validated, &last, true);
1722 format_timespan(c, sizeof(c), last > validate
[all...]
/systemd/src/bus-proxyd/
H A Dbus-xml-policy.c907 char *n, **nv, *last = NULL; local
917 last = n;
924 last = *nv;
934 dbus_to_kernel ? "dbus-1 to kernel" : "kernel to dbus-1", uid, gid, bus_message_type_to_string(message_type), strna(last),
977 char *n, **nv, *last = NULL; local
987 last = n;
994 last = *nv;
1003 *out_used_name = last;
1007 dbus_to_kernel ? "dbus-1 to kernel" : "kernel to dbus-1", uid, gid, bus_message_type_to_string(message_type), strna(last),
/systemd/src/resolve/
H A Dresolved-dns-packet.c1675 DnsTxtItem *last = NULL; local
1693 LIST_INSERT_AFTER(items, rr->txt.items, last, i);
1694 last = i;
/systemd/src/analyze/
H A Danalyze.c757 bool last, struct unit_times *times, struct boot_times *boot) {
764 printf("%s", draw_special_char(last ? DRAW_TREE_RIGHT : DRAW_TREE_BRANCH));
756 list_dependencies_print(const char *name, unsigned int level, unsigned int branches, bool last, struct unit_times *times, struct boot_times *boot) argument
/systemd/src/systemctl/
H A Dsystemctl.c1002 usec_t *last) {
1009 assert(last);
1019 last);
1021 return log_error_errno(r, "Failed to get last trigger time: %s", bus_error_message(&error, r));
1215 usec_t m, last = 0; local
1228 get_last_trigger(bus, u->unit_path, &last);
1241 .last_trigger = last,
1461 static int list_dependencies_print(const char *name, int level, unsigned int branches, bool last) { argument
1484 printf("%s", draw_special_char(last ? DRAW_TREE_RIGHT : DRAW_TREE_BRANCH));
3473 bool last local
999 get_last_trigger( sd_bus *bus, const char *path, usec_t *last) argument
[all...]

Completed in 116 milliseconds