/linux/Documentation/filesystems/ |
H A D | devpts.rst | 25 Total count of pty pairs in all instances is limited by sysctls:: 27 kernel.pty.max = 4096 - global limit 28 kernel.pty.reserve = 1024 - reserved for filesystems mounted from the initial mount namespace 29 kernel.pty.nr - current count of ptys 34 ``sysctl kernel.pty.reserve``. 36 In kernels older than 3.4 sysctl ``kernel.pty.max`` works as per-instance limit.
|
H A D | proc.rst | 1541 pty_slave /dev/pts 136 0-255 pty:slave 1542 pty_master /dev/ptm 128 0-255 pty:master 1543 pty_slave /dev/ttyp 3 0-255 pty:slave 1544 pty_master /dev/pty 2 0-255 pty:master
|
/linux/drivers/media/test-drivers/vivid/ |
H A D | vivid-rds-gen.c | 56 data[1].lsb = rds->pty << 5; in vivid_rds_generate() 57 data[1].msb = (rds->pty >> 3) | (rds->tp << 2); in vivid_rds_generate() 119 data[3].lsb = rds->pty << 5; in vivid_rds_generate() 122 data[3].msb |= rds->pty >> 3; in vivid_rds_generate() 135 rds->pty = alt ? 29 : 2; in vivid_rds_gen_fill() 138 rds->pty = alt ? 16 : 3; in vivid_rds_gen_fill()
|
H A D | vivid-radio-common.c | 71 rds->pty = dev->radio_tx_rds_pty->cur.val; in vivid_radio_rds_init() 90 v4l2_ctrl_s_ctrl(dev->radio_rx_rds_pty, rds->pty); in vivid_radio_rds_init()
|
H A D | vivid-rds-gen.h | 26 u8 pty; member
|
/linux/arch/um/os-Linux/ |
H A D | sigio.c | 10 #include <pty.h> 204 struct openpty_arg pty = { .master = -1, .slave = -1 }; in check_one_sigio() local 207 initial_thread_cb(openpty_cb, &pty); in check_one_sigio() 208 if (pty.err) { in check_one_sigio() 210 -pty.err); in check_one_sigio() 214 master = pty.master; in check_one_sigio() 215 slave = pty.slave; in check_one_sigio() 219 "pty\n"); in check_one_sigio() 294 "skipping pty SIGIO check\n"); in check_sigio()
|
/linux/arch/um/drivers/ |
H A D | pty.c | 81 char *pty, *bank, *cp; in getmaster() local 84 pty = &line[strlen("/dev/ptyp")]; in getmaster() 86 line[strlen("/dev/pty")] = *bank; in getmaster() 87 *pty = '0'; in getmaster() 93 *pty = *cp; in getmaster() 109 printk(UM_KERN_ERR "getmaster - no usable host pty devices\n"); in getmaster() 142 .type = "pty",
|
H A D | Makefile | 37 obj-$(CONFIG_PTY_CHAN) += pty.o 51 USER_OBJS := fd.o null.o pty.o tty.o xterm.o vector_user.o
|
H A D | Kconfig | 41 bool "pty channel support" 45 pseudo-terminals (/dev/pty*) and pts pseudo-terminals are controlled 102 default "pty" 106 command line. The default value is "pty", which attaches them to 110 which don't have a set of /dev/pty* devices.
|
/linux/scripts/kconfig/ |
H A D | conf.c | 184 int pty = 33; /* probability of tristate = y */ in conf_set_all_new_symbols() local 211 pty = pby - ptm; in conf_set_all_new_symbols() 214 pty = p[0]; in conf_set_all_new_symbols() 216 pby = pty + ptm; in conf_set_all_new_symbols() 220 pty = p[1]; in conf_set_all_new_symbols() 225 if (pty + ptm > 100) { in conf_set_all_new_symbols() 261 if (cnt < pty) in conf_set_all_new_symbols() 263 else if (cnt < pty + ptm) in conf_set_all_new_symbols()
|
/linux/drivers/media/radio/ |
H A D | radio-miropcm20.c | 358 u8 pty; in pcm20_thread() local 360 res = rds_cmd(dev->aci, RDS_PTYTATP, &pty, 1); in pcm20_thread() 362 v4l2_ctrl_s_ctrl(dev->rds_ms, !!(pty & 0x01)); in pcm20_thread() 363 v4l2_ctrl_s_ctrl(dev->rds_ta, !!(pty & 0x02)); in pcm20_thread() 364 v4l2_ctrl_s_ctrl(dev->rds_tp, !!(pty & 0x80)); in pcm20_thread() 365 v4l2_ctrl_s_ctrl(dev->rds_pty, (pty >> 2) & 0x1f); in pcm20_thread()
|
/linux/drivers/tty/ |
H A D | Makefile | 6 obj-$(CONFIG_LEGACY_PTYS) += pty.o 7 obj-$(CONFIG_UNIX98_PTYS) += pty.o
|
H A D | pty.c | 90 * (1) trying to send data to the pty, or (2) waiting in wait_until_sent() 91 * for the pty buffer to be drained. 100 * pty_write - write to a pty 108 * the other side of the pty/tty pair. 136 /* Set the lock flag on a pty */ 157 /* Set the packet mode on a pty */ 179 /* Get the packet mode of a pty */ 286 struct tty_struct *pty = tty->link; in pty_resize() local 295 rpgrp = tty_get_pgrp(pty); in pty_resize() 306 pty in pty_resize() [all...] |
/linux/include/linux/mfd/ |
H A D | si476x-core.h | 319 * @pty: Current channel's PTY code. 329 u8 pty; member
|
/linux/Documentation/networking/ |
H A D | cdc_mbim.rst | 228 DssSessionId 5 as a pty character device pointed to by a /dev/nmea
|
/linux/Documentation/admin-guide/ |
H A D | devices.rst | 252 a master side, named ``/dev/pty[p-za-e][0-9a-f]``, and a slave side, named
|
/linux/Documentation/admin-guide/sysctl/ |
H A D | kernel.rst | 1152 pty chapter
|
/linux/ |
H A D | CREDITS | 95 D: Unix98 pty support. 2543 D: Initial implementation of VC's, pty's and select()
|