HomeSort by relevance Sort by last modified time
    Searched refs:DevProto (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/
DevSearch.c 24 /** 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 != NULL)) {
    [all...]
DevGenisis.c 83 If both DevName and DevProto are NULL, register this as the Default device.
86 @param DevProto Pointer to the GUID identifying the protocol associated with this device.
87 If DevProto is NULL, startup code will not try to find instances
92 scan for instances of the protocol identified by DevProto and
102 IN GUID *DevProto,
116 if(((DevName == NULL) && (DevProto != NULL)) ||
128 Node->DevProto = DevProto;
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/
Device.h 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.
    [all...]

Completed in 122 milliseconds