Home
last modified time | relevance | path

Searched refs:timo (Results 1 – 25 of 90) sorted by relevance

1234

/freebsd/sys/nlm/
H A Dnlm_prot_clnt.c22 timo)); in nlm_sm_notify_0()
31 timo)); in nlm_test_1()
40 timo)); in nlm_lock_1()
49 timo)); in nlm_cancel_1()
58 timo)); in nlm_unlock_1()
67 timo)); in nlm_granted_1()
76 timo)); in nlm_test_msg_1()
85 timo)); in nlm_lock_msg_1()
94 timo)); in nlm_cancel_msg_1()
103 timo)); in nlm_unlock_msg_1()
[all …]
H A Dnlm_advlock.c76 rpcvers_t vers, struct timeval *timo, int retries,
80 rpcvers_t vers, struct timeval *timo, int retries,
84 rpcvers_t vers, struct timeval *timo, int retries,
205 struct timeval timo; in nlm_advlock_internal() local
311 error = nlm_clearlock(host, &ext, vers, &timo, in nlm_advlock_internal()
324 &timo, retries, vp, F_SETLK, fl, in nlm_advlock_internal()
567 struct rpc_callextra *ext, struct timeval timo) in nlm_test_rpc() argument
570 return nlm4_test_4(args, res, client, ext, timo); in nlm_test_rpc()
598 struct rpc_callextra *ext, struct timeval timo) in nlm_lock_rpc() argument
601 return nlm4_lock_4(args, res, client, ext, timo); in nlm_lock_rpc()
[all …]
H A Dnlm_prot_impl.c336 struct timeval timo; in nlm_get_rpc() local
394 timo.tv_sec = 25; in nlm_get_rpc()
395 timo.tv_usec = 0; in nlm_get_rpc()
1151 struct timeval timo; in nlm_host_unmonitor() local
1168 timo.tv_sec = 25; in nlm_host_unmonitor()
1169 timo.tv_usec = 0; in nlm_host_unmonitor()
1196 struct timeval timo; in nlm_host_monitor() local
1233 timo.tv_sec = 25; in nlm_host_monitor()
1234 timo.tv_usec = 0; in nlm_host_monitor()
1626 timo.tv_sec = 25; in nlm_server_main()
[all …]
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dcondvar.h114 cv_timedwait(kcondvar_t *cvp, kmutex_t *mp, clock_t timo) in cv_timedwait() argument
118 timo -= ddi_get_lbolt(); in cv_timedwait()
119 if (timo <= 0) in cv_timedwait()
122 tick_sbt * (timo), 0, C_HARDCLOCK); in cv_timedwait()
129 cv_timedwait_sig(kcondvar_t *cvp, kmutex_t *mp, clock_t timo) in cv_timedwait_sig() argument
133 timo -= ddi_get_lbolt(); in cv_timedwait_sig()
134 if (timo <= 0) in cv_timedwait_sig()
137 tick_sbt * (timo), 0, C_HARDCLOCK); in cv_timedwait_sig()
/freebsd/sys/sys/
H A Dlockmgr.h71 const char *wmesg, int prio, int timo, const char *file, int line);
88 void lockinit(struct lock *lk, int prio, const char *wmesg, int timo,
102 int prio, int timo, const char *file, int line) in _lockmgr_args() argument
106 NULL, wmesg, prio, timo, file, line)); in _lockmgr_args()
111 const char *wmesg, int prio, int timo, const char *file, int line) in _lockmgr_args_rw() argument
115 NULL, wmesg, prio, timo, file, line)); in _lockmgr_args_rw()
125 #define lockmgr_args(lk, flags, ilk, wmesg, prio, timo) \ argument
126 _lockmgr_args((lk), (flags), (ilk), (wmesg), (prio), (timo), \
128 #define lockmgr_args_rw(lk, flags, ilk, wmesg, prio, timo) \ argument
129 _lockmgr_args_rw((lk), (flags), (ilk), (wmesg), (prio), (timo), \
H A Dcondvar.h68 #define cv_timedwait(cvp, lock, timo) \ argument
70 tick_sbt * (timo), 0, C_HARDCLOCK)
73 #define cv_timedwait_sig(cvp, lock, timo) \ argument
75 tick_sbt * (timo), 0, C_HARDCLOCK)
H A Dsema.h50 int _sema_timedwait(struct sema *sema, int timo, const char *file, int
57 #define sema_timedwait(sema, timo) \ argument
58 _sema_timedwait((sema), (timo), LOCK_FILE, LOCK_LINE)
H A Dsystm.h464 #define msleep(chan, mtx, pri, wmesg, timo) \ argument
466 tick_sbt * (timo), 0, C_HARDCLOCK)
472 #define msleep_spin(chan, mtx, wmesg, timo) \ argument
473 msleep_spin_sbt((chan), (mtx), (wmesg), tick_sbt * (timo), \
478 pause(const char *wmesg, int timo) in pause() argument
480 return (pause_sbt(wmesg, tick_sbt * timo, 0, C_HARDCLOCK)); in pause()
482 #define pause_sig(wmesg, timo) \ argument
483 pause_sbt((wmesg), tick_sbt * (timo), 0, C_HARDCLOCK | C_CATCH)
484 #define tsleep(chan, pri, wmesg, timo) \ argument
485 _sleep((chan), NULL, (pri), (wmesg), tick_sbt * (timo), \
H A Dsleepqueue.h106 #define sleepq_set_timeout(wchan, timo) \ argument
107 sleepq_set_timeout_sbt((wchan), tick_sbt * (timo), 0, C_HARDCLOCK)
/freebsd/sys/dev/ipmi/
H A Dipmi_opal.c82 opal_ipmi_recv(struct opal_ipmi_softc *sc, uint64_t *msg_len, int timo) in opal_ipmi_recv() argument
86 if (timo == 0) in opal_ipmi_recv()
87 timo = MAX_TIMEOUT; in opal_ipmi_recv()
88 timo *= 10; /* Timeout is in milliseconds, we delay in 100us */ in opal_ipmi_recv()
100 if (timo-- <= 0) { in opal_ipmi_recv()
146 int timo) in opal_ipmi_polled_request() argument
195 if ((err = opal_ipmi_recv(sc, &msg_len, timo)) == 0) { in opal_ipmi_polled_request()
252 int timo) in opal_ipmi_driver_request() argument
259 err = opal_ipmi_polled_request(sc, req, timo); in opal_ipmi_driver_request()
/freebsd/usr.sbin/lpr/common_source/
H A Dnet.c90 int s, timo = 1, lport = IPPORT_RESERVED - 1; in getport() local
123 if (refused && timo <= 16) { in getport()
124 sleep(timo); in getport()
125 timo *= 2; in getport()
155 if (refused && timo <= 16) { in getport()
156 sleep(timo); in getport()
157 timo *= 2; in getport()
/freebsd/sys/fs/nfs/
H A Dnfs_commonkrpc.c266 struct timeval timo; in newnfs_connect() local
422 timo.tv_sec = 10; in newnfs_connect()
423 timo.tv_usec = 0; in newnfs_connect()
425 &timo); in newnfs_connect()
461 if (timo.tv_sec < 10) in newnfs_connect()
462 timo.tv_sec = 10; in newnfs_connect()
463 timo.tv_usec = 0; in newnfs_connect()
680 struct timeval timo; in newnfs_request() local
926 timo.tv_usec = 0; in newnfs_request()
933 timo.tv_usec = 0; in newnfs_request()
[all …]
/freebsd/sys/dev/speaker/
H A Dspkr.c65 int timo; in tone() local
88 timo = centisecs * hz / 100; in tone()
89 if (timo > 0) in tone()
90 tsleep(&endtone, SPKRPRI | PCATCH, "spkrtn", timo); in tone()
100 int timo; in rest() local
110 timo = centisecs * hz / 100; in rest()
111 if (timo > 0) in rest()
112 tsleep(&endrest, SPKRPRI | PCATCH, "spkrrs", timo); in rest()
/freebsd/sys/kern/
H A Dkern_umtx.c682 kern_clock_gettime(curthread, timo->clockid, &timo->cur); in umtx_abs_timeout_init()
683 timespecadd(&timo->cur, timeout, &timo->end); in umtx_abs_timeout_init()
784 kern_clock_gettime(curthread, timo->clockid, &timo->cur); in umtx_abs_timeout_getsbt()
785 if (timespeccmp(&timo->end, &timo->cur, <=)) in umtx_abs_timeout_getsbt()
787 timespecsub(&timo->end, &timo->cur, &tts); in umtx_abs_timeout_getsbt()
826 if (timo != NULL) { in umtxq_sleep()
1004 &timo); in do_lock_umtx()
1505 NULL : &timo); in do_lock_normal()
2634 NULL : &timo); in do_lock_pp()
3750 &timo.cur); in do_sem2_wait()
[all …]
/freebsd/sys/dev/acpica/Osd/
H A DOsdSchedule.c247 int timo; in AcpiOsSleep() local
251 timo = Milliseconds * hz / 1000; in AcpiOsSleep()
257 if (timo > 0) in AcpiOsSleep()
258 pause("acpislp", timo); in AcpiOsSleep()
/freebsd/sys/powerpc/powermac/
H A Dkiic.c355 int i, x, timo, err; in kiic_transfer() local
360 timo = 100; in kiic_transfer()
366 mtx_sleep(dev, &sc->sc_mutex, 0, "kiic", timo); in kiic_transfer()
396 timo = 1000 + sc->sc_resid * 200; in kiic_transfer()
397 timo += 100000; in kiic_transfer()
413 err = mtx_sleep(dev, &sc->sc_mutex, 0, "kiic", timo); in kiic_transfer()
/freebsd/sys/nfs/
H A Dkrpc_subr.c201 int error, rcvflg, timo, secs, len; in krpc_call() local
307 timo = 0; in krpc_call()
320 if (timo < MAX_RESEND_DELAY) in krpc_call()
321 timo++; in krpc_call()
335 secs = timo; in krpc_call()
/freebsd/libexec/phttpget/
H A Dphttpget.c53 static struct timeval timo = { 15, 0}; variable
193 timo.tv_sec = http_timeout; in readenv()
369 (void *)&timo, (socklen_t)sizeof(timo)); in main()
371 (void *)&timo, (socklen_t)sizeof(timo)); in main()
/freebsd/sys/kgssapi/
H A Dgss_impl.c122 struct timeval timo; in sys_gssd_syscall() local
130 timo.tv_sec = 5 * 60; in sys_gssd_syscall()
131 timo.tv_usec = 0; in sys_gssd_syscall()
132 CLNT_CONTROL(cl, CLSET_TIMEOUT, &timo); in sys_gssd_syscall()
/freebsd/sys/dev/usb/net/
H A Dusb_ethernet.h101 #define uether_do_request(ue,req,data,timo) \ argument
102 usbd_do_request_proc((ue)->ue_udev,&(ue)->ue_tq,req,data,0,NULL,timo)
/freebsd/sys/fs/nfsclient/
H A Dnfs_clnfsiod.c247 int myiod, timo; in nfssvc_iod() local
268 timo = (myiod < nfs_iodmin) ? 0 : nfs_iodmaxidle * hz; in nfssvc_iod()
270 "-", timo); in nfssvc_iod()
/freebsd/lib/libcompat/4.3/
H A Drexec.c295 int s, timo = 1, s3; in rexec() local
317 if (errno == ECONNREFUSED && timo <= 16) { in rexec()
319 sleep(timo); in rexec()
320 timo *= 2; in rexec()
/freebsd/sys/dev/hpt27xx/
H A Dos_bsd.h198 … __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int timo) in hpt_sleep() argument
200 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo); in hpt_sleep()
/freebsd/sys/dev/hptnr/
H A Dos_bsd.h202 … __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int timo) in hpt_sleep() argument
204 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo); in hpt_sleep()
/freebsd/sys/dev/hptrr/
H A Dos_bsd.h203 … __inline int hpt_sleep(PVBUS_EXT vbus_ext, void *ident, int priority, const char *wmesg, int timo) in hpt_sleep() argument
205 return msleep(ident, &vbus_ext->lock, priority, wmesg, timo); in hpt_sleep()

1234