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