Symbol: monotime
crypto/openssh/channels.c
1317
monotime() >= sc->x11_refuse_time) {
crypto/openssh/channels.c
1857
c->notbefore = monotime() + 1;
crypto/openssh/channels.c
1986
c->notbefore = monotime() + 1;
crypto/openssh/channels.c
2022
c->notbefore = monotime() + 1;
crypto/openssh/channels.c
2508
c->notbefore = monotime() + 1;
crypto/openssh/channels.c
2608
now = monotime();
crypto/openssh/channels.c
389
ssh->chanctxt->lastused = monotime();
crypto/openssh/channels.c
5359
return lastused != 0 && monotime() > lastused + 1;
crypto/openssh/clientloop.c
1622
if (monotime() >= control_persist_exit_time) {
crypto/openssh/clientloop.c
1783
if (x11_refuse_time != 0 && monotime() >= x11_refuse_time) {
crypto/openssh/clientloop.c
258
control_persist_exit_time = monotime() +
crypto/openssh/clientloop.c
379
now = monotime() + 1;
crypto/openssh/clientloop.c
491
server_alive_time = monotime() + options.server_alive_interval;
crypto/openssh/clientloop.c
754
monotime() >= server_alive_time) {
crypto/openssh/misc.h
98
time_t monotime(void);
crypto/openssh/moduli.c
543
time_now = monotime();
crypto/openssh/packet.c
1076
(int64_t)state->rekey_time + state->rekey_interval <= monotime())
crypto/openssh/packet.c
1394
state->rekey_time = monotime();
crypto/openssh/packet.c
2299
monotime();
crypto/openssh/packet.c
2572
state->rekey_time = monotime();
crypto/openssh/regress/unittests/misc/test_ptimeout.c
72
ptimeout_deadline_monotime(&pt, monotime() + 100);
crypto/openssh/regress/unittests/misc/test_ptimeout.c
83
ptimeout_deadline_monotime(&pt, monotime() + 100);
crypto/openssh/regress/unittests/misc/test_ptimeout.c
84
ptimeout_deadline_monotime(&pt, monotime() - 100);
crypto/openssh/serverloop.c
163
now = monotime();
crypto/openssh/serverloop.c
231
now = monotime(); /* need to reset after ppoll() */
crypto/openssh/srclimit.c
280
now = monotime();
crypto/openssh/srclimit.c
400
now = monotime();
crypto/openssh/srclimit.c
471
now = monotime();
crypto/openssh/ssh-agent.c
1077
time_t deadline = 0, now = monotime();
crypto/openssh/ssh-agent.c
1331
*deathp = monotime() + seconds;
crypto/openssh/ssh-agent.c
1446
death = monotime() + lifetime;
crypto/openssh/ssh-agent.c
1634
death = monotime() + lifetime;
tools/test/gpioevents/gpioevents.c
157
struct timespec monotime, utctime;
tools/test/gpioevents/gpioevents.c
159
clock_gettime(CLOCK_MONOTONIC, &monotime);
tools/test/gpioevents/gpioevents.c
161
timespecsub(&utctime, &monotime, &utc_offset);