Lines Matching defs:arg
462 static int modem_input_wait(struct slgt_info *info,int arg);
962 * arg command argument/context
967 unsigned int cmd, unsigned long arg)
970 void __user *argp = (void __user *)arg;
986 return modem_input_wait(info,(int)arg);
996 return set_xsync(info, (int)arg);
1000 return set_xctrl(info, (int)arg);
1014 ret = set_txidle(info, (int)arg);
1017 ret = tx_enable(info, (int)arg);
1020 ret = rx_enable(info, (int)arg);
1032 ret = set_interface(info,(int)arg);
1130 unsigned int cmd, unsigned long arg)
1141 rc = set_params32(info, compat_ptr(arg));
1145 rc = get_params32(info, compat_ptr(arg));
1159 rc = ioctl(tty, cmd, (unsigned long)compat_ptr(arg));
1162 rc = ioctl(tty, cmd, arg);
3040 static int modem_input_wait(struct slgt_info *info,int arg)
3075 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
3076 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
3077 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
3078 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {