Searched defs:DpcTpl (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeDpcLib/
H A DDpcLib.c54 @param[in] DpcTpl The EFI_TPL that the DPC should be invoked.
60 @retval EFI_INVALID_PARAMETER DpcTpl is not a valid EFI_TPL.
69 IN EFI_TPL DpcTpl,
77 return mDpc->QueueDpc (mDpc, DpcTpl, DpcProcedure, DpcContext);
81 Dispatch the queue of DPCs. ALL DPCs that have been queued with a DpcTpl
83 they were queued. DPCs with higher DpcTpl values are invoked before DPCs with
84 lower DpcTpl values.
68 QueueDpc( IN EFI_TPL DpcTpl, IN EFI_DPC_PROCEDURE DpcProcedure, IN VOID *DpcContext OPTIONAL ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/DpcDxe/
H A DDpc.c61 @param DpcTpl The EFI_TPL that the DPC should be invoked.
67 @retval EFI_INVALID_PARAMETER DpcTpl is not a valid EFI_TPL.
77 IN EFI_TPL DpcTpl,
88 // Make sure DpcTpl is valid
90 if (DpcTpl < TPL_APPLICATION || DpcTpl > TPL_HIGH_LEVEL) {
182 InsertTailList (&mDpcQueue[DpcTpl], &DpcEntry->ListEntry);
206 Dispatch the queue of DPCs. ALL DPCs that have been queued with a DpcTpl
208 they were queued. DPCs with higher DpcTpl values are invoked before DPCs with
209 lower DpcTpl value
75 DpcQueueDpc( IN EFI_DPC_PROTOCOL *This, IN EFI_TPL DpcTpl, IN EFI_DPC_PROCEDURE DpcProcedure, IN VOID *DpcContext OPTIONAL ) argument
[all...]

Completed in 788 milliseconds