Lines Matching refs:NotifyFunction
102 This function registers the handler NotifyFunction so it is called every time
104 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
111 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
116 @param NotifyFunction The function to call when a timer interrupt fires. This
124 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
126 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
135 IN EFI_TIMER_NOTIFY NotifyFunction
141 if (NotifyFunction == NULL && mTimerNotifyFunction == NULL) {
145 if (NotifyFunction != NULL && mTimerNotifyFunction != NULL) {
149 mTimerNotifyFunction = NotifyFunction;