Lines Matching defs:ControllerHandle

25   @param  ControllerHandle                      Handle of the controller to be
33 by ControllerHandle.
43 IN EFI_HANDLE ControllerHandle,
62 // Make sure ControllerHandle is valid
64 Status = CoreValidateHandle (ControllerHandle);
69 Handle = ControllerHandle;
84 // Connect all drivers to ControllerHandle
91 ControllerHandle,
105 // If recursive, then connect all drivers to all of ControllerHandle's children
116 Status = CoreValidateHandle (ControllerHandle);
128 // Count ControllerHandle's children
143 // Allocate a handle buffer for ControllerHandle's children
152 // Fill in a handle buffer with ControllerHandle's children
161 ChildHandleBuffer[ChildHandleCount] = OpenData->ControllerHandle;
185 // Free the handle buffer of ControllerHandle's children
320 @param ControllerHandle Handle of the controller to be
328 specified by ControllerHandle.
331 connected to ControllerHandle.
335 ControllerHandle.
340 IN EFI_HANDLE ControllerHandle,
413 // Add the Platform Driver Override Protocol drivers for ControllerHandle next
425 ControllerHandle,
442 // Add the Driver Family Override Protocol drivers for ControllerHandle
480 ControllerHandle,
566 // Loop until no more drivers can be started on ControllerHandle
574 // ControllerHandle.
584 ControllerHandle,
593 // A driver was found that supports ControllerHandle, so attempt to start the driver
594 // on ControllerHandle.
599 ControllerHandle,
606 // The driver was successfully started on ControllerHandle, so set a flag
621 // If at least one driver was started on ControllerHandle, then return EFI_SUCCESS.
637 // Otherwise, no drivers were started on ControllerHandle, so return EFI_NOT_FOUND
647 @param ControllerHandle ControllerHandle The handle of
652 disconnect from ControllerHandle.
659 ControllerHandle.
662 not managing ControllerHandle.
663 @retval EFI_INVALID_PARAMETER ControllerHandle is NULL.
670 drivers from ControllerHandle.
679 IN EFI_HANDLE ControllerHandle,
704 // Make sure ControllerHandle is valid
706 Status = CoreValidateHandle (ControllerHandle);
721 Handle = ControllerHandle;
724 // Get list of drivers that are currently managing ControllerHandle
858 if (ChildBuffer[Index] == OpenData->ControllerHandle) {
864 ChildBuffer[ChildBufferCount] = OpenData->ControllerHandle;
882 Status = DriverBinding->Stop (DriverBinding, ControllerHandle, ChildrenToStop, &ChildHandle);
885 Status = DriverBinding->Stop (DriverBinding, ControllerHandle, ChildrenToStop, ChildBuffer);
889 Status = DriverBinding->Stop (DriverBinding, ControllerHandle, 0, NULL);