Searched defs:termios_p (Results 1 - 13 of 13) sorted by path

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Dtty_node.cc315 Error TtyNode::Tcgetattr(struct termios* termios_p) { argument
317 *termios_p = termios_;
322 const struct termios* termios_p) {
324 termios_ = *termios_p;
321 Tcsetattr(int optional_actions, const struct termios* termios_p) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
H A Dfuse_fs.cc288 Error FuseFsNode::Tcgetattr(struct termios* termios_p) { argument
294 const struct termios* termios_p) {
293 Tcsetattr(int optional_actions, const struct termios* termios_p) argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_intercept.cc435 int ki_tcgetattr(int fd, struct termios* termios_p) { argument
437 return s_state.kp->tcgetattr(fd, termios_p);
442 const struct termios* termios_p) {
444 return s_state.kp->tcsetattr(fd, optional_actions, termios_p);
440 ki_tcsetattr(int fd, int optional_actions, const struct termios* termios_p) argument
H A Dkernel_proxy.cc987 int KernelProxy::tcgetattr(int fd, struct termios* termios_p) { argument
995 error = handle->node()->Tcgetattr(termios_p);
1006 const struct termios* termios_p) {
1014 error = handle->node()->Tcsetattr(optional_actions, termios_p);
1004 tcsetattr(int fd, int optional_actions, const struct termios* termios_p) argument
H A Dnode.cc171 Error Node::Tcgetattr(struct termios* termios_p) { argument
175 Error Node::Tcsetattr(int optional_actions, const struct termios* termios_p) { argument
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dcfgetispeed.c16 speed_t cfgetispeed(const struct termios *termios_p) { argument
17 return termios_p->c_ispeed;
H A Dcfgetospeed.c16 speed_t cfgetospeed(const struct termios *termios_p) { argument
17 return termios_p->c_ospeed;
H A Dcfsetispeed.c15 int cfsetispeed(struct termios *termios_p, speed_t speed) { argument
16 termios_p->c_ispeed = speed;
H A Dcfsetospeed.c16 int cfsetospeed(struct termios *termios_p, speed_t speed) { argument
17 termios_p->c_ospeed = speed;
H A Dcfsetspeed.c16 int cfsetspeed(struct termios *termios_p, speed_t speed) { argument
17 termios_p->c_ispeed = speed;
18 termios_p->c_ospeed = speed;
H A Dtcgetattr.c17 int tcgetattr(int fd, struct termios* termios_p) { argument
18 return ki_tcgetattr(fd, termios_p);
H A Dtcsetattr.c16 int tcsetattr(int fd, int optional_actions, const struct termios* termios_p) { argument
17 return ki_tcsetattr(fd, optional_actions, termios_p);
/external/qemu/
H A Dqemu-char.c901 static void cfmakeraw (struct termios *termios_p) argument
903 termios_p->c_iflag &=
905 termios_p->c_oflag &= ~OPOST;
906 termios_p->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
907 termios_p->c_cflag &= ~(CSIZE|PARENB);
908 termios_p->c_cflag |= CS8;
910 termios_p->c_cc[VMIN] = 0;
911 termios_p->c_cc[VTIME] = 0;

Completed in 2339 milliseconds