Lines Matching defs:delay
276 * defined in terminfo and the delay algorithms in the tty driver
277 * on the particular systems. For each type of delay, the bits used
278 * for that delay must be specified, in XXbits, and a table
287 struct delay
328 static struct delay CRdelay[] =
340 static struct delay NLdelay[] =
350 static struct delay BSdelay[] =
360 static struct delay TBdelay[] =
363 11, TAB1, /* special M37 delay */
365 /* TAB3 is XTABS and not a delay */
372 static struct delay FFdelay[] =
384 struct delay CRdelay[] =
396 struct delay NLdelay[] =
399 66, NL1, /* special M37 delay */
407 struct delay TBdelay[] =
410 11, TAB1, /* special M37 delay */
417 struct delay FFdelay[] =
469 * Set the appropriate delay bits in the termio structure for
470 * the given delay.
473 setdelay(delay, delaytable, bits, flags)
474 register int delay;
475 struct delay delaytable[];
483 register struct delay *p;
484 register struct delay *lastdelay;
489 /* Scan the delay table for first entry with adequate delay */
491 (p -> d_delay >= 0) && (p -> d_delay < delay);