Searched refs:NotifyFunction (Results 1 - 25 of 26) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DUefiNotTiano.c86 @param NotifyFunction The notification function to call when the event is signaled.
87 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
98 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
114 NotifyFunction,
125 NotifyFunction,
176 @param NotifyFunction The notification function to call when the event is signaled.
177 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
188 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
204 NotifyFunction,
215 NotifyFunction,
96 EfiCreateEventLegacyBootEx( IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL IN VOID *NotifyContext, OPTIONAL OUT EFI_EVENT *LegacyBootEvent ) argument
186 EfiCreateEventReadyToBootEx( IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL IN VOID *NotifyContext, OPTIONAL OUT EFI_EVENT *ReadyToBootEvent ) argument
[all...]
H A DUefiLib.c102 If NotifyFunction is NULL, then ASSERT().
108 @param NotifyFunction Supplies the function to notify when the event is signaled.
109 @param NotifyContext The context parameter to pass to NotifyFunction.
122 IN EFI_EVENT_NOTIFY NotifyFunction,
131 ASSERT (NotifyFunction != NULL);
141 NotifyFunction,
176 If NotifyFunction is NULL, then ASSERT().
180 @param NotifyFunction Supplies the function to notify when the event is signaled.
181 @param NotifyContext The context parameter to pass to NotifyFunction.
193 IN EFI_EVENT_NOTIFY NotifyFunction,
119 EfiCreateProtocolNotifyEvent( IN EFI_GUID *ProtocolGuid, IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, IN VOID *NotifyContext, OPTIONAL OUT VOID **Registration ) argument
190 EfiNamedEventListen( IN CONST EFI_GUID *Name, IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, IN CONST VOID *NotifyContext, OPTIONAL OUT VOID *Registration OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/WatchdogTimerDxe/
H A DWatchdogTimer.c93 NotifyFunction is registered, then the NotifyFunction will be called before
94 the Runtime Service ResetSystem() is called. If NotifyFunction is NULL, then
102 @param NotifyFunction The function to call when the watchdog timer fires. If this
106 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already registered.
107 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not previously registered.
114 IN EFI_WATCHDOG_TIMER_NOTIFY NotifyFunction
118 // If NotifyFunction is NULL, and a handler was not previously registered,
121 if (NotifyFunction == NULL && mWatchdogTimerNotifyFunction == NULL) {
125 // If NotifyFunction i
[all...]
H A DWatchdogTimer.h35 NotifyFunction is registered, then the NotifyFunction will be called before
36 the Runtime Service ResetSystem() is called. If NotifyFunction is NULL, then
44 @param NotifyFunction The function to call when the watchdog timer fires. If this
48 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already registered.
49 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not previously registered.
56 IN EFI_WATCHDOG_TIMER_NOTIFY NotifyFunction
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Event/
H A DEvent.c198 ASSERT (Event->NotifyFunction != NULL);
199 Event->NotifyFunction (Event, Event->NotifyContext);
285 @param NotifyFunction Pointer to the events notification function
302 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
307 return CoreCreateEventEx (Type, NotifyTpl, NotifyFunction, NotifyContext, NULL, Event);
318 @param NotifyFunction Pointer to the events notification function
337 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
354 return CoreCreateEventInternal (Type, NotifyTpl, NotifyFunction, NotifyContext, EventGroup, Event);
363 @param NotifyFunction Pointer to the events notification function
382 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONA
299 CoreCreateEvent( IN UINT32 Type, IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL IN VOID *NotifyContext, OPTIONAL OUT EFI_EVENT *Event ) argument
334 CoreCreateEventEx( IN UINT32 Type, IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL IN CONST VOID *NotifyContext, OPTIONAL IN CONST EFI_GUID *EventGroup, OPTIONAL OUT EFI_EVENT *Event ) argument
379 CoreCreateEventInternal( IN UINT32 Type, IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL IN CONST VOID *NotifyContext, OPTIONAL IN CONST EFI_GUID *EventGroup, OPTIONAL OUT EFI_EVENT *Event ) argument
[all...]
H A DEvent.h49 EFI_EVENT_NOTIFY NotifyFunction; member in struct:__anon10921
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/
H A DUefiNotTiano.c87 @param NotifyFunction The notification function to call when the event is signaled.
88 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
99 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
120 NotifyFunction,
172 @param NotifyFunction The notification function to call when the event is signaled.
173 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
184 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
205 NotifyFunction,
97 EfiCreateEventLegacyBootEx( IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL IN VOID *NotifyContext, OPTIONAL OUT EFI_EVENT *LegacyBootEvent ) argument
182 EfiCreateEventReadyToBootEx( IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL IN VOID *NotifyContext, OPTIONAL OUT EFI_EVENT *ReadyToBootEvent ) argument
H A DUefiLib.c124 If NotifyFunction is NULL, then ASSERT().
130 @param NotifyFunction Supplies the function to notify when the event is signaled.
131 @param NotifyContext The context parameter to pass to NotifyFunction.
144 IN EFI_EVENT_NOTIFY NotifyFunction,
153 ASSERT (NotifyFunction != NULL);
163 NotifyFunction,
198 If NotifyFunction is NULL, then ASSERT().
202 @param NotifyFunction Supplies the function to notify when the event is signaled.
203 @param NotifyContext The context parameter to pass to NotifyFunction.
215 IN EFI_EVENT_NOTIFY NotifyFunction,
141 EfiCreateProtocolNotifyEvent( IN EFI_GUID *ProtocolGuid, IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, IN VOID *NotifyContext, OPTIONAL OUT VOID **Registration ) argument
212 EfiNamedEventListen( IN CONST EFI_GUID *Name, IN EFI_TPL NotifyTpl, IN EFI_EVENT_NOTIFY NotifyFunction, IN CONST VOID *NotifyContext, OPTIONAL OUT VOID *Registration OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A Ditimer.c170 EFI_EVENT_NOTIFY NotifyFunction; local
180 NotifyFunction = iTimerRealNotifyFunction;
187 NotifyFunction = iTimerVirtualNotifyFunction;
194 NotifyFunction = iTimerProfNotifyFunction;
219 NotifyFunction,
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DRuntime.h85 /// The same as NotifyFunction passed into CreateEvent().
87 EFI_EVENT_NOTIFY NotifyFunction; member in struct:_EFI_RUNTIME_EVENT_ENTRY
H A DTimer.h52 This function registers the handler NotifyFunction so it is called every time
54 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
61 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
65 @param NotifyFunction The function to call when a timer interrupt fires. This
73 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
75 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
84 IN EFI_TIMER_NOTIFY NotifyFunction
H A DWatchdogTimer.h51 NotifyFunction is registered, then the NotifyFunction will be called before
52 the Runtime Service ResetSystem() is called. If NotifyFunction is NULL, then
60 @param NotifyFunction The function to call when the watchdog timer fires. If this
65 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
67 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
75 IN EFI_WATCHDOG_TIMER_NOTIFY NotifyFunction
H A DSmbusHc.h259 @param NotifyFunction The function to call when the bus
263 @retval EFI_SUCCESS NotifyFunction was registered.
275 IN EFI_SMBUS_NOTIFY_FUNCTION NotifyFunction
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/8254TimerDxe/
H A DTimer.c102 This function registers the handler NotifyFunction so it is called every time
104 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
111 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
116 @param NotifyFunction The function to call when a timer interrupt fires. This
124 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
126 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
135 IN EFI_TIMER_NOTIFY NotifyFunction
141 if (NotifyFunction == NULL && mTimerNotifyFunction == NULL) {
145 if (NotifyFunction !
[all...]
H A DTimer.h81 @param NotifyFunction The rate to program the timer interrupt in 100 nS units. If
97 IN EFI_TIMER_NOTIFY NotifyFunction
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Ppi/
H A DSmbus2.h148 @retval EFI_SUCCESS NotifyFunction has been registered.
170 @param NotifyFunction The function to call when the bus driver
173 @retval EFI_SUCCESS NotifyFunction has been registered.
183 IN EFI_PEI_SMBUS_NOTIFY2_FUNCTION NotifyFunction
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Ppi/
H A DSmbus.h183 @param[in] NotifyFunction The function to call when the bus driver
186 @retval EFI_SUCCESS NotifyFunction has been registered.
199 IN EFI_PEI_SMBUS_NOTIFY_FUNCTION NotifyFunction
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/
H A DUefiLib.h152 If NotifyFunction is NULL, then ASSERT().
158 @param NotifyFunction Supplies the function to notify when the event is signaled.
159 @param NotifyContext The context parameter to pass to NotifyFunction.
172 IN EFI_EVENT_NOTIFY NotifyFunction,
185 If NotifyFunction is NULL, then ASSERT().
189 @param NotifyFunction Supplies the function to notify when the event is signaled.
190 @param NotifyContext The context parameter to pass to NotifyFunction.
202 IN EFI_EVENT_NOTIFY NotifyFunction,
863 @param NotifyFunction The notification function to call when the event is signaled.
864 @param NotifyContext The content to pass to NotifyFunction whe
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/HpetTimerDxe/
H A DHpetTimer.c42 This function registers the handler NotifyFunction so it is called every time
44 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
51 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
55 @param NotifyFunction The function to call when a timer interrupt fires.
64 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
66 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
75 IN EFI_TIMER_NOTIFY NotifyFunction
407 This function registers the handler NotifyFunction so it is called every time
409 handler call to the NotifyFunction
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/PiSmmCore/
H A DPiSmmIpl.c190 EFI_EVENT_NOTIFY NotifyFunction; member in struct:__anon10978
707 for (Index = 0; mSmmIplEvents[Index].NotifyFunction != NULL; Index++) {
1250 for (Index = 0; mSmmIplEvents[Index].NotifyFunction != NULL; Index++) {
1255 mSmmIplEvents[Index].NotifyFunction,
1263 mSmmIplEvents[Index].NotifyFunction,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/RuntimeDxe/
H A DRuntime.c289 RuntimeEvent->NotifyFunction (
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Uefi/
H A DUefiSpec.h398 @param NotifyFunction The pointer to the event's notification function, if any.
414 IN EFI_EVENT_NOTIFY NotifyFunction,
424 @param NotifyFunction The pointer to the event's notification function, if any.
443 IN EFI_EVENT_NOTIFY NotifyFunction OPTIONAL,
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Uefi/
H A DUefiSpec.h398 @param NotifyFunction The pointer to the event's notification function, if any.
414 IN EFI_EVENT_NOTIFY NotifyFunction,
424 @param NotifyFunction The pointer to the event's notification function, if any.
443 IN EFI_EVENT_NOTIFY NotifyFunction OPTIONAL,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Scsi/ScsiBusDxe/
H A DScsiBus.c69 NotifyFunction (
985 NotifyFunction,
1404 NotifyFunction ( function
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/
H A DDxeMain.h1416 @param NotifyFunction Pointer to the events notification function
1433 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
1446 @param NotifyFunction Pointer to the events notification function
1465 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
1477 @param NotifyFunction Pointer to the events notification function
1496 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL

Completed in 310 milliseconds

12