Symbol: ttyopen
sys/arch/amiga/dev/ite.c
459
error = ttyopen(tp, 0, mode & O_NONBLOCK);
sys/arch/amiga/dev/ser.c
356
error = ttyopen(tp, DIALOUT(dev), flag & O_NONBLOCK);
sys/arch/arm/at91/at91dbgu.c
576
error = ttyopen(tp, COMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/at91/at91usart.c
668
error = ttyopen(tp, COMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/clps711x/clpscom.c
650
error = ttyopen(tp, COMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/ep93xx/epcom.c
577
error = ttyopen(tp, COMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/imx/imxuart.c
771
error = ttyopen(tp, IMXUART_DIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/imx/imxuart.c
773
error = ttyopen(tp, 1, ISSET(flag, O_NONBLOCK));
sys/arch/arm/ixp12x0/ixp12x0_com.c
584
error = ttyopen(tp, COMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/s3c2xx0/sscom.c
713
error = ttyopen(tp, SSCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/sa11x0/sa11x0_com.c
601
error = ttyopen(tp, COMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/xilinx/zynq_uart.c
767
error = ttyopen(tp, ZYNQUART_DIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/arm/xilinx/zynq_uart.c
769
error = ttyopen(tp, 1, ISSET(flag, O_NONBLOCK));
sys/arch/atari/dev/ite.c
428
error = ttyopen(tp, 0, (mode & O_NONBLOCK) ? 1 : 0);
sys/arch/atari/dev/ser.c
470
error = ttyopen(tp, SERDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/atari/dev/zs.c
463
error = ttyopen(tp, ZS_DIALOUT(dev), (flags & O_NONBLOCK));
sys/arch/epoc32/windermere/wmcom.c
538
error = ttyopen(tp, COMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/evbarm/dev/plcom.c
962
error = ttyopen(tp, PLCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/evbppc/virtex/dev/xlcom.c
442
error = ttyopen(tp, DIALOUT(dev), (flags & O_NONBLOCK));
sys/arch/hp300/dev/dcm.c
559
error = ttyopen(tp, DCMDIALOUT(dev), (flag & O_NONBLOCK));
sys/arch/hpcmips/tx/txcom.c
853
if ((err = ttyopen(tp, TXCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK)))) {
sys/arch/luna68k/dev/siotty.c
558
error = ttyopen(tp, 0, (flag & O_NONBLOCK));
sys/arch/mips/sibyte/dev/sbjcn.c
601
error = ttyopen(tp, SBJCN_DIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/mips/sibyte/dev/sbscn.c
657
error = ttyopen(tp, SBSCN_DIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/powerpc/mpc5200/psc.c
505
error = ttyopen(tp, 0, ISSET(flag, O_NONBLOCK));
sys/arch/sgimips/dev/scn.c
1139
error = ttyopen(tp, SCN_DIALOUT(sc), flags & O_NONBLOCK);
sys/arch/sh3/dev/sci.c
706
error = ttyopen(tp, SCIDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/arch/sh3/dev/scif.c
810
error = ttyopen(tp, SCIFDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/dev/goldfish/gftty.c
477
int error = ttyopen(tp, 0, ISSET(flag, O_NONBLOCK));
sys/dev/ic/cd18xx.c
481
error = ttyopen(tp, CD18XX_DIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/dev/ic/clmpcc.c
549
error = ttyopen(tp, CLMPCCDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/dev/ic/com.c
1272
error = ttyopen(tp, COMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/dev/ic/z8530tty.c
671
error = ttyopen(tp, ZSDIALOUT(dev), ISSET(flags, O_NONBLOCK));
sys/dev/marvell/gtmpsc.c
597
error = ttyopen(tp, GTMPSCDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/dev/pci/cz.c
1034
error = ttyopen(tp, CZTTY_DIALOUT(dev), ISSET(flags, O_NONBLOCK));
sys/dev/sbus/magma.c
960
error = ttyopen(tp, MTTY_DIALOUT(dev), ISSET(flags, O_NONBLOCK));
sys/dev/usb/ucom.c
1080
error = ttyopen(tp, UCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/dev/usb/ucycom.c
434
err = ttyopen(tp, UCYCOMDIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/dev/usb/uhso.c
1512
error = ttyopen(tp, UHSODIALOUT(dev), ISSET(flag, O_NONBLOCK));
sys/sys/tty.h
300
int ttyopen(struct tty *, int, int);