Symbol: START_CHAR
drivers/mmc/core/sdio_uart.c
844
port->x_char = START_CHAR(tty);
drivers/net/ppp/ppp_async.c
906
if (c == START_CHAR(ap->tty))
drivers/staging/greybus/uart.c
581
start_char = START_CHAR(tty);
drivers/tty/amiserial.c
877
rs_send_xchar(tty, START_CHAR(tty));
drivers/tty/mxser.c
1275
info->x_char = START_CHAR(tty);
drivers/tty/mxser.c
667
mxser_set_must_xon1_value(info->ioaddr, START_CHAR(tty));
drivers/tty/n_tty.c
1196
return c == START_CHAR(tty) || c == STOP_CHAR(tty);
drivers/tty/n_tty.c
1223
if (c == START_CHAR(tty)) {
drivers/tty/n_tty.c
1823
set_bit(START_CHAR(tty), ldata->char_map);
drivers/tty/pty.c
252
START_CHAR(tty) == '\021');
drivers/tty/serial/8250/8250_mtk.c
294
serial_out(up, MTK_UART_XON1, START_CHAR(port->state->port.tty));
drivers/tty/serial/serial_core.c
783
uart_send_xchar(tty, START_CHAR(tty));
drivers/tty/synclink_gt.c
1297
send_xchar(tty, START_CHAR(tty));
drivers/tty/tty_ioctl.c
968
if (START_CHAR(tty) != __DISABLED_CHAR)
drivers/tty/tty_ioctl.c
969
retval = tty_send_xchar(tty, START_CHAR(tty));
drivers/usb/serial/cp210x.c
1162
START_CHAR(tty) == old_termios->c_cc[VSTART] &&
drivers/usb/serial/cp210x.c
1170
chars.bXonChar = START_CHAR(tty);
drivers/usb/serial/ftdi_sio.c
2723
value = STOP_CHAR(tty) << 8 | START_CHAR(tty);
drivers/usb/serial/io_edgeport.c
1427
unsigned char start_char = START_CHAR(tty);
drivers/usb/serial/io_edgeport.c
2420
unsigned char start_char = START_CHAR(tty);
drivers/usb/serial/io_ti.c
2159
unsigned char start_char = START_CHAR(tty);
drivers/usb/serial/io_ti.c
2293
config->cXon = START_CHAR(tty);
drivers/usb/serial/mos7720.c
1165
unsigned char start_char = START_CHAR(tty);
drivers/usb/serial/mos7840.c
961
unsigned char start_char = START_CHAR(tty);
drivers/usb/serial/mxuport.c
767
u8 xon = START_CHAR(tty);
drivers/usb/serial/pl2303.c
817
if (START_CHAR(tty) != 0x11 || STOP_CHAR(tty) != 0x13)
drivers/usb/serial/quatech2.c
300
u16 x = ((u16) (START_CHAR(tty) << 8) | (u16) (STOP_CHAR(tty)));
drivers/usb/serial/ssu100.c
264
u16 x = ((u16)(START_CHAR(tty) << 8) | (u16)(STOP_CHAR(tty)));
drivers/usb/serial/ti_usb_3410_5052.c
956
config->cXon = START_CHAR(tty);
drivers/usb/serial/whiteheat.c
668
port_settings.xon = START_CHAR(tty);
drivers/usb/serial/xr_serial.c
666
u8 start_char = START_CHAR(tty);
tools/testing/selftests/bpf/progs/bpf_iter_test_kern_common.h
16
c = START_CHAR + count;