Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libnsl/rpc/
H A Dclnt_dg.c275 struct timeval poll_time; in clnt_dg_call() local
365 poll_time.tv_sec = timeout.tv_sec - time_waited.tv_sec; in clnt_dg_call()
366 poll_time.tv_usec = timeout.tv_usec - time_waited.tv_usec; in clnt_dg_call()
367 while (poll_time.tv_usec < 0) { in clnt_dg_call()
368 poll_time.tv_usec += 1000000; in clnt_dg_call()
369 poll_time.tv_sec--; in clnt_dg_call()
372 if (poll_time.tv_sec < 0 || (poll_time.tv_sec == 0 && in clnt_dg_call()
373 poll_time.tv_usec == 0)) { in clnt_dg_call()
381 if (poll_time.tv_sec > retransmit_time.tv_sec || in clnt_dg_call()
382 (poll_time.tv_sec == retransmit_time.tv_sec && in clnt_dg_call()
[all …]
H A Dclnt_vc.c1164 int poll_time; in read_vc() local
1194 poll_time = ct->ct_wait; in read_vc()
1239 switch (fds = poll(pfdp, npfd, poll_time)) { in read_vc()
1263 poll_time -= delta; in read_vc()
1264 if (poll_time < 0) { in read_vc()
/titanic_50/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
/titanic_50/usr/src/cmd/picl/plugins/sun4u/snowbird/lib/libctsmc/
H A Dlibctsmc.c114 int poll_time) in smc_send_local_cmd() argument
129 poll_rc = poll(poll_fds, 1, poll_time); in smc_send_local_cmd()
211 int poll_time) in smc_send_ipmi_message() argument
259 result = poll(&fds, 1, poll_time); in smc_send_ipmi_message()
383 int poll_time) in smc_send_msg() argument
414 rc = smc_send_local_cmd(fd, req_msg, rsp_msg, poll_time); in smc_send_msg()
456 rc = smc_send_ipmi_message(fd, req_msg, rsp_msg, poll_time); in smc_send_msg()
H A Dsmclib.h63 sc_rspmsg_t *rsp_pkt, int poll_time);
/titanic_50/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;
/titanic_50/usr/src/uts/common/io/nge/
H A Dnge.h622 uint64_t poll_time; member
/titanic_50/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()