Lines Matching refs:DevProto
30 const GUID *DevProto;
48 @param DevProto Pointer to the GUID identifying the protocol associated with this device.
49 If DevProto is NULL, startup code will not try to find instances
54 scan for instances of the protocol identified by DevProto and
60 DeviceNode * EFIAPI __DevRegister( const CHAR16 *DevName, GUID *DevProto, FO_OPEN OpenFunc,
63 /** Find a DeviceNode matching DevName or DevProto, or both.
66 If DevProto is NULL, then the protocol GUID is not used in the search.
68 If both DevName and DevProto are specified, then both must match.
72 @param DevProto GUID of the Protocol associated with the Device Abstraction.
76 @retval RETURN_INVALID_PARAMETER Both DevName and DevProto are NULL or Node is NULL.
77 @retval RETURN_DEVICE_ERROR One, but not both, of DevNode and DevProto matched.
79 EFI_STATUS EFIAPI __DevSearch( CHAR16 *DevName, GUID *DevProto, DeviceNode **Node);