Lines Matching refs:new
623 struct termios *new = (struct termios *)data; in ttydev_ioctl() local
632 new->c_iflag = in ttydev_ioctl()
633 (old->c_iflag & lock->c_iflag) | (new->c_iflag & ~lock->c_iflag); in ttydev_ioctl()
634 new->c_oflag = in ttydev_ioctl()
635 (old->c_oflag & lock->c_oflag) | (new->c_oflag & ~lock->c_oflag); in ttydev_ioctl()
636 new->c_cflag = in ttydev_ioctl()
637 (old->c_cflag & lock->c_cflag) | (new->c_cflag & ~lock->c_cflag); in ttydev_ioctl()
638 new->c_lflag = in ttydev_ioctl()
639 (old->c_lflag & lock->c_lflag) | (new->c_lflag & ~lock->c_lflag); in ttydev_ioctl()
642 new->c_cc[cc] = old->c_cc[cc]; in ttydev_ioctl()
644 new->__c_ispeed = old->__c_ispeed; in ttydev_ioctl()
646 new->__c_ospeed = old->__c_ospeed; in ttydev_ioctl()