Lines Matching defs:arg
387 static long pde_ioctl(struct proc_dir_entry *pde, struct file *file, unsigned int cmd, unsigned long arg)
393 return ioctl(file, cmd, arg);
397 static long proc_reg_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
403 return pde_ioctl(pde, file, cmd, arg);
405 rv = pde_ioctl(pde, file, cmd, arg);
412 static long pde_compat_ioctl(struct proc_dir_entry *pde, struct file *file, unsigned int cmd, unsigned long arg)
418 return compat_ioctl(file, cmd, arg);
422 static long proc_reg_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
427 return pde_compat_ioctl(pde, file, cmd, arg);
429 rv = pde_compat_ioctl(pde, file, cmd, arg);