Symbol: ohci_soft_itd
sys/dev/usb/ohci.c
101
void ohci_hash_add_itd(struct ohci_softc *, struct ohci_soft_itd *);
sys/dev/usb/ohci.c
102
void ohci_hash_rem_itd(struct ohci_softc *, struct ohci_soft_itd *);
sys/dev/usb/ohci.c
103
struct ohci_soft_itd *ohci_hash_find_itd(struct ohci_softc *, ohci_physaddr_t);
sys/dev/usb/ohci.c
1179
struct ohci_soft_itd *sitd, *sidone, **ip;
sys/dev/usb/ohci.c
1217
struct ohci_soft_itd *sitd, *sidone, *sitdnext;
sys/dev/usb/ohci.c
1365
struct ohci_soft_itd *next;
sys/dev/usb/ohci.c
165
void ohci_dump_itd(struct ohci_soft_itd *);
sys/dev/usb/ohci.c
166
void ohci_dump_itds(struct ohci_soft_itd *);
sys/dev/usb/ohci.c
1740
ohci_hash_add_itd(struct ohci_softc *sc, struct ohci_soft_itd *sitd)
sys/dev/usb/ohci.c
1754
ohci_hash_rem_itd(struct ohci_softc *sc, struct ohci_soft_itd *sitd)
sys/dev/usb/ohci.c
1764
struct ohci_soft_itd *
sys/dev/usb/ohci.c
1768
struct ohci_soft_itd *sitd;
sys/dev/usb/ohci.c
1836
ohci_dump_itd(struct ohci_soft_itd *sitd)
sys/dev/usb/ohci.c
1857
ohci_dump_itds(struct ohci_soft_itd *sitd)
sys/dev/usb/ohci.c
1895
struct ohci_soft_itd *sitd;
sys/dev/usb/ohci.c
211
struct ohci_soft_itd *itd;
sys/dev/usb/ohci.c
3077
struct ohci_soft_itd *sitd, *nsitd;
sys/dev/usb/ohci.c
3218
struct ohci_soft_itd *sitd;
sys/dev/usb/ohci.c
594
struct ohci_soft_itd *
sys/dev/usb/ohci.c
597
struct ohci_soft_itd *sitd;
sys/dev/usb/ohci.c
636
ohci_free_sitd(struct ohci_softc *sc, struct ohci_soft_itd *sitd)
sys/dev/usb/ohci.c
78
struct ohci_soft_itd *ohci_alloc_sitd(struct ohci_softc *);
sys/dev/usb/ohci.c
79
void ohci_free_sitd(struct ohci_softc *, struct ohci_soft_itd *);
sys/dev/usb/ohcivar.h
106
struct ohci_soft_itd *sc_freeitds;
sys/dev/usb/ohcivar.h
110
struct ohci_soft_itd *sc_sidone;
sys/dev/usb/ohcivar.h
62
struct ohci_soft_itd *nextitd; /* mirrors nexttd in ITD */
sys/dev/usb/ohcivar.h
63
struct ohci_soft_itd *dnext; /* next in done list */
sys/dev/usb/ohcivar.h
65
LIST_ENTRY(ohci_soft_itd) hnext;
sys/dev/usb/ohcivar.h
72
#define OHCI_SITD_SIZE ((sizeof (struct ohci_soft_itd) + OHCI_ITD_ALIGN - 1) / OHCI_ITD_ALIGN * OHCI_ITD_ALIGN)
sys/dev/usb/ohcivar.h
97
LIST_HEAD(, ohci_soft_itd) sc_hash_itds[OHCI_HASH_SIZE];