/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/ |
Event.c | 29 IN EFI_EVENT_NOTIFY NotifyFunction,
43 NotifyTpl - Maximum TPL to single the NotifyFunction.
45 NotifyFunction - EFI notification routine.
68 NotifyFunction,
99 IN EFI_EVENT_NOTIFY NotifyFunction,
114 NotifyTpl - Maximum TPL to singnal the NotifyFunction.
115 NotifyFunction - The listener routine.
133 NotifyFunction,
220 IN EFI_EVENT_NOTIFY NotifyFunction,
250 if (NotifyFunction == NULL) { [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/ |
Event.c | 29 IN EFI_EVENT_NOTIFY NotifyFunction,
43 NotifyTpl - Maximum TPL to single the NotifyFunction.
45 NotifyFunction - EFI notification routine.
67 NotifyFunction,
202 IN EFI_EVENT_NOTIFY NotifyFunction,
231 if (NotifyFunction == NULL) {
236 WorkerNotifyFunction = NotifyFunction;
251 if (NotifyFunction == NULL) {
253 // CreatEventEx will check NotifyFunction is NULL or not
257 WorkerNotifyFunction = NotifyFunction;
[all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/ |
UefiNotTiano.c | 87 @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
112 if (NotifyFunction == NULL) {
117 WorkerNotifyFunction = NotifyFunction;
132 if (NotifyFunction == NULL) {
134 // CreatEventEx will check NotifyFunction is NULL or not
138 WorkerNotifyFunction = NotifyFunction;
198 @param NotifyFunction The notification function to call when the event is signaled.
199 @param NotifyContext The content to pass to NotifyFunction when the event is signaled. [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/ |
UefiNotTiano.c | 86 @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,
[all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/ |
UefiNotTiano.c | 87 @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
118 if (NotifyFunction == NULL) {
120 // CreateEventEx will check NotifyFunction is NULL or not and return error.
121 // Use dummy routine for the case NotifyFunction is NULL.
125 WorkerNotifyFunction = NotifyFunction;
182 @param NotifyFunction The notification function to call when the event is signaled.
183 @param NotifyContext The content to pass to NotifyFunction when the event is signaled.
194 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/WatchdogTimerDxe/ |
WatchdogTimer.c | 93 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 is not NULL, and a handler is already registered, [all...] |
WatchdogTimer.h | 35 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
|
/device/linaro/bootloader/edk2/EmulatorPkg/TimerDxe/ |
Timer.c | 89 IN EFI_TIMER_NOTIFY NotifyFunction
95 This function registers the handler NotifyFunction so it is called every time
97 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
104 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
111 NotifyFunction - The function to call when a timer interrupt fires. This
123 EFI_ALREADY_STARTED - NotifyFunction is not NULL, and a handler is already
126 EFI_INVALID_PARAMETER - NotifyFunction is NULL, and a handler was not
136 if (NotifyFunction == NULL && mTimerNotifyFunction == NULL) {
140 if (NotifyFunction != NULL && mTimerNotifyFunction != NULL) { [all...] |
Timer.h | 50 IN EFI_TIMER_NOTIFY NotifyFunction
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Event/ |
Event.c | 199 ASSERT (Event->NotifyFunction != NULL);
200 Event->NotifyFunction (Event, Event->NotifyContext);
286 @param NotifyFunction Pointer to the events notification function
303 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
308 return CoreCreateEventEx (Type, NotifyTpl, NotifyFunction, NotifyContext, NULL, Event);
319 @param NotifyFunction Pointer to the events notification function
338 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL
355 return CoreCreateEventInternal (Type, NotifyTpl, NotifyFunction, NotifyContext, EventGroup, Event);
364 @param NotifyFunction Pointer to the events notification function
383 IN EFI_EVENT_NOTIFY NotifyFunction, OPTIONAL [all...] |
Event.h | 58 EFI_EVENT_NOTIFY NotifyFunction;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/ |
EfiSmmDriverLib.h | 165 IN EFI_EVENT_NOTIFY NotifyFunction,
193 IN EFI_EVENT_NOTIFY NotifyFunction,
|
/device/linaro/bootloader/edk2/StdLib/LibC/Time/ |
itimer.c | 170 EFI_EVENT_NOTIFY NotifyFunction;
180 NotifyFunction = iTimerRealNotifyFunction;
187 NotifyFunction = iTimerVirtualNotifyFunction;
194 NotifyFunction = iTimerProfNotifyFunction;
219 NotifyFunction,
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/TimerDxe/ |
Timer.c | 100 This function registers the handler NotifyFunction so it is called every time
102 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
109 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
113 @param NotifyFunction The function to call when a timer interrupt fires. This
120 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
122 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
131 IN EFI_TIMER_NOTIFY NotifyFunction
134 if ((NotifyFunction == NULL) && (mTimerNotifyFunction == NULL)) {
138 if ((NotifyFunction != NULL) && (mTimerNotifyFunction != NULL)) { [all...] |
/device/linaro/bootloader/edk2/ArmPkg/Drivers/TimerDxe/ |
TimerDxe.c | 48 This function registers the handler NotifyFunction so it is called every time
50 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
57 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
61 @param NotifyFunction The function to call when a timer interrupt fires. This
68 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
70 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
79 IN EFI_TIMER_NOTIFY NotifyFunction
82 if ((NotifyFunction == NULL) && (mTimerNotifyFunction == NULL)) {
86 if ((NotifyFunction != NULL) && (mTimerNotifyFunction != NULL)) { [all...] |
/device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/SP804TimerDxe/ |
SP804Timer.c | 97 This function registers the handler NotifyFunction so it is called every time
99 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
106 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
110 @param NotifyFunction The function to call when a timer interrupt fires. This
117 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
119 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
128 IN EFI_TIMER_NOTIFY NotifyFunction
131 if ((NotifyFunction == NULL) && (mTimerNotifyFunction == NULL)) {
135 if ((NotifyFunction != NULL) && (mTimerNotifyFunction != NULL)) { [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/Runtime/ |
Runtime.h | 60 EFI_EVENT_NOTIFY NotifyFunction;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/Timer/ |
Timer.h | 69 IN EFI_TIMER_NOTIFY NotifyFunction
75 This function registers the handler NotifyFunction so it is called every time
77 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
84 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
91 NotifyFunction - The function to call when a timer interrupt fires. This
103 EFI_ALREADY_STARTED - NotifyFunction is not NULL, and a handler is already
106 EFI_INVALID_PARAMETER - NotifyFunction is NULL, and a handler was not
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Core/Dxe/ArchProtocol/WatchdogTimer/ |
WatchdogTimer.h | 66 IN EFI_WATCHDOG_TIMER_NOTIFY NotifyFunction
75 NotifyFunction is registered, then the NotifyFunction will be called before
76 the Runtime Service ResetSystem() is called. If NotifyFunction is NULL, then
87 NotifyFunction - The function to call when the watchdog timer fires. If this
95 EFI_ALREADY_STARTED - NotifyFunction is not NULL, and a handler is already
98 EFI_INVALID_PARAMETER - NotifyFunction is NULL, and a handler was not
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
Runtime.h | 85 /// The same as NotifyFunction passed into CreateEvent().
87 EFI_EVENT_NOTIFY NotifyFunction;
|
Timer.h | 52 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
|
WatchdogTimer.h | 51 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
|
/device/linaro/bootloader/edk2/Nt32Pkg/TimerDxe/ |
Timer.h | 80 IN EFI_TIMER_NOTIFY NotifyFunction
91 NotifyFunction - TODO: add argument description
|
/device/linaro/bootloader/edk2/Omap35xxPkg/TimerDxe/ |
Timer.c | 100 This function registers the handler NotifyFunction so it is called every time
102 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
109 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
113 @param NotifyFunction The function to call when a timer interrupt fires. This
120 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
122 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
131 IN EFI_TIMER_NOTIFY NotifyFunction
134 if ((NotifyFunction == NULL) && (mTimerNotifyFunction == NULL)) {
138 if ((NotifyFunction != NULL) && (mTimerNotifyFunction != NULL)) { [all...] |
/device/linaro/bootloader/edk2/PcAtChipsetPkg/8254TimerDxe/ |
Timer.c | 102 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 != NULL && mTimerNotifyFunction != NULL) { [all...] |