HomeSort by relevance Sort by last modified time
    Searched full:tty (Results 1 - 25 of 807) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/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/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/opt/telephony/src/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.15/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/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 */
  /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
  /prebuilts/gcc/linux-x86/host/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 */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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 */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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 */
  /bionic/libc/include/sys/
_sigdefs.h 76 __BIONIC_SIGDEF(TTIN,26,"Stopped (tty input)")
77 __BIONIC_SIGDEF(TTOU,27,"Stopped (tty output)")
88 __BIONIC_SIGDEF(TTIN,21,"Stopped (tty input)")
89 __BIONIC_SIGDEF(TTOU,22,"Stopped (tty output)")
  /development/ndk/platforms/android-9/arch-mips/include/sys/
_sigdefs.h 76 __BIONIC_SIGDEF(TTIN,26,"Stopped (tty input)")
77 __BIONIC_SIGDEF(TTOU,27,"Stopped (tty output)")
88 __BIONIC_SIGDEF(TTIN,21,"Stopped (tty input)")
89 __BIONIC_SIGDEF(TTOU,22,"Stopper (tty output)")
  /device/samsung/tuna/overlay/packages/apps/Phone/res/values/
config.xml 20 <!-- Flag indicating if the tty is enabled -->

Completed in 1835 milliseconds

1 2 3 4 5 6 7 8 91011>>