Home
last modified time | relevance | path

Searched refs:intvl (Results 1 – 10 of 10) sorted by relevance

/titanic_50/usr/src/cmd/sendmail/src/
H A Dconvtime.c125 pintvl(intvl, brief) in pintvl() argument
126 time_t intvl; in pintvl()
133 if (intvl == 0 && !brief)
135 if (intvl == NOW)
139 se = intvl % 60;
140 intvl /= 60;
141 mi = intvl % 60;
142 intvl /= 60;
143 hr = intvl % 24;
144 intvl /= 24;
[all …]
/titanic_50/usr/src/cmd/sendmail/libsm/
H A Dclock.c66 sm_seteventm(intvl, func, arg) in sm_seteventm() argument
67 int intvl; in sm_seteventm()
79 return sm_sigsafe_seteventm(intvl, func, arg);
89 sm_sigsafe_seteventm(intvl, func, arg) in sm_sigsafe_seteventm() argument
90 int intvl; in sm_sigsafe_seteventm()
105 if (intvl <= 0)
110 ival.tv_sec = intvl / 1000;
111 ival.tv_usec = (intvl - ival.tv_sec * 1000) * 10;
117 nowi = now + (time_t)(intvl / 1000);
177 intvl = SmEventQueue->ev_time - now;
[all …]
/titanic_50/usr/src/uts/sun4u/excalibur/io/
H A Dxcalwd.c58 int intvl; member
265 tsp->intvl = 0; in xcalwd_attach()
403 int intvl; in xcalwd_ioctl() local
438 if (ddi_copyin((void *)arg, &intvl, sizeof (intvl), flag)) in xcalwd_ioctl()
440 if (intvl == 0) in xcalwd_ioctl()
444 o_intvl = tsp->intvl; in xcalwd_ioctl()
456 tsp->intvl = intvl; in xcalwd_ioctl()
459 drv_usectohz(1000000) * tsp->intvl); in xcalwd_ioctl()
476 drv_usectohz(1000000) * tsp->intvl); in xcalwd_ioctl()
H A Dxcalppm.c411 clock_t intvl; in xcppm_blink_led() local
422 intvl = PPM_LEDOFF_INTERVAL; in xcppm_blink_led()
426 intvl = PPM_LEDON_INTERVAL; in xcppm_blink_led()
431 intvl); in xcppm_blink_led()
/titanic_50/usr/src/uts/common/inet/sctp/
H A Dsctp_asconf.h32 #define SCTP_FADDR_RC_TIMER_RESTART(sctp, fp, intvl) \ argument
41 (int)(intvl))); \
42 sctp_timer((sctp), (fp)->sf_rc_timer_mp, (intvl)); \
H A Dsctp_impl.h144 #define SCTP_FADDR_TIMER_RESTART(sctp, fp, intvl) \ argument
147 (void *)(fp), SCTP_PRINTADDR((fp)->sf_faddr), (int)(intvl))); \
148 sctp_timer((sctp), (fp)->sf_timer_mp, (intvl)); \
/titanic_50/usr/src/cmd/csh/
H A Dsh.c1093 int intvl, cnt; in mailchk() local
1103 intvl = (cnt && number(*vp)) ? (--cnt, getn(*vp++)) : MAILINTVL; in mailchk()
1104 if (intvl < 1) in mailchk()
1105 intvl = 1; in mailchk()
1106 if (chktim + intvl > t) in mailchk()
/titanic_50/usr/src/uts/common/inet/
H A Dtcp_impl.h129 #define TCP_TIMER_RESTART(tcp, intvl) { \ argument
132 (tcp)->tcp_timer_tid = TCP_TIMER((tcp), tcp_timer, (intvl)); \
/titanic_50/usr/src/uts/common/io/ppm/
H A Dppm.c2553 clock_t intvl; in ppm_blink_led() local
2566 intvl = PPM_LEDOFF_INTERVAL; in ppm_blink_led()
2569 intvl = PPM_LEDON_INTERVAL; in ppm_blink_led()
2572 unitp->led_tid = timeout(ppm_blink_led, domp, intvl); in ppm_blink_led()
/titanic_50/usr/src/stand/lib/tcp/
H A Dtcp.c276 #define TCP_TIMER_RESTART(tcp, intvl) \ argument
277 (tcp)->tcp_rto_timeout = prom_gettime() + intvl; \