Symbol: ohci_isochronous_td
src/add-ons/kernel/busses/usb/ohci.cpp
1061
ohci_endpoint_descriptor *endpoint, ohci_isochronous_td *firstDescriptor,
src/add-ons/kernel/busses/usb/ohci.cpp
1062
ohci_isochronous_td *lastDescriptor, bool directionIn)
src/add-ons/kernel/busses/usb/ohci.cpp
1336
ohci_isochronous_td *descriptor
src/add-ons/kernel/busses/usb/ohci.cpp
1337
= (ohci_isochronous_td *)transfer->first_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
1346
if (descriptor == (ohci_isochronous_td*)transfer->last_descriptor) {
src/add-ons/kernel/busses/usb/ohci.cpp
1348
descriptor = (ohci_isochronous_td *)transfer->first_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
1353
= (ohci_isochronous_td *)descriptor->next_done_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
1400
if (descriptor == (ohci_isochronous_td*)transfer->last_descriptor)
src/add-ons/kernel/busses/usb/ohci.cpp
1404
= (ohci_isochronous_td *)descriptor->next_done_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
1443
(ohci_isochronous_td*)transfer->data_descriptor,
src/add-ons/kernel/busses/usb/ohci.cpp
1453
(ohci_isochronous_td*)transfer->first_descriptor);
src/add-ons/kernel/busses/usb/ohci.cpp
1619
ohci_isochronous_td *firstDescriptor = NULL;
src/add-ons/kernel/busses/usb/ohci.cpp
1620
ohci_isochronous_td *lastDescriptor = NULL;
src/add-ons/kernel/busses/usb/ohci.cpp
1706
ohci_isochronous_td *first, ohci_isochronous_td *last)
src/add-ons/kernel/busses/usb/ohci.cpp
1709
ohci_isochronous_td *tail
src/add-ons/kernel/busses/usb/ohci.cpp
1710
= (ohci_isochronous_td*)endpoint->tail_logical_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
1915
ohci_isochronous_td *tail = _CreateIsochronousDescriptor(0);
src/add-ons/kernel/busses/usb/ohci.cpp
2093
ohci_isochronous_td *
src/add-ons/kernel/busses/usb/ohci.cpp
2096
ohci_isochronous_td *descriptor = NULL;
src/add-ons/kernel/busses/usb/ohci.cpp
2100
sizeof(ohci_isochronous_td)) != B_OK) {
src/add-ons/kernel/busses/usb/ohci.cpp
2121
sizeof(ohci_isochronous_td));
src/add-ons/kernel/busses/usb/ohci.cpp
2133
OHCI::_FreeIsochronousDescriptor(ohci_isochronous_td *descriptor)
src/add-ons/kernel/busses/usb/ohci.cpp
2149
OHCI::_CreateIsochronousDescriptorChain(ohci_isochronous_td **_firstDescriptor,
src/add-ons/kernel/busses/usb/ohci.cpp
2150
ohci_isochronous_td **_lastDescriptor, Transfer *transfer)
src/add-ons/kernel/busses/usb/ohci.cpp
2177
ohci_isochronous_td *firstDescriptor = NULL;
src/add-ons/kernel/busses/usb/ohci.cpp
2178
ohci_isochronous_td *lastDescriptor = *_firstDescriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
2214
ohci_isochronous_td *descriptor = _CreateIsochronousDescriptor(
src/add-ons/kernel/busses/usb/ohci.cpp
2265
OHCI::_FreeIsochronousDescriptorChain(ohci_isochronous_td *topDescriptor)
src/add-ons/kernel/busses/usb/ohci.cpp
2267
ohci_isochronous_td *current = topDescriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
2268
ohci_isochronous_td *next = NULL;
src/add-ons/kernel/busses/usb/ohci.cpp
2271
next = (ohci_isochronous_td *)current->next_done_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
2336
OHCI::_WriteIsochronousDescriptorChain(ohci_isochronous_td *topDescriptor,
src/add-ons/kernel/busses/usb/ohci.cpp
2339
ohci_isochronous_td *current = topDescriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
2384
current = (ohci_isochronous_td *)current->next_logical_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
2454
OHCI::_ReadIsochronousDescriptorChain(ohci_isochronous_td *topDescriptor,
src/add-ons/kernel/busses/usb/ohci.cpp
2457
ohci_isochronous_td *current = topDescriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
2500
current = (ohci_isochronous_td *)current->next_done_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
2540
OHCI::_LinkIsochronousDescriptors(ohci_isochronous_td *first,
src/add-ons/kernel/busses/usb/ohci.cpp
2541
ohci_isochronous_td *second, ohci_isochronous_td *nextDone)
src/add-ons/kernel/busses/usb/ohci.cpp
2683
OHCI::_PrintDescriptorChain(ohci_isochronous_td *topDescriptor)
src/add-ons/kernel/busses/usb/ohci.cpp
2703
topDescriptor = (ohci_isochronous_td *)topDescriptor->next_done_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
708
ohci_isochronous_td *descriptor
src/add-ons/kernel/busses/usb/ohci.cpp
709
= (ohci_isochronous_td *)current->first_descriptor;
src/add-ons/kernel/busses/usb/ohci.cpp
716
== (ohci_isochronous_td*)current->last_descriptor)
src/add-ons/kernel/busses/usb/ohci.cpp
721
= (ohci_isochronous_td *)
src/add-ons/kernel/busses/usb/ohci.h
125
ohci_isochronous_td * _CreateIsochronousDescriptor(
src/add-ons/kernel/busses/usb/ohci.h
128
ohci_isochronous_td *descriptor);
src/add-ons/kernel/busses/usb/ohci.h
130
ohci_isochronous_td **firstDescriptor,
src/add-ons/kernel/busses/usb/ohci.h
131
ohci_isochronous_td **lastDescriptor,
src/add-ons/kernel/busses/usb/ohci.h
134
ohci_isochronous_td *topDescriptor);
src/add-ons/kernel/busses/usb/ohci.h
146
ohci_isochronous_td *topDescriptor,
src/add-ons/kernel/busses/usb/ohci.h
150
ohci_isochronous_td *topDescriptor,
src/add-ons/kernel/busses/usb/ohci.h
160
ohci_isochronous_td *first,
src/add-ons/kernel/busses/usb/ohci.h
161
ohci_isochronous_td *second,
src/add-ons/kernel/busses/usb/ohci.h
162
ohci_isochronous_td *nextDone);
src/add-ons/kernel/busses/usb/ohci.h
185
ohci_isochronous_td *topDescriptor);
src/add-ons/kernel/busses/usb/ohci.h
75
ohci_isochronous_td *firstDescriptor,
src/add-ons/kernel/busses/usb/ohci.h
76
ohci_isochronous_td *lastDescriptor,
src/add-ons/kernel/busses/usb/ohci.h
98
ohci_isochronous_td *first,
src/add-ons/kernel/busses/usb/ohci.h
99
ohci_isochronous_td *last);