Lines Matching refs:NotifyFunction
258 IN EFI_TIMER_NOTIFY NotifyFunction
264 This function registers the handler NotifyFunction so it is called every time
266 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
273 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
280 NotifyFunction - The function to call when a timer interrupt fires. This
292 EFI_ALREADY_STARTED - NotifyFunction is not NULL, and a handler is already
295 EFI_INVALID_PARAMETER - NotifyFunction is NULL, and a handler was not
305 if (NotifyFunction == NULL && mTimerNotifyFunction == NULL) {
309 if (NotifyFunction != NULL && mTimerNotifyFunction != NULL) {
319 mTimerNotifyFunction = NotifyFunction;