Home
last modified time | relevance | path

Searched refs:next_elapse (Results 1 – 5 of 5) sorted by relevance

/systemd-251/src/systemctl/
Dsystemctl-list-units.c578 usec_t next_elapse; member
593 r = CMP(a->next_elapse, b->next_elapse); in timer_info_compare()
634 TABLE_TIMESTAMP, t->next_elapse, in output_timers_list()
635 TABLE_TIMESTAMP_RELATIVE, t->next_elapse, in output_timers_list()
666 usec_t next_elapse; in calc_next_elapse() local
680 next_elapse = MIN(converted, next->realtime); in calc_next_elapse()
682 next_elapse = converted; in calc_next_elapse()
685 next_elapse = next->realtime; in calc_next_elapse()
687 return next_elapse; in calc_next_elapse()
746 .next_elapse = m, in verb_list_timers()
Dsystemctl-show.c479 usec_t next_elapse; in print_status_info() local
482 next_elapse = calc_next_elapse(&nw, &next); in print_status_info()
484 if (timestamp_is_set(next_elapse)) in print_status_info()
486 FORMAT_TIMESTAMP_STYLE(next_elapse, arg_timestamp_style), in print_status_info()
487 FORMAT_TIMESTAMP_RELATIVE(next_elapse)); in print_status_info()
1251 uint64_t v, next_elapse; in print_property() local
1257 while ((r = sd_bus_message_read(m, "(stt)", &base, &v, &next_elapse)) > 0) in print_property()
1262 strna(FORMAT_TIMESPAN(next_elapse, 0))); in print_property()
1274 uint64_t next_elapse; in print_property() local
1280 … while ((r = sd_bus_message_read(m, "(sst)", &base, &spec, &next_elapse)) > 0) in print_property()
[all …]
/systemd-251/src/core/
Dtimer.c411 r = calendar_spec_next_usec(v->calendar_spec, b, &v->next_elapse); in timer_enter_waiting()
421 if (v->next_elapse < rebased) in timer_enter_waiting()
422 v->next_elapse = rebased; in timer_enter_waiting()
425 t->next_elapse_realtime = v->next_elapse; in timer_enter_waiting()
427 … t->next_elapse_realtime = MIN(t->next_elapse_realtime, v->next_elapse); in timer_enter_waiting()
475 …v->next_elapse = usec_add(usec_shift_clock(base, CLOCK_MONOTONIC, TIMER_MONOTONIC_CLOCK(t)), v->va… in timer_enter_waiting()
479 … v->next_elapse < triple_timestamp_by_clock(&ts, TIMER_MONOTONIC_CLOCK(t)) && in timer_enter_waiting()
487 t->next_elapse_monotonic_or_boottime = v->next_elapse; in timer_enter_waiting()
489 … t->next_elapse_monotonic_or_boottime = MIN(t->next_elapse_monotonic_or_boottime, v->next_elapse); in timer_enter_waiting()
Dtimer.h26 usec_t next_elapse; member
Ddbus-timer.c53 r = sd_bus_message_append(reply, "(stt)", buf, v->value, v->next_elapse); in property_get_monotonic_timers()
91 … r = sd_bus_message_append(reply, "(sst)", timer_base_to_string(v->base), buf, v->next_elapse); in property_get_calendar_timers()