HomeSort by relevance Sort by last modified time
    Searched refs:TPL_HIGH_LEVEL (Results 1 - 25 of 56) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Event/
Tpl.c 77 if (NewTpl >= TPL_HIGH_LEVEL && OldTpl < TPL_HIGH_LEVEL) {
119 if (OldTpl >= TPL_HIGH_LEVEL && NewTpl < TPL_HIGH_LEVEL) {
120 gEfiCurrentTpl = TPL_HIGH_LEVEL;
128 if (gEfiCurrentTpl < TPL_HIGH_LEVEL) {
144 if (gEfiCurrentTpl < TPL_HIGH_LEVEL) {
Event.h 20 #define VALID_TPL(a) ((a) <= TPL_HIGH_LEVEL)
Timer.c 24 EFI_LOCK mEfiTimerLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_HIGH_LEVEL - 1);
27 EFI_LOCK mEfiSystemTimeLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_HIGH_LEVEL);
177 TPL_HIGH_LEVEL - 1,
Event.c 28 EFI_LOCK gEventQueueLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_HIGH_LEVEL);
33 LIST_ENTRY gEventQueue[TPL_HIGH_LEVEL + 1];
137 for (Index=0; Index <= TPL_HIGH_LEVEL; Index++) {
448 (NotifyTpl >= TPL_HIGH_LEVEL)) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/DpcDxe/
Dpc.c 55 LIST_ENTRY mDpcQueue[TPL_HIGH_LEVEL + 1];
90 if (DpcTpl < TPL_APPLICATION || DpcTpl > TPL_HIGH_LEVEL) {
107 // Raise the TPL level to TPL_HIGH_LEVEL for DPC list operation and save the
110 OriginalTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
141 // Raise the TPL level back to TPL_HIGH_LEVEL for DPC list operations
143 gBS->RaiseTPL (TPL_HIGH_LEVEL);
234 // Raise the TPL level to TPL_HIGH_LEVEL for DPC list operation and save the
237 OriginalTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
244 // Loop from TPL_HIGH_LEVEL down to the current TPL value
246 for (Tpl = TPL_HIGH_LEVEL; Tpl >= OriginalTpl; Tpl--) {
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtOemHookStatusCodeHandlerDxe/
WinNtOemHookStatusCodeHandlerDxe.c 65 RscHandlerProtocol->Register (OemHookStatusCodeReport, TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/DatahubStatusCodeHandlerDxe/
DatahubStatusCodeHandlerDxe.c 74 mRscHandlerProtocol->Register (DataHubStatusCodeReportWorker, TPL_HIGH_LEVEL);
DataHubStatusCodeWorker.c 51 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
79 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
117 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
150 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/EmulatorPkg/TimerDxe/
Timer.c 67 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
69 if (OriginalTPL < TPL_HIGH_LEVEL) {
112 function executes at TPL_HIGH_LEVEL. The DXE Core will
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/
MonotonicCounter.c 85 OldTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
154 OldTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/
StatusCodeHandlerRuntimeDxe.c 181 mRscHandlerProtocol->Register (SerialStatusCodeReportWorker, TPL_HIGH_LEVEL);
184 mRscHandlerProtocol->Register (RtMemoryStatusCodeReportWorker, TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Common/
EdkIIGlueDefinitionChangesBase.h 104 #define TPL_HIGH_LEVEL EFI_TPL_HIGH_LEVEL
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
DataHubStatusCodeWorker.c 51 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
79 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
117 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
150 CurrentTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/ReportStatusCodeRouter/RuntimeDxe/
ReportStatusCodeRouterRuntimeDxe.c 141 // If TPL of registered callback funtion is not TPL_HIGH_LEVEL, then event should be created
144 // be invoked under TPL_HIGH_LEVEL and no memory allocation is allowed then.
145 // If TPL is TPL_HIGH_LEVEL, then all status code will be reported immediately, without data
148 if (Tpl != TPL_HIGH_LEVEL) {
200 if (CallbackEntry->Tpl != TPL_HIGH_LEVEL) {
261 if ((CallbackEntry->Tpl == TPL_HIGH_LEVEL) || EfiAtRuntime ()) {
273 // If callback is registered with TPL lower than TPL_HIGH_LEVEL, event must be signaled at boot time to possibly wait for
284 // If data buffer is about to be used up (7/8 here), try to reallocate a buffer with double size, if not at TPL_HIGH_LEVEL.
287 if (EfiGetCurrentTpl () < TPL_HIGH_LEVEL) {
  /device/linaro/bootloader/edk2/ArmPkg/Drivers/TimerDxe/
TimerDxe.c 62 function executes at TPL_HIGH_LEVEL. The DXE Core will
159 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
308 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeDebugPrintErrorLevelLib/
DxeDebugPrintErrorLevelLib.c 221 CurrentTpl = mSystemTable->BootServices->RaiseTPL (TPL_HIGH_LEVEL);
298 CurrentTpl = mSystemTable->BootServices->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/8254TimerDxe/
Timer.c 86 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
117 function executes at TPL_HIGH_LEVEL. The DXE Core will
310 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ipf/
PlDebugSupport.c 211 OldTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
231 OldTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/SP804TimerDxe/
SP804Timer.c 78 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
111 function executes at TPL_HIGH_LEVEL. The DXE Core will
  /device/linaro/bootloader/edk2/Omap35xxPkg/TimerDxe/
Timer.c 84 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
114 function executes at TPL_HIGH_LEVEL. The DXE Core will
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
UefiLib.c 204 ASSERT (NotifyTpl <= TPL_HIGH_LEVEL);
333 the TPL to TPL_HIGH_LEVEL. This will return the current TPL. The TPL level
348 Tpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
379 ASSERT (Priority <= TPL_HIGH_LEVEL);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/
UefiLib.c 226 ASSERT (NotifyTpl <= TPL_HIGH_LEVEL);
355 the TPL to TPL_HIGH_LEVEL. This will return the current TPL. The TPL level
370 Tpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
401 ASSERT (Priority <= TPL_HIGH_LEVEL);
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/PL180MciDxe/
PL180Mci.c 244 Tpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
330 Tpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/
Thunk.c 345 OriginalTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
488 OriginalTpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/HpetTimerDxe/
HpetTimer.c 56 This function executes at TPL_HIGH_LEVEL. The DXE
421 This function executes at TPL_HIGH_LEVEL. The DXE
504 Tpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
694 Tpl = gBS->RaiseTPL (TPL_HIGH_LEVEL);
    [all...]

Completed in 381 milliseconds

1 2 3