Searched refs:DevProto (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Utility/
H A DDevSearch.c24 /** Find a DeviceNode matching DevName or DevProto, or both.
27 If DevProto is NULL, then the protocol GUID is not used in the search.
29 If both DevName and DevProto are specified, then both must match.
33 @param DevProto GUID of the Protocol associated with the Device Abstraction.
37 @retval RETURN_INVALID_PARAMETER Both DevName and DevProto are NULL or Node is NULL.
38 @retval RETURN_DEVICE_ERROR DevName matched but DevProto did not.
45 IN GUID *DevProto,
53 if(((DevName == NULL) && (DevProto == NULL)) || (Node == NULL)) {
77 if((DevMatched != 1) && (DevProto != NULL) && (WorkNode->DevProto !
43 __DevSearch( IN CHAR16 *DevName, IN GUID *DevProto, OUT DeviceNode **Node ) argument
[all...]
H A DDevGenisis.c65 If both DevName and DevProto are NULL, register this as the Default device.
68 @param DevProto Pointer to the GUID identifying the protocol associated with this device.
69 If DevProto is NULL, startup code will not try to find instances
74 scan for instances of the protocol identified by DevProto and
84 IN GUID *DevProto,
98 if(((DevName == NULL) && (DevProto != NULL)) ||
110 Node->DevProto = DevProto;
82 __DevRegister( IN const CHAR16 *DevName, IN GUID *DevProto, IN FO_OPEN OpenFunc, IN void *InstanceList, IN int NumInstance, IN UINT32 InstanceSize, IN UINT32 Modes ) argument
/vbox/src/VBox/Devices/EFI/Firmware/StdLibPrivateInternalFiles/Include/Device/
H A DDevice.h30 const GUID *DevProto; member in struct:_Device_Node
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 ar
[all...]

Completed in 341 milliseconds