Searched defs:nw (Results 1 - 6 of 6) sorted by relevance

/systemd/src/libsystemd/sd-login/
H A Dtest-login.c233 usec_t timeout, nw; local
241 nw = now(CLOCK_MONOTONIC);
245 timeout > nw ? (int) ((timeout - nw) / 1000) :
/systemd/src/shared/
H A Dptyfwd.c94 usec_t nw = now(CLOCK_MONOTONIC); local
96 if (f->escape_counter == 0 || nw > f->escape_timestamp + ESCAPE_USEC) {
97 f->escape_timestamp = nw;
/systemd/src/bus-proxyd/
H A Dproxy.c419 usec_t nw; local
421 nw = now(CLOCK_MONOTONIC);
422 if (t > nw)
423 t -= nw;
/systemd/src/libsystemd/sd-netlink/
H A Dsd-netlink.c470 usec_t nw; local
471 nw = now(CLOCK_MONOTONIC);
472 m = until > nw ? until - nw : 0;
/systemd/src/libsystemd/sd-bus/
H A Dsd-bus.c2854 usec_t nw; local
2855 nw = now(CLOCK_MONOTONIC);
2856 m = until > nw ? until - nw : 0;
/systemd/src/systemctl/
H A Dsystemctl.c1162 static usec_t calc_next_elapse(dual_timestamp *nw, dual_timestamp *next) { argument
1165 assert(nw);
1171 if (next->monotonic > nw->monotonic)
1172 converted = nw->realtime + (next->monotonic - nw->monotonic);
1174 converted = nw->realtime - (nw->monotonic - next->monotonic);
1196 dual_timestamp nw; local
1210 dual_timestamp_get(&nw);
1235 m = calc_next_elapse(&nw,
[all...]

Completed in 722 milliseconds