/illumos-gate/usr/src/uts/common/ktli/ |
H A D | t_kspoll.c | 51 * 0 on timeout or no events(timout = 0), 88 clock_t timout; /* milliseconds */ local 102 timout = -1; 104 timout = TICK_TO_MSEC(timo); 119 error = kstrgetmsg(vp, NULL, NULL, &pri, &pflag, timout, &rval);
|
H A D | t_kutil.c | 95 clock_t timout; local 99 timout = 0; 101 timout = -1; 106 error = kstrgetmsg(vp, bp, NULL, &pri, &pflag, timout, &rval);
|
/illumos-gate/usr/src/cmd/bnu/ |
H A D | dkdial.c | 62 static SIGRTN timout(); /* Alarm signal handler */ 101 SigWas = signal(SIGALRM, timout); 167 ** timout() is the alarm clock signal handling routine. It is called 173 timout(arg) function 188 (void) signal(SIGALRM, timout);
|
/illumos-gate/usr/src/uts/common/rpc/sec/ |
H A D | authdesubr.c | 320 struct timeval timout; local 336 timout.tv_sec = 60; 337 timout.tv_usec = 0; 340 (caddr_t)&srvtime, timout);
|
H A D | auth_des.c | 434 struct timeval timout; local 436 timout.tv_sec = RTIME_TIMEOUT; 437 timout.tv_usec = 0; 438 if (rtime(synconfig, syncaddr, calltype, timep, &timout) < 0)
|
/illumos-gate/usr/src/uts/common/io/ |
H A D | l_strplumb.c | 161 clock_t timout; /* milliseconds */ local 188 timout = timeo->tv_sec * 1000 + timeo->tv_nsec / 1000000; 189 if (timout > INT_MAX) 192 timout = -1; 198 error = kstrgetmsg(vp, rmp, NULL, &pri, &pflag, timout, &rval);
|
/illumos-gate/usr/src/uts/common/fs/sockfs/ |
H A D | nl7c.c | 921 clock_t timout; local 952 timout = 0; 955 timout = nca_http_keep_alive_timeout; 958 timout = nca_http_timeout; 974 timout, &rval); 1005 if (timout > 0 || (first && pollin)) { 1040 timout = 0; 1042 timout = nca_http_keep_alive_timeout;
|
H A D | socktpi.c | 3078 clock_t timout; local 3233 timout = 0; 3235 timout = TICK_TO_MSEC(so->so_rcvtimeo); 3237 timout = -1; 3248 timout, &rval);
|
/illumos-gate/usr/src/uts/sun4/os/ |
H A D | mp_startup.c | 214 int timout; local 239 for (timout = CPU_WAKEUP_GRACE_MSEC; timout; timout--) { 244 if (timout == 0) {
|
/illumos-gate/usr/src/uts/common/nfs/ |
H A D | nfssys.h | 132 time_t timout; /* client handle life (asynch RPCs) */ member in struct:lm_svc_args 145 time32_t timout; /* client handle life (asynch RPCs) */ member in struct:lm_svc_args32
|
/illumos-gate/usr/src/cmd/fs.d/nfs/lockd/ |
H A D | lockd.c | 92 .timout = 5 * 60, 296 MyName, lmargs.debug, lmargs.timout,
|
/illumos-gate/usr/src/uts/common/fs/nfs/ |
H A D | nfs_sys.c | 251 lsa.timout = STRUCT_FGET(ulsa, timout);
|
H A D | nfs_dump.c | 475 clock_t timout = TIMEOUT * (retry + 1); local 482 while (!*eventp && ((ddi_get_lbolt() - start_bolt) < timout)) {
|
/illumos-gate/usr/src/uts/common/rpc/ |
H A D | clnt_cots.c | 1185 clock_t timout; local 1194 timout = wait.tv_sec * drv_usectohz(1000000) + 1204 &call->call_lock, timout)) > 0 && 1210 &call->call_lock, timout)) > 0 && 1707 clock_t timout, cv_stat; local 1727 timout = waitp->tv_sec * drv_usectohz(1000000) + 1732 &connmgr_lock, timout)) > 0 && 1737 &connmgr_lock, timout)) > 0 && 2475 clock_t timout; local 2481 timout 3714 clock_t timout; local [all...] |
H A D | clnt_clts.c | 478 clock_t ori_timout, timout; local 490 timout = TIMEVAL_TO_TICK(&wait); 491 ori_timout = timout; 636 clock_t cv_timout = timout; 959 timout = backoff(timout); 961 p->cku_timeall->rt_rtxcur = timout;
|
H A D | rpcib.c | 2180 clock_t timout, cv_wait_ret; local 2190 timout = drv_usectohz(SEND_WAIT_TIME * 1000000) + 2195 &wd->sendwait_lock, timout)) > 0 && 2210 &wd->sendwait_lock, timout)) > 0 && 2669 clock_t timout, cv_wait_ret; local 2688 timout = ddi_get_lbolt() + 2692 &qp->replylist_lock, timout)) > 0 && 4223 clock_t cv_stat, timout; local 4283 timout = ddi_get_lbolt() + 4286 &cn->c_lock, timout)) > [all...] |
/illumos-gate/usr/src/uts/common/os/ |
H A D | aio.c | 414 timeval2reltime(struct timeval *timout, timestruc_t *rqtime, argument 424 if (timout == NULL) { /* wait indefinitely */ 434 if ((intptr_t)timout == (intptr_t)-1) { /* don't wait */ 439 if (copyin(timout, &wait_time, sizeof (wait_time))) 448 if ((intptr_t)timout == (intptr_t)((uint32_t)-1)) { 453 if (copyin(timout, &wait_time_32, sizeof (wait_time_32))) 477 timespec2reltime(timespec_t *timout, timestruc_t *rqtime, argument 486 if (timout == NULL) { 492 if (copyin(timout, rqtime, sizeof (*rqtime))) 497 if (copyin(timout, 520 aiowait( struct timeval *timout, int dontblockflg, long *rval) argument 608 aiowaitn(void *uiocb, uint_t nent, uint_t *nwait, timespec_t *timout) argument 893 aiosuspend( void *aiocb, int nent, struct timespec *timout, int flag, long *rval, int run_mode) argument [all...] |
H A D | driver_lyr.c | 2184 clock_t timout; /* milliseconds */ local 2198 timout = timeo->tv_sec * 1000 + timeo->tv_nsec / 1000000; 2199 if (timout > INT_MAX) 2202 timout = -1; 2209 rmp, NULL, &pri, &pflag, timout, &rval);
|
H A D | strsubr.c | 2999 strwaitq(stdata_t *stp, int flag, ssize_t count, int fmode, clock_t timout, argument 3094 rval = str_cv_wait(sleepon, &stp->sd_lock, timout, flag & STR_NOSIG);
|
/illumos-gate/usr/src/uts/common/klm/ |
H A D | klmmod.c | 271 g->cn_idle_tmo = args->timout;
|
/illumos-gate/usr/src/uts/common/io/lvm/md/ |
H A D | md_med.c | 930 struct timeval *timout 960 outproc, out, *timout); 973 if (timout == 0) { 975 * We will always time out when timout == 0. 1027 struct timeval *timout 1114 in, outproc, out, timout);
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_capture.c | 751 strioctl(int fd, int cmd, int timout, int len, void *dp) argument 757 sioc.ic_timout = timout;
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ |
H A D | in.rarpd.c | 983 strioctl(int fd, int cmd, int timout, int len, char *dp) argument 988 si.ic_timout = timout;
|
/illumos-gate/usr/src/common/net/wanboot/ |
H A D | boot_http.c | 428 http_set_socket_read_timeout(http_handle_t handle, uint_t timout) argument 435 c_id->read_timeout = (timout) ? timout : DEFAULT_TIMEOUT;
|
/illumos-gate/usr/src/uts/common/io/scsi/targets/ |
H A D | st.c | 9598 clock_t timout; local 9871 timout = ST_STATUS_BUSY_TIMEOUT; 9876 timout = ST_TRAN_BUSY_TIMEOUT; 9891 if (st_handle_intr_busy(un, bp, timout) == 0) 17051 int timout = ST_TRAN_BUSY_TIMEOUT; /* short (default) timeout */ local 17144 timout = ST_STATUS_BUSY_TIMEOUT; 17162 if (st_handle_intr_busy(un, bp, timout) == 0) {
|