Home
last modified time | relevance | path

Searched refs:termios_p (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
Dtermios.h128 speed_t cfgetispeed(const struct termios *termios_p);
129 speed_t cfgetospeed(const struct termios *termios_p);
130 int cfsetispeed(struct termios *termios_p, speed_t speed);
131 int cfsetospeed(struct termios *termios_p, speed_t speed);
132 int cfsetspeed(struct termios *termios_p, speed_t speed);
137 int tcgetattr(int fd, struct termios *termios_p);
139 int tcsetattr(int fd, int optional_actions, const struct termios *termios_p);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
Dcfsetspeed.c8 int cfsetspeed(struct termios *termios_p, speed_t speed) { in cfsetspeed() argument
9 termios_p->c_ispeed = speed; in cfsetspeed()
10 termios_p->c_ospeed = speed; in cfsetspeed()
Dcfgetispeed.c8 speed_t cfgetispeed(const struct termios *termios_p) { in cfgetispeed() argument
9 return termios_p->c_ispeed; in cfgetispeed()
Dcfgetospeed.c8 speed_t cfgetospeed(const struct termios *termios_p) { in cfgetospeed() argument
9 return termios_p->c_ospeed; in cfgetospeed()
Dtcgetattr.c8 int tcgetattr(int fd, struct termios* termios_p) { in tcgetattr() argument
9 return ki_tcgetattr(fd, termios_p); in tcgetattr()
Dcfsetispeed.c8 int cfsetispeed(struct termios *termios_p, speed_t speed) { in cfsetispeed() argument
9 termios_p->c_ispeed = speed; in cfsetispeed()
Dcfsetospeed.c8 int cfsetospeed(struct termios *termios_p, speed_t speed) { in cfsetospeed() argument
9 termios_p->c_ospeed = speed; in cfsetospeed()
Dtcsetattr.c8 int tcsetattr(int fd, int optional_actions, const struct termios* termios_p) { in tcsetattr() argument
9 return ki_tcsetattr(fd, optional_actions, termios_p); in tcsetattr()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
Dostermios.h31 int tcgetattr(int fd,struct termios *termios_p);
32 int tcsetattr(int fd,int optional_actions,const struct termios *termios_p);
Dmount_node_tty.h38 virtual Error Tcgetattr(struct termios* termios_p);
40 const struct termios *termios_p);
Dmount_node_tty.cc287 Error MountNodeTty::Tcgetattr(struct termios* termios_p) { in Tcgetattr() argument
289 *termios_p = termios_; in Tcgetattr()
294 const struct termios *termios_p) { in Tcsetattr() argument
296 termios_ = *termios_p; in Tcsetattr()
Dmount_node.h88 virtual Error Tcgetattr(struct termios* termios_p);
90 const struct termios *termios_p);
Dmount_fuse.h54 virtual Error Tcgetattr(struct termios* termios_p);
56 const struct termios *termios_p);
Dmount_node.cc162 Error MountNode::Tcgetattr(struct termios* termios_p) { in Tcgetattr() argument
167 const struct termios *termios_p) { in Tcsetattr() argument
Dkernel_intercept.cc318 int ki_tcgetattr(int fd, struct termios* termios_p) { in ki_tcgetattr() argument
320 return s_kp->tcgetattr(fd, termios_p); in ki_tcgetattr()
324 const struct termios *termios_p) { in ki_tcsetattr() argument
326 return s_kp->tcsetattr(fd, optional_actions, termios_p); in ki_tcsetattr()
Dkernel_intercept.h94 int ki_tcgetattr(int fd, struct termios* termios_p);
96 const struct termios *termios_p);
Dkernel_proxy.h143 virtual int tcgetattr(int fd, struct termios* termios_p);
145 const struct termios *termios_p);
Dmount_fuse.cc256 Error MountNodeFuse::Tcgetattr(struct termios* termios_p) { in Tcgetattr() argument
262 const struct termios* termios_p) { in Tcsetattr() argument
Dkernel_proxy.cc871 int KernelProxy::tcgetattr(int fd, struct termios* termios_p) { in tcgetattr() argument
879 error = handle->node()->Tcgetattr(termios_p); in tcgetattr()
889 const struct termios *termios_p) { in tcsetattr() argument
897 error = handle->node()->Tcsetattr(optional_actions, termios_p); in tcsetattr()
/external/qemu/
Dqemu-char.c901 static void cfmakeraw (struct termios *termios_p) in cfmakeraw() argument
903 termios_p->c_iflag &= in cfmakeraw()
905 termios_p->c_oflag &= ~OPOST; in cfmakeraw()
906 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN); in cfmakeraw()
907 termios_p->c_cflag &= ~(CSIZE|PARENB); in cfmakeraw()
908 termios_p->c_cflag |= CS8; in cfmakeraw()
910 termios_p->c_cc[VMIN] = 0; in cfmakeraw()
911 termios_p->c_cc[VTIME] = 0; in cfmakeraw()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc1697 INTERCEPTOR(int, tcgetattr, int fd, void *termios_p) {
1699 COMMON_INTERCEPTOR_ENTER(ctx, tcgetattr, fd, termios_p);
1700 int res = REAL(tcgetattr)(fd, termios_p);
1701 if (!res && termios_p)
1702 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, termios_p, struct_termios_sz);