Lines Matching refs:NotifyFunction
42 This function registers the handler NotifyFunction so it is called every time
44 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
51 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
55 @param NotifyFunction The function to call when a timer interrupt fires.
64 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
66 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
75 IN EFI_TIMER_NOTIFY NotifyFunction
407 This function registers the handler NotifyFunction so it is called every time
409 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
416 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
420 @param NotifyFunction The function to call when a timer interrupt fires.
429 @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
431 @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
440 IN EFI_TIMER_NOTIFY NotifyFunction
446 if (NotifyFunction == NULL && mTimerNotifyFunction == NULL) {
449 if (NotifyFunction != NULL && mTimerNotifyFunction != NULL) {
456 mTimerNotifyFunction = NotifyFunction;