Home | History | Annotate | Download | only in RuntimeDxe

Lines Matching refs:Tpl

86   will create an event such that the callback function is only invoked at the TPL for which it was

89 If the handler does not have a TPL dependency, it should register for a callback at TPL high. The
99 @param[in] Tpl TPL at which callback can be safely invoked.
112 IN EFI_TPL Tpl
138 CallbackEntry->Tpl = Tpl;
141 // If TPL of registered callback funtion is not TPL_HIGH_LEVEL, then event should be created
145 // If TPL is TPL_HIGH_LEVEL, then all status code will be reported immediately, without data
148 if (Tpl != TPL_HIGH_LEVEL) {
154 Tpl,
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
274 // allowed TPL to report status code. Related data should also be stored in data buffer.