Searched defs:delay (Results 1 - 25 of 94) sorted by relevance

1234

/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwtimeout.c51 * The delay is in milliseconds.
54 wtimeout(WINDOW *w, int delay) argument
56 if (delay < 0) {
61 /* Non-Block (0 == delay) and delayed (0 < delay) */
69 * Also 'delay' is in milliseconds, so it is rounted up
70 * to the nearest 10th of a second. Only when 'delay' is
73 * of this code was using the expression "(delay + 50) /100",
76 w->_vtime = (delay > 25500) ? 255 : (delay
[all...]
H A Dtimeout.c62 timeout(int delay) argument
64 wtimeout(stdscr, delay);
/illumos-gate/usr/src/boot/sys/boot/efi/libefi/
H A Ddelay.c33 void delay(int);
36 delay(int usecs) function
/illumos-gate/usr/src/lib/libcurses/screen/
H A Ddelay.c63 * Insert a delay into the output stream for "delay/10" milliseconds.
64 * Round up by a half a character frame, and then do the delay.
71 _delay(int delay, int (*outc)(char)) argument
91 delay += mspc10 / 2;
96 for (delay /= mspc10; delay-- > 0; )
H A Dttimeout.c51 * delay: < 0 for infinite delay (blocking read)
52 * = 0 for no delay read
60 ttimeout(int delay) argument
65 if (delay < 0)
66 delay = -1;
68 if (cur_term->_delay == delay)
72 if (delay > 0) {
74 _setblock(-delay);
75 _settimeout(delay);
[all...]
H A Dtputs.c53 int delay = 0; local
76 /* Convert the number representing the delay. */
79 delay = delay * 10 + *cp++ - '0';
82 delay *= 10;
86 delay += *cp - '0';
93 * If the delay is followed by a `*', then
95 * If the delay is followed by a '/', then
96 * the delay is done irregardless of xon/xoff.
110 delay *
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dtimeout.c59 (timeout)(int delay) argument
62 __m_trace("timeout(%d)", delay);
65 wtimeout(stdscr, delay);
/illumos-gate/usr/src/cmd/audio/include/
H A DFir.h58 int delay; // actual delay between output & input member in class:Fir
76 * group delay samples to align with the input sample sequence.
/illumos-gate/usr/src/boot/sys/boot/uboot/lib/
H A Dtime.c61 delay(int usecs) function
/illumos-gate/usr/src/boot/sys/boot/ofw/libofw/
H A Dofw_time.c53 delay(int usecs) function
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Dxsem.c139 timestruc_t delay; local
157 delay = *mytime;
158 delay.tv_sec = delay.tv_sec + time(NULL);
161 &sem->semMutex, &delay);
/illumos-gate/usr/src/lib/libfakekernel/common/
H A Dkmisc.c66 delay(clock_t ticks) function
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dtime.c101 delay(int period) function
/illumos-gate/usr/src/boot/sys/boot/usb/
H A Dbsd_usbloader_test.c55 DELAY(unsigned int delay) argument
57 usleep(delay);
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dt-sem.c28 delay(t, s) function
75 delay(0, "try to acq");
81 delay(0, "acquired");
85 delay(0, "try to rel");
91 delay(0, "released");
206 delay(1, "parent: acquire 1");
221 delay(3, "parent: release 1");
236 delay(1, "parent: getval");
251 delay(1, "parent: acquire 2");
282 delay(
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
H A Dinput.c501 * and set a timer (nextmcast), delay until that time.
502 * If we just sent a full update, delay the dynamic update.
510 int delay; local
528 TRACE_ACTION("delay dynamic update",
533 delay = GET_RANDOM(MIN_WAIT_TIME * 1000000,
538 delay / 1000);
541 nextmcast.tv_sec = delay / 1000000;
542 nextmcast.tv_usec = delay % 1000000;
547 * update, force the delay past the full
/illumos-gate/usr/src/cmd/rpcsvc/
H A Dspray.c63 int delay = 0; local
87 delay = atoi(optarg);
131 if (delay > 0)
132 slp(delay);
182 printf("spray host [-t nettype] [-l lnth] [-c cnt] [-d delay]\n");
/illumos-gate/usr/src/cmd/tip/aculib/
H A Dv3451.c121 vawrite(char *cp, int delay) argument
124 for (; *cp; (void) sleep(delay), cp++)
/illumos-gate/usr/src/uts/common/io/cxgbe/common/
H A Dcommon.c87 int attempts, int delay)
90 delay, NULL));
86 t4_wait_op_done(struct adapter *adapter, int reg, u32 mask, int polarity, int attempts, int delay) argument
/illumos-gate/usr/src/uts/common/io/warlock/
H A Dddi_dki_impl.c162 delay(clock_t ticks) function
/illumos-gate/usr/src/cmd/ttymon/
H A Dstty.c86 static void delay(int m, char *s);
403 delay((m&CRDLY)/CR1, "cr");
404 delay((m&NLDLY)/NL1, "nl");
405 delay((m&TABDLY)/TAB1, "tab");
406 delay((m&BSDLY)/BS1, "bs");
407 delay((m&VTDLY)/VT1, "vt");
408 delay((m&FFDLY)/FF1, "ff");
633 delay((m&CRDLY)/CR1, "cr");
634 delay((m&NLDLY)/NL1, "nl");
635 delay((
721 delay(int m, char *s) function
[all...]
/illumos-gate/usr/src/ucbcmd/stty/
H A Dstty.c57 void delay(int, char *s);
352 delay((m & CRDLY)/CR1, "cr");
353 delay((m & NLDLY)/NL1, "nl");
357 delay((m & TABDLY)/TAB1, "tab");
358 delay((m & BSDLY)/BS1, "bs");
359 delay((m & VTDLY)/VT1, "vt");
360 delay((m & FFDLY)/FF1, "ff");
581 delay((m & CRDLY)/CR1, "cr");
582 delay((m & NLDLY)/NL1, "nl");
586 delay((
751 delay(int m, char *s) function
[all...]
/illumos-gate/usr/src/cmd/smbsrv/smbd/
H A Dsmbd_join.c112 timestruc_t delay; local
122 delay.tv_sec = SMBD_DC_MONITOR_INTERVAL;
123 delay.tv_nsec = 0;
126 (void) cond_reltimedwait(&smbd_dc_cv, &smbd_dc_mutex, &delay);
/illumos-gate/usr/src/boot/sys/boot/userboot/userboot/
H A Dmain.c65 delay(int usec) function
68 CALLBACK(delay, usec);
/illumos-gate/usr/src/boot/sys/boot/userboot/
H A Duserboot.h176 void (*delay)(void *arg, int usec); member in struct:loader_callbacks

Completed in 935 milliseconds

1234