Lines Matching refs:NotifyFunction
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) {
144 if (NotifyFunction == NULL) {
151 mTimerNotifyFunction = NotifyFunction;