Home | History | Annotate | Download | only in altq

Lines Matching refs:dev_t

56 typedef int d_open_t(dev_t, int, int, struct lwp *);
57 typedef int d_close_t(dev_t, int, int, struct lwp *);
58 typedef int d_ioctl_t(dev_t, u_long, void *, int, struct lwp *);
62 typedef int d_open_t(dev_t, int, int, struct proc *);
63 typedef int d_close_t(dev_t, int, int, struct proc *);
64 typedef int d_ioctl_t(dev_t, u_long, void *, int, struct proc *);
70 int altqopen(dev_t, int, int, struct proc *);
71 int altqclose(dev_t, int, int, struct proc *);
72 int altqioctl(dev_t, u_long, void *, int, struct proc *);
84 dev_t dev; /* make_dev result for later destroy_dev */