Home
last modified time | relevance | path

Searched refs:poll_time (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dclnt_dg.c276 struct timeval poll_time; in clnt_dg_call() local
368 while (poll_time.tv_usec < 0) { in clnt_dg_call()
369 poll_time.tv_usec += 1000000; in clnt_dg_call()
370 poll_time.tv_sec--; in clnt_dg_call()
373 if (poll_time.tv_sec < 0 || (poll_time.tv_sec == 0 && in clnt_dg_call()
374 poll_time.tv_usec == 0)) { in clnt_dg_call()
385 poll_time = retransmit_time; in clnt_dg_call()
427 poll_time.tv_sec++; in clnt_dg_call()
431 poll_time.tv_sec--; in clnt_dg_call()
437 if (poll_time.tv_sec > 0 || in clnt_dg_call()
[all …]
H A Dclnt_vc.c1125 int poll_time; in read_vc() local
1155 poll_time = ct->ct_wait; in read_vc()
1200 switch (fds = poll(pfdp, npfd, poll_time)) { in read_vc()
1224 poll_time -= delta; in read_vc()
1225 if (poll_time < 0) { in read_vc()
/illumos-gate/usr/src/lib/fm/libseslog/common/
H A Dlibseslog.c611 long poll_time; in clear_log() local
631 poll_time = data->poll_time / 1000000000; in clear_log()
633 poll_time = poll_time + 300; in clear_log()
634 clear_data.timeout[0] = (poll_time & 0xff00) >> 8; in clear_log()
635 clear_data.timeout[1] = poll_time & 0xff; in clear_log()
H A Dlibseslog.h140 hrtime_t poll_time; /* nanosecond poll time, passed in */ member
/illumos-gate/usr/src/cmd/krb5/slave/
H A Dkpropd.c98 char *poll_time = NULL; variable
916 if (poll_time == NULL) { in do_iprop()
917 if ((poll_time = (char *)strdup("2m")) == NULL) { in do_iprop()
926 pollin = convert_polltime(poll_time); in do_iprop()
1129 if (poll_time) in do_iprop()
1130 free(poll_time); in do_iprop()
1370 poll_time = params.iprop_polltime;
/illumos-gate/usr/src/uts/common/io/nge/
H A Dnge.h622 uint64_t poll_time; member
/illumos-gate/usr/src/cmd/fm/modules/common/ses-log-transport/
H A Dses_log_transport.c809 lib_param->poll_time = slmp->slt_interval; in get_log()