Lines Matching defs:arg
457 static int modem_input_wait(struct slgt_info *info,int arg);
952 * arg command argument/context
957 unsigned int cmd, unsigned long arg)
960 void __user *argp = (void __user *)arg;
976 return modem_input_wait(info,(int)arg);
986 return set_xsync(info, (int)arg);
990 return set_xctrl(info, (int)arg);
1004 ret = set_txidle(info, (int)arg);
1007 ret = tx_enable(info, (int)arg);
1010 ret = rx_enable(info, (int)arg);
1022 ret = set_interface(info,(int)arg);
1121 unsigned int cmd, unsigned long arg)
1132 rc = set_params32(info, compat_ptr(arg));
1136 rc = get_params32(info, compat_ptr(arg));
1150 rc = ioctl(tty, cmd, (unsigned long)compat_ptr(arg));
1153 rc = ioctl(tty, cmd, arg);
3023 static int modem_input_wait(struct slgt_info *info,int arg)
3058 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
3059 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
3060 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
3061 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {