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

12

/macosx-10.9.5/Libc-997.90.3/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.9.5/xnu-2422.115.4/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.c1945 long slp = 0; /* XXX this should be renamed `timo'. */
2992 * timo Timeout for the sleep
3000 * msleep0:EWOULDBLOCK Timeout (timo) already expired
3010 ttysleep(struct tty *tp, void *chan, int pri, const char *wmesg, int timo) argument
3018 /* Use of msleep0() avoids conversion timo/timespec/timo */
3019 error = msleep0(chan, &tp->t_lock, pri, wmesg, timo, (int (*)(int))0);
/macosx-10.9.5/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.9.5/remote_cmds-41.90.1/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.9.5/xnu-2422.115.4/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.9.5/ksh-20/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.9.5/xnu-2422.115.4/bsd/sys/
H A Dproc.h302 extern int tsleep(void *chan, int pri, const char *wmesg, int timo);
303 extern int msleep1(void *chan, lck_mtx_t *mtx, int pri, const char *wmesg, u_int64_t timo);
H A Dproc_internal.h718 extern int tsleep0(void *chan, int pri, const char *wmesg, int timo, int (*continuation)(int));
720 extern int msleep0(void *chan, lck_mtx_t *mtx, int pri, const char *wmesg, int timo, int (*continuation)(int));
/macosx-10.9.5/Libinfo-449.1.3/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.9.5/smb-697.95.1/kernel/netsmb/
H A Dsmb_rq.h215 int smb_rq_simple_timed(struct smb_rq *rqp, int timo);
H A Dsmb_conn.h475 int smb1_echo(struct smb_vc *vcp, int timo, uint32_t EchoCount,
H A Dsmb_smb.c1658 smb1_echo(struct smb_vc *vcp, int timo, uint32_t EchoCount, argument
1675 error = smb_rq_simple_timed(rqp, timo);
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
/macosx-10.9.5/network_cmds-433/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.9.5/smb-697.95.1/kernel/smbfs/
H A Dsmbfs_subr_2.h84 off_t start, uint64_t len, uint32_t timo,
H A Dsmbfs_subr.h214 off_t start, uint64_t len, uint32_t timo,
H A Dsmbfs_vnops.c4970 uint32_t timo; local
5184 timo = 0;
5187 pb->length, timo, ap->a_context);
5251 uint32_t timo; local
5332 timo = (flags & F_WAIT) ? -1 : 0;
5343 start, len, timo, ap->a_context);
5403 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.9.5/vim-53/runtime/syntax/
H A Dmoo.vim3 " Maintainer: Timo Frenay <timo@frenay.net>
H A Dlsl.vim3 " Maintainer: Timo Frenay <timo@frenay.net>
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dbpf.c799 bpf_sleep(struct bpf_d *d, int pri, const char *wmesg, int timo) argument
803 if(timo)
804 clock_interval_to_deadline(timo, NSEC_PER_SEC / hz, &abstime);
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Dmain.c1027 struct timeval timo; local
1046 wait_input(timeleft(&timo));
H A Dsys-MacOSX.c1480 wait until there is data available, for the length of time specified by *timo
1481 (indefinite if timo is NULL)
1483 void wait_input(struct timeval *timo) argument
1488 n = select(max_in_fd + 1, &ready_fds, NULL, NULL, timo);
/macosx-10.9.5/modemccl-25.1/CCLEngine/
H A DCCLEngine.c755 struct timeval timo; local
828 nready = select(maxfd, &rset, NULL, NULL, timeleft(&timo));

Completed in 290 milliseconds

12