Searched defs:Qtd (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciDxe/
H A DEhciDebug.c69 @param Qtd The QTD to dump.
75 IN EHC_QTD *Qtd,
86 DEBUG ((EFI_D_INFO, "Queue TD @ 0x%p, data length %d\n", Qtd, (UINT32)Qtd->DataLen));
88 QtdHw = &Qtd->QtdHw;
133 EHC_QTD *Qtd; local
195 Qtd = EFI_LIST_CONTAINER (Entry, EHC_QTD, QtdList);
196 EhcDumpQtd (Qtd, NULL);
198 if (DumpBuf && (Qtd->DataLen != 0)) {
199 EhcDumpBuf (Qtd
74 EhcDumpQtd( IN EHC_QTD *Qtd, IN CHAR8 *Msg ) argument
[all...]
H A DEhciSched.c36 EHC_QTD *Qtd; local
40 // Create an inactive Qtd to terminate the short packet read.
42 Qtd = EhcCreateQtd (Ehc, NULL, NULL, 0, QTD_PID_INPUT, 0, 64);
44 if (Qtd == NULL) {
48 Qtd->QtdHw.Status = QTD_STAT_HALTED;
49 Ehc->ShortReadStop = Qtd;
568 EHC_QTD *Qtd; local
587 Qtd = EFI_LIST_CONTAINER (Entry, EHC_QTD, QtdList);
588 QtdHw = &Qtd->QtdHw;
630 Urb->Completed += Qtd
888 EHC_QTD *Qtd; local
[all...]
H A DEhciUrb.c45 EHC_QTD *Qtd; local
53 Qtd = UsbHcAllocateMem (Ehc->MemPool, sizeof (EHC_QTD));
55 if (Qtd == NULL) {
59 Qtd->Signature = EHC_QTD_SIG;
60 Qtd->Data = Data;
61 Qtd->DataLen = 0;
63 InitializeListHead (&Qtd->QtdList);
65 QtdHw = &Qtd->QtdHw;
103 // Need to fix the last pointer if the Qtd can't hold all the
113 Qtd
306 EHC_QTD *Qtd; local
373 EHC_QTD *Qtd; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciPei/
H A DEhciSched.c37 PEI_EHC_QTD *Qtd; local
40 // Create an inactive Qtd to terminate the short packet read.
42 Qtd = EhcCreateQtd (Ehc, NULL, 0, QTD_PID_INPUT, 0, 64);
44 if (Qtd == NULL) {
48 Qtd->QtdHw.Status = QTD_STAT_HALTED;
49 Ehc->ShortReadStop = Qtd;
308 PEI_EHC_QTD *Qtd; local
326 Qtd = EFI_LIST_CONTAINER (Entry, PEI_EHC_QTD, QtdList);
327 QtdHw = &Qtd->QtdHw;
369 Urb->Completed += Qtd
[all...]
H A DEhciUrb.c44 PEI_EHC_QTD *Qtd; local
52 Qtd = UsbHcAllocateMem (Ehc, Ehc->MemPool, sizeof (PEI_EHC_QTD));
54 if (Qtd == NULL) {
58 Qtd->Signature = EHC_QTD_SIG;
59 Qtd->Data = Data;
60 Qtd->DataLen = 0;
62 InitializeListHead (&Qtd->QtdList);
64 QtdHw = &Qtd->QtdHw;
101 // Need to fix the last pointer if the Qtd can't hold all the
111 Qtd
298 PEI_EHC_QTD *Qtd; local
349 PEI_EHC_QTD *Qtd; local
[all...]

Completed in 34 milliseconds