Searched refs:timo (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dpselect.c64 fd_set * __restrict efds, const struct timespec * __restrict timo,
71 if (timo) {
72 TIMESPEC_TO_TIMEVAL(&tvtimo, timo);
63 __pselect(int count, fd_set * __restrict rfds, fd_set * __restrict wfds, fd_set * __restrict efds, const struct timespec * __restrict timo, const sigset_t * __restrict mask) argument
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_synch.c321 int timo,
326 if (timo)
327 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
366 int timo)
370 if (timo)
371 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
380 int timo,
385 if (timo)
386 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
316 msleep0( void *chan, lck_mtx_t *mtx, int pri, const char *wmsg, int timo, int (*continuation)(int)) argument
362 tsleep( void *chan, int pri, const char *wmsg, int timo) argument
376 tsleep0( void *chan, int pri, const char *wmsg, int timo, int (*continuation)(int)) argument
H A Dtty.c1977 long slp = 0; /* XXX this should be renamed `timo'. */
3024 * timo Timeout for the sleep
3032 * msleep0:EWOULDBLOCK Timeout (timo) already expired
3042 ttysleep(struct tty *tp, void *chan, int pri, const char *wmesg, int timo) argument
3050 /* Use of msleep0() avoids conversion timo/timespec/timo */
3051 error = msleep0(chan, &tp->t_lock, pri, wmesg, timo, (int (*)(int))0);
/macosx-10.10.1/screen-22/screen/
H A Dsched.c238 SetTimeout(ev, timo)
240 int timo;
243 debug2("event %x new timeout %d ms\n", ev, timo);
245 ev->timeout.tv_sec += timo / 1000;
246 ev->timeout.tv_usec += (timo % 1000) * 1000;
/macosx-10.10.1/remote_cmds-47/rlogin.tproj/
H A Dkcmd.c108 int s, timo = 1, pid; local
169 if (errno == ECONNREFUSED && timo <= 4) {
170 /* sleep(timo); don't wait at all here */
171 timo *= 2;
/macosx-10.10.1/xnu-2782.1.97/bsd/nfs/
H A Dkrpc_subr.c218 int error, timo, secs; local
360 timo = 0;
383 if (timo < MAX_RESEND_DELAY)
384 timo++;
390 * Wait for up to timo seconds for a reply.
393 secs = timo;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/uwin/
H A Drcmd.c98 int s, timo = 1; local
183 if (errno == ECONNREFUSED && timo <= 16) {
184 sleep(timo);
185 timo *= 2;
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dproc.h304 extern int tsleep(void *chan, int pri, const char *wmesg, int timo);
305 extern int msleep1(void *chan, lck_mtx_t *mtx, int pri, const char *wmesg, u_int64_t timo);
H A Dproc_internal.h728 extern int tsleep0(void *chan, int pri, const char *wmesg, int timo, int (*continuation)(int));
730 extern int msleep0(void *chan, lck_mtx_t *mtx, int pri, const char *wmesg, int timo, int (*continuation)(int));
/macosx-10.10.1/Libinfo-459/util.subproj/
H A Drcmd.c125 int s, aport, lport, timo, error; local
160 for (timo = 1, lport = IPPORT_RESERVED - 1;;) {
187 if (ai->ai_next == NULL && (!refused || timo > 16)) {
207 /* refused && timo <= 16 */
210 time_to_sleep.tv_sec = timo;
213 timo *= 2;
/macosx-10.10.1/smb-759.0/kernel/netsmb/
H A Dsmb_rq.h217 int smb_rq_simple_timed(struct smb_rq *rqp, int timo);
H A Dsmb_conn.h512 int smb1_echo(struct smb_vc *vcp, int timo, uint32_t EchoCount,
H A Dsmb_rq.c439 smb_rq_simple_timed(struct smb_rq *rqp, int timo) argument
443 rqp->sr_timo = timo; /* in seconds */
754 * TODO: timo
876 * TODO: timo
H A Dsmb_smb.c1919 smb1_echo(struct smb_vc *vcp, int timo, uint32_t EchoCount, argument
1936 error = smb_rq_simple_timed(rqp, timo);
/macosx-10.10.1/network_cmds-457/rtadvd.tproj/
H A Dconfig.c949 struct timeval timo; local
971 timo.tv_sec = prefix_timo;
972 timo.tv_usec = 0;
973 rtadvd_set_timer(&timo, prefix->timer);
/macosx-10.10.1/smb-759.0/kernel/smbfs/
H A Dsmbfs_subr_2.h94 off_t start, uint64_t len, uint32_t timo,
H A Dsmbfs_subr.h212 off_t start, uint64_t len, uint32_t timo,
H A Dsmbfs_vnops.c5488 uint32_t timo; local
5704 timo = 0;
5707 pb->length, timo, ap->a_context);
5773 uint32_t timo; local
5860 timo = (flags & F_WAIT) ? -1 : 0;
5871 start, len, timo, ap->a_context);
5931 start, len, timo, ap->a_context);
H A Dsmbfs_smb.c120 off_t start, uint64_t len, uint32_t timo, vfs_context_t context)
145 mb_put_uint32le(mbp, timo); /* 0 nowait, -1 infinite wait */
119 smb1fs_smb_lock(struct smb_share *share, int op, SMBFID fid, uint32_t pid, off_t start, uint64_t len, uint32_t timo, vfs_context_t context) argument
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dmoo.vim3 " Maintainer: Timo Frenay <timo@frenay.net>
H A Dlsl.vim3 " Maintainer: Timo Frenay <timo@frenay.net>
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dbpf.c827 bpf_sleep(struct bpf_d *d, int pri, const char *wmesg, int timo) argument
831 if(timo)
832 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dmain.c1037 struct timeval timo; local
1056 wait_input(timeleft(&timo));
H A Dsys-MacOSX.c1623 wait until there is data available, for the length of time specified by *timo
1624 (indefinite if timo is NULL)
1626 void wait_input(struct timeval *timo) argument
1631 n = select(max_in_fd + 1, &ready_fds, NULL, NULL, timo);
/macosx-10.10.1/modemccl-25.1/CCLEngine/
H A DCCLEngine.c755 struct timeval timo; local
828 nready = select(maxfd, &rset, NULL, NULL, timeleft(&timo));

Completed in 315 milliseconds

12