Symbol: uhci_soft_qh
sys/dev/usb/uhci.c
113
struct uhci_soft_qh *uhci_alloc_sqh(struct uhci_softc *);
sys/dev/usb/uhci.c
114
void uhci_free_sqh(struct uhci_softc *, struct uhci_soft_qh *);
sys/dev/usb/uhci.c
129
void uhci_add_ls_ctrl(struct uhci_softc *, struct uhci_soft_qh *);
sys/dev/usb/uhci.c
130
void uhci_add_hs_ctrl(struct uhci_softc *, struct uhci_soft_qh *);
sys/dev/usb/uhci.c
131
void uhci_add_bulk(struct uhci_softc *, struct uhci_soft_qh *);
sys/dev/usb/uhci.c
132
void uhci_remove_ls_ctrl(struct uhci_softc *, struct uhci_soft_qh *);
sys/dev/usb/uhci.c
133
void uhci_remove_hs_ctrl(struct uhci_softc *, struct uhci_soft_qh *);
sys/dev/usb/uhci.c
134
void uhci_remove_bulk(struct uhci_softc *,struct uhci_soft_qh *);
sys/dev/usb/uhci.c
1466
struct uhci_soft_qh *
sys/dev/usb/uhci.c
1469
struct uhci_soft_qh *sqh = NULL;
sys/dev/usb/uhci.c
1500
uhci_free_sqh(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
1625
struct uhci_soft_qh *sqh;
sys/dev/usb/uhci.c
1846
struct uhci_soft_qh *sqh;
sys/dev/usb/uhci.c
186
void uhci_add_intr(struct uhci_softc *, struct uhci_soft_qh *);
sys/dev/usb/uhci.c
187
void uhci_remove_intr(struct uhci_softc *, struct uhci_soft_qh *);
sys/dev/usb/uhci.c
193
static inline struct uhci_soft_qh *uhci_find_prev_qh(struct uhci_soft_qh *,
sys/dev/usb/uhci.c
1938
struct uhci_soft_qh **qhs;
sys/dev/usb/uhci.c
194
struct uhci_soft_qh *);
sys/dev/usb/uhci.c
1973
struct uhci_soft_qh *sqh;
sys/dev/usb/uhci.c
199
void uhci_dump_qhs(struct uhci_soft_qh *);
sys/dev/usb/uhci.c
200
void uhci_dump_qh(struct uhci_soft_qh *);
sys/dev/usb/uhci.c
2052
struct uhci_soft_qh *xqh;
sys/dev/usb/uhci.c
2053
struct uhci_soft_qh *sxqh;
sys/dev/usb/uhci.c
2063
sxqh = (struct uhci_soft_qh *)std;
sys/dev/usb/uhci.c
2411
struct uhci_soft_qh *sqh;
sys/dev/usb/uhci.c
2518
uhci_add_intr(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
2521
struct uhci_soft_qh *eqh;
sys/dev/usb/uhci.c
2536
uhci_remove_intr(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
2539
struct uhci_soft_qh *pqh;
sys/dev/usb/uhci.c
2561
struct uhci_soft_qh *sqh, **qhs;
sys/dev/usb/uhci.c
317
static inline struct uhci_soft_qh *
sys/dev/usb/uhci.c
318
uhci_find_prev_qh(struct uhci_soft_qh *pqh, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
346
struct uhci_soft_qh *clsqh, *chsqh, *bsqh, *sqh, *lsqh;
sys/dev/usb/uhci.c
656
uhci_dump_qh(struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
681
uhci_dump_qhs(struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
82
struct uhci_soft_qh *sqh;
sys/dev/usb/uhci.c
869
uhci_add_hs_ctrl(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
871
struct uhci_soft_qh *eqh;
sys/dev/usb/uhci.c
889
uhci_remove_hs_ctrl(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
891
struct uhci_soft_qh *pqh;
sys/dev/usb/uhci.c
91
struct uhci_soft_qh **qhs;
sys/dev/usb/uhci.c
922
uhci_add_ls_ctrl(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
924
struct uhci_soft_qh *eqh;
sys/dev/usb/uhci.c
939
uhci_remove_ls_ctrl(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
941
struct uhci_soft_qh *pqh;
sys/dev/usb/uhci.c
95
struct uhci_soft_qh *sqh;
sys/dev/usb/uhci.c
961
uhci_add_bulk(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
963
struct uhci_soft_qh *eqh;
sys/dev/usb/uhci.c
979
uhci_remove_bulk(struct uhci_softc *sc, struct uhci_soft_qh *sqh)
sys/dev/usb/uhci.c
981
struct uhci_soft_qh *pqh;
sys/dev/usb/uhcivar.h
105
#define UHCI_SQH_SIZE ((sizeof (struct uhci_soft_qh) + UHCI_QH_ALIGN - 1) / UHCI_QH_ALIGN * UHCI_QH_ALIGN)
sys/dev/usb/uhcivar.h
114
struct uhci_soft_qh *hqh; /* pointer to dummy QH */
sys/dev/usb/uhcivar.h
115
struct uhci_soft_qh *eqh; /* pointer to last QH */
sys/dev/usb/uhcivar.h
129
struct uhci_soft_qh *sc_lctl_start; /* dummy QH for low speed control */
sys/dev/usb/uhcivar.h
130
struct uhci_soft_qh *sc_lctl_end; /* last control QH */
sys/dev/usb/uhcivar.h
131
struct uhci_soft_qh *sc_hctl_start;/* dummy QH for high speed control */
sys/dev/usb/uhcivar.h
132
struct uhci_soft_qh *sc_hctl_end; /* last control QH */
sys/dev/usb/uhcivar.h
133
struct uhci_soft_qh *sc_bulk_start; /* dummy QH for bulk */
sys/dev/usb/uhcivar.h
134
struct uhci_soft_qh *sc_bulk_end; /* last bulk transfer */
sys/dev/usb/uhcivar.h
135
struct uhci_soft_qh *sc_last_qh; /* dummy QH at the end */
sys/dev/usb/uhcivar.h
139
struct uhci_soft_qh *sc_freeqhs; /* QH free list */
sys/dev/usb/uhcivar.h
51
struct uhci_soft_qh;
sys/dev/usb/uhcivar.h
55
struct uhci_soft_qh *sqh;
sys/dev/usb/uhcivar.h
99
struct uhci_soft_qh *hlink; /* soft version of qh_hlink */