Lines Matching refs:NotifyFunction
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)) {
90 mTimerNotifyFunction = NotifyFunction;