Home | History | Annotate | Download | only in WatchdogTimerDxe

Lines Matching refs:NotifyFunction

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,
128 if (NotifyFunction != NULL && mWatchdogTimerNotifyFunction != NULL) {
132 mWatchdogTimerNotifyFunction = NotifyFunction;