/external/kernel-headers/original/linux/ |
tty.h | 5 * 'tty.h' defines some structures used by tty_io.c and some defines. 39 * This is the flip buffer used for the tty driver. The buffer is 40 * located in the tty structure, and is used as a high speed interface 41 * between the tty driver and the tty line discipline. 81 #define INTR_CHAR(tty) ((tty)->termios->c_cc[VINTR]) 82 #define QUIT_CHAR(tty) ((tty)->termios->c_cc[VQUIT]) 83 #define ERASE_CHAR(tty) ((tty)->termios->c_cc[VERASE] [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
tty.h | 5 * 'tty.h' defines some structures used by tty_io.c and some defines.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
tty.h | 5 * 'tty.h' defines some structures used by tty_io.c and some defines.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
tty.h | 5 * 'tty.h' defines some structures used by tty_io.c and some defines.
|
/external/openssh/ |
sshpty.c | 6 * Allocating a pseudo-terminal, and making it the controlling tty. 59 * descriptors for the pty and tty sides and the name of the tty side are 88 /* Releases the tty. Its ownership is returned to root, and permissions to 0666. */ 91 pty_release(const char *tty) 94 if (chown(tty, (uid_t) 0, (gid_t) 0) < 0) 95 error("chown %.100s 0 0 failed: %.100s", tty, strerror(errno)); 96 if (chmod(tty, (mode_t) 0666) < 0) 97 error("chmod %.100s 0666 failed: %.100s", tty, strerror(errno)); 101 /* Makes the tty the process's controlling tty and sets it to sane modes. * [all...] |
audit.c | 143 * Called when a user session is started. Argument is the tty allocated to 144 * the session, or NULL if no tty was allocated. 152 const char *t = li->line ? li->line : "(no tty)"; 154 debug("audit session open euid %d user %s tty name %s", geteuid(), 159 * Called when a user session is closed. Argument is the tty allocated to 160 * the session, or NULL if no tty was allocated. 168 const char *t = li->line ? li->line : "(no tty)"; 170 debug("audit session close euid %d user %s tty name %s", geteuid(),
|
/external/bluetooth/bluez/scripts/ |
bluetooth-serial.rules | 2 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="Brain Boxes", ATTRS{prod_id2}=="Bluetooth PC Card", ENV{HCIOPTS}="bboxes", RUN+="bluetooth_serial" 5 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="Xircom", ATTRS{prod_id3}=="CBT", ENV{HCIOPTS}="xircom", RUN+="bluetooth_serial" 8 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="Xircom", ATTRS{prod_id3}=="CBT", ENV{HCIOPTS}="xircom", RUN+="bluetooth_serial" 11 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="IBM", ATTRS{prod_id2}=="Bluetooth PC Card II", ENV{HCIOPTS}="tdk", RUN+="bluetooth_serial" 14 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="TDK", ATTRS{prod_id2}=="Bluetooth PC Card II", ENV{HCIOPTS}="tdk", RUN+="bluetooth_serial" 17 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="AmbiCom BT2000C", ATTRS{prod_id2}=="Bluetooth PC/CF Card", ENV{HCIOPTS}="bt2000c", RUN+="bluetooth_serial" 20 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="COM1 SA", ATTRS{prod_id2}=="MC310 CARD", ENV{HCIOPTS}="comone", RUN+="bluetooth_serial" 23 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="SPHINX", ATTRS{prod_id2}=="BT-CARD", ENV{HCIOPTS}="picocard", RUN+="bluetooth_serial" 26 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="H-Soft", ATTRS{prod_id2}=="Blue+CARD", ENV{HCIOPTS}="$sysfs{manf_id},$sysfs{card_id}", RUN+="bluetooth_serial" 29 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="CF CARD", ATTRS{prod_id2}=="GENERIC", ENV{HCIOPTS}="$sys (…) [all...] |
/device/moto/stingray/whisper/ |
SA_Phys_Linux.c | 78 struct termios tty; local 256 /* Transmits a message to be sent over tty */ 386 * Transmits a message to be sent over tty 420 /* Sets the baudrate of the tty port */ 445 struct termios tty; local 448 tcgetattr(ttyFd, &tty); 451 tty.c_cflag = 0; 452 tty.c_cflag |= CLOCAL; // ignore modem control lines // 453 tty.c_cflag |= CREAD; // enable receiver 454 tty.c_cflag |= CS7; // use 7 data bit [all...] |
/external/quake/quake/src/WinQuake/ |
net_ser.cpp | 78 int tty;
member in struct:SerialLine_s 125 b = TTY_ReadByte(p->tty);
369 serialLine[n].tty = TTY_Open(n);
408 return TTY_OutputQueueIsEmpty(((SerialLine *)sock->driverdata)->tty);
426 TTY_WriteByte(p->tty, b);
431 TTY_WriteByte(p->tty, b);
433 TTY_WriteByte(p->tty, b);
438 TTY_WriteByte(p->tty, b);
440 TTY_WriteByte(p->tty, b);
443 TTY_WriteByte(p->tty, b); [all...] |
/system/netd/ |
PppController.cpp | 51 int PppController::attachPppd(const char *tty, struct in_addr local, 64 if (!strcmp(tty, *it)) { 69 ALOGE("Invalid tty '%s' specified", tty); 89 snprintf(dev, sizeof(dev), "/dev/%s", tty); 105 int PppController::detachPppd(const char *tty) { 112 ALOGD("Stopping PPPD services on port %s", tty); 116 ALOGD("PPPD services on port %s stopped", tty); 133 DIR *d = opendir("/sys/class/tty"); 135 ALOGE("Error opening /sys/class/tty (%s)", strerror(errno)) [all...] |
PppController.h | 34 int attachPppd(const char *tty, struct in_addr local, 37 int detachPppd(const char *tty);
|
/external/bluetooth/bluez/doc/ |
serial-api.txt | 17 remote device and then creates a RFCOMM TTY 18 device for it. The RFCOMM TTY device is returned. 31 Disconnect a RFCOMM TTY device that has been 38 be suplied instead of the TTY device.
|
/external/openssl/crypto/des/ |
read_pwd.c | 148 #define TTY_get(tty,data) tcgetattr(tty,data) 149 #define TTY_set(tty,data) tcsetattr(tty,TCSANOW,data) 156 #define TTY_get(tty,data) ioctl(tty,TCGETA,data) 157 #define TTY_set(tty,data) ioctl(tty,TCSETA,data) 164 #define TTY_get(tty,data) ioctl(tty,TIOCGETP,data 279 static FILE *tty; local [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
TtyIntent.java | 24 /** Event for TTY mode change */ 27 * Broadcast intent action indicating that the TTY has either been 38 * The lookup key for a boolean that indicates whether TTY mode is enabled or 39 * disabled. {@code true} means TTY mode is enabled. Retrieve it with 47 * Broadcast intent action indicating that the TTY preferred operating mode 57 * The lookup key for an int that indicates preferred TTY mode.
|
/external/llvm/test/Linker/ |
2004-05-07-TypeResolution2.ll | 9 define internal void @f1(%struct1* %tty) { 11 %tmp.2.i.i = getelementptr %struct1* %tty, i64 0, i32 1 ; <void (%struct2*)**> [#uses=1]
|
/external/dropbear/ |
sshpty.c | 9 * Allocating a pseudo-terminal, and making it the controlling tty. 44 * descriptors for the pty and tty sides and the name of the tty side are 196 snprintf(namebuf, namebuflen, "/dev/tty%c%c", 218 /* set tty modes to a sane state for broken clients */ 221 "ptyallocate: tty modes failed: %.100s", strerror(errno)); 230 "Setting tty modes for pty failed: %.100s", 245 /* Releases the tty. Its ownership is returned to root, and permissions to 0666. */ 262 /* Makes the tty the processes controlling tty and sets it to sane modes. * [all...] |
cli-authinteract.c | 36 FILE* tty = NULL; local 44 tty = fopen(_PATH_TTY, "r"); 45 if (tty) { 46 ret = fgets(buf, sizeof(buf), tty); 47 fclose(tty);
|
/external/qemu/distrib/sdl-1.2.12/src/video/wscons/ |
SDL_wsconsevents.c | 43 struct termios tty; local 55 tty = private->saved_tty; 56 tty.c_iflag = IGNPAR | IGNBRK; 57 tty.c_oflag = 0; 58 tty.c_cflag = CREAD | CS8; 59 tty.c_lflag = 0; 60 tty.c_cc[VTIME] = 0; 61 tty.c_cc[VMIN] = 1; 62 cfsetispeed(&tty, 9600); 63 cfsetospeed(&tty, 9600) [all...] |
/external/bluetooth/bluez/compat/ |
dun.c | 157 static int dun_exec(char *tty, char *prog, char **args) 186 static int dun_create_tty(int sk, char *tty, int size) 213 snprintf(tty, size, "/dev/rfcomm%d", id); 214 while (stat(tty, &st) < 0) { 215 snprintf(tty, size, "/dev/bluetooth/rfcomm/%d", id); 216 if (stat(tty, &st) < 0) { 217 snprintf(tty, size, "/dev/rfcomm%d", id); 309 char tty[100]; local 312 if (dun_create_tty(sk, tty, sizeof(tty) - 1) < 0) [all...] |
/device/moto/stingray/ril/ |
tty2ttyd | |
/external/kernel-headers/original/asm-mips/ |
ioctls.h | 28 #define TIOCEXCL 0x740d /* set exclusive use of tty */ 29 #define TIOCNXCL 0x740e /* reset exclusive use of tty */ 47 #define TIOCNOTTY 0x5471 /* void tty association */ 59 #define TIOCSPGRP _IOW('t', 118, int) /* set pgrp of tty */ 60 #define TIOCGPGRP _IOR('t', 119, int) /* get pgrp of tty */ 88 #define TIOCSCTTY 0x5480 /* become controlling tty */
|
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/ |
out | 16 /* Last resort, maybe our tty is a usable VT */ 20 keyboard_fd = open("/dev/tty", O_RDWR);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
pty.h | 1 /* Functions for pseudo TTY handling. 31 /* Create pseudo tty master slave pair with NAME and set terminal
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
pty.h | 1 /* Functions for pseudo TTY handling. 31 /* Create pseudo tty master slave pair with NAME and set terminal
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
pty.h | 1 /* Functions for pseudo TTY handling. 31 /* Create pseudo tty master slave pair with NAME and set terminal
|