/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...] |
serial_core.h | 143 #include <linux/tty.h> 310 struct tty_struct *tty; member in struct:uart_info 405 ((port)->info->tty->stopped || (port)->info->tty->hw_stopped) 446 do_SAK(info->tty); 470 else if (info->tty) 471 tty_hangup(info->tty); 484 struct tty_struct *tty = info->tty; local 489 if (tty->hw_stopped) 510 struct tty_struct *tty = port->info->tty; local [all...] |
/prebuilt/linux-x86/toolchain/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.
|
/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 | 53 int PppController::attachPppd(const char *tty, struct in_addr local, 66 if (!strcmp(tty, *it)) { 71 LOGE("Invalid tty '%s' specified", tty); 91 snprintf(dev, sizeof(dev), "/dev/%s", tty); 107 int PppController::detachPppd(const char *tty) { 114 LOGD("Stopping PPPD services on port %s", tty); 118 LOGD("PPPD services on port %s stopped", tty); 135 DIR *d = opendir("/sys/class/tty"); 137 LOGE("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...] |
/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);
|
/prebuilt/linux-x86/toolchain/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
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/protocols/ |
rwhod.h | 41 char out_line[8]; /* tty name */ 56 struct outmp we_utmp; /* active tty info */ 57 int we_idle; /* tty idle time */
|
/device/samsung/tuna/overlay/packages/apps/Phone/res/values/ |
config.xml | 20 <!-- Flag indicating if the tty is enabled -->
|
/external/e2fsprogs/ |
SHLIBS | 9 Description: Generic Subsystem library (Simple tty UI)
|
/external/ppp/pppd/ |
Android.mk | 22 tty.c \
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
PhoneStatusBarPolicy.java | 159 // TTY status 160 mService.setIcon("tty", R.drawable.stat_sys_tty_mode, 0, null); 161 mService.setIconVisibility("tty", false); 290 // TTY is on 291 if (false) Slog.v(TAG, "updateTTY: set TTY on"); 292 mService.setIcon("tty", R.drawable.stat_sys_tty_mode, 0, 294 mService.setIconVisibility("tty", true); 296 // TTY is off 297 if (false) Slog.v(TAG, "updateTTY: set TTY off"); 298 mService.setIconVisibility("tty", false) [all...] |
/external/llvm/include/llvm/Support/ |
Process.h | 86 /// "tty" or "console" window. That is, the output would be displayed to 91 /// "tty" or "console" window. That is, the output would be displayed to 96 /// a "tty" or "console" window. That is, the output would be displayed to 101 /// if standard output is connected to a "tty" or "console" 102 /// window. If standard output is not connected to a tty or 108 /// if standard error is connected to a "tty" or "console" 109 /// window. If standard error is not connected to a tty or
|
/frameworks/base/core/java/android/os/ |
INetworkManagementService.aidl | 196 * Returns the list of currently known TTY devices on the system 201 * Attaches a PPP server daemon to the specified TTY with the specified 204 void attachPppd(String tty, String localAddr, String remoteAddr, String dns1Addr, 208 * Detaches a PPP server daemon from the specified TTY. 210 void detachPppd(String tty);
|