Symbol: send_xchar
drivers/accessibility/speakup/serialio.c
39
.send_xchar = spk_serial_send_xchar,
drivers/accessibility/speakup/speakup_audptr.c
132
synth->io_ops->send_xchar(synth, SYNTH_CLEAR);
drivers/accessibility/speakup/speakup_spkout.c
132
synth->io_ops->send_xchar(synth, SYNTH_CLEAR);
drivers/accessibility/speakup/spk_ttyio.c
126
.send_xchar = spk_ttyio_send_xchar,
drivers/accessibility/speakup/spk_ttyio.c
274
if (tty->ops->send_xchar)
drivers/accessibility/speakup/spk_ttyio.c
275
tty->ops->send_xchar(tty, ch);
drivers/accessibility/speakup/spk_types.h
160
void (*send_xchar)(struct spk_synth *synth, char ch);
drivers/isdn/capi/capi.c
1247
.send_xchar = capinc_tty_send_xchar,
drivers/mmc/core/sdio_uart.c
1003
.send_xchar = sdio_uart_send_xchar,
drivers/tty/amiserial.c
1445
.send_xchar = rs_send_xchar,
drivers/tty/serial/icom.c
1525
.send_xchar = icom_send_xchar,
drivers/tty/serial/jsm/jsm_tty.c
348
.send_xchar = jsm_tty_send_xchar,
drivers/tty/serial/serial_core.c
2666
.send_xchar = uart_send_xchar,
drivers/tty/serial/serial_core.c
719
if (port->ops->send_xchar)
drivers/tty/serial/serial_core.c
720
port->ops->send_xchar(port, ch);
drivers/tty/serial/sunhv.c
383
.send_xchar = sunhv_send_xchar,
drivers/tty/serial/sunsab.c
822
.send_xchar = sunsab_send_xchar,
drivers/tty/synclink_gt.c
1273
send_xchar(tty, STOP_CHAR(tty));
drivers/tty/synclink_gt.c
1297
send_xchar(tty, START_CHAR(tty));
drivers/tty/synclink_gt.c
3614
.send_xchar = send_xchar,
drivers/tty/tty_io.c
1141
if (tty->ops->send_xchar) {
drivers/tty/tty_io.c
1143
tty->ops->send_xchar(tty, ch);
include/linux/serial_core.h
383
void (*send_xchar)(struct uart_port *, char ch);
include/linux/tty_driver.h
471
void (*send_xchar)(struct tty_struct *tty, u8 ch);
net/bluetooth/rfcomm/tty.c
1106
.send_xchar = rfcomm_tty_send_xchar,