Home
last modified time | relevance | path

Searched refs:ttys (Results 1 – 6 of 6) sorted by relevance

/drivers/tty/
Dehv_bytechan.c374 struct tty_struct *ttys = tty_port_tty_get(&bc->port); in ehv_bc_tty_rx_isr() local
381 if (!ttys) in ehv_bc_tty_rx_isr()
389 count = tty_buffer_request_room(ttys, rx_count); in ehv_bc_tty_rx_isr()
410 ret = tty_insert_flip_string(ttys, buffer, len); in ehv_bc_tty_rx_isr()
425 tty_flip_buffer_push(ttys); in ehv_bc_tty_rx_isr()
427 tty_kref_put(ttys); in ehv_bc_tty_rx_isr()
482 struct tty_struct *ttys = tty_port_tty_get(&bc->port); in ehv_bc_tty_tx_isr() local
485 if (ttys) { in ehv_bc_tty_tx_isr()
486 tty_wakeup(ttys); in ehv_bc_tty_tx_isr()
487 tty_kref_put(ttys); in ehv_bc_tty_tx_isr()
[all …]
Dtty_io.c1245 return driver->ttys[idx]; in tty_driver_lookup_tty()
1288 driver->ttys[tty->index] = tty; in tty_standard_install()
1327 driver->ttys[tty->index] = NULL; in tty_driver_remove_tty()
1579 if (tty != tty->driver->ttys[idx]) { in tty_release_checks()
1590 if (o_tty != tty->driver->other->ttys[idx]) { in tty_release_checks()
3095 p = driver->ttys; in destruct_tty_driver()
3097 driver->ttys = NULL; in destruct_tty_driver()
3158 driver->ttys = (struct tty_struct **)p; in tty_register_driver()
3161 driver->ttys = NULL; in tty_register_driver()
3170 driver->ttys = NULL; in tty_register_driver()
[all …]
Dpty.c311 driver->other->ttys[idx] = o_tty; in pty_install()
321 driver->ttys[idx] = tty; in pty_install()
/drivers/tty/ipwireless/
Dtty.c61 static struct ipw_tty *ttys[IPWIRELESS_PCMCIA_MINORS]; variable
104 return ttys[index]; in get_tty()
485 ttys[j] = kzalloc(sizeof(struct ipw_tty), GFP_KERNEL); in add_tty()
486 if (!ttys[j]) in add_tty()
488 ttys[j]->index = j; in add_tty()
489 ttys[j]->hardware = hardware; in add_tty()
490 ttys[j]->channel_idx = channel_idx; in add_tty()
491 ttys[j]->secondary_channel_idx = secondary_channel_idx; in add_tty()
492 ttys[j]->network = network; in add_tty()
493 ttys[j]->tty_type = tty_type; in add_tty()
[all …]
/drivers/tty/hvc/
Dhvc_console.c778 struct tty_struct *tty = driver->ttys[0]; in hvc_poll_get_char()
793 struct tty_struct *tty = driver->ttys[0]; in hvc_poll_put_char()
/drivers/tty/vt/
Dvt_ioctl.c41 #define VT_IS_IN_USE(i) (console_driver->ttys[i] && console_driver->ttys[i]->count)