Home
last modified time | relevance | path

Searched refs:DeviceNode (Results 1 – 20 of 20) sorted by relevance

/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/
DDevice.h36 } DeviceNode; typedef
41 extern DeviceNode *daDefaultDevice; ///< Device to use if nothing else found
42 extern DeviceNode *daRootDevice; ///< Device containing the root file system
43 extern DeviceNode *daCurrentDevice; ///< Device currently being accessed
60 DeviceNode * EFIAPI __DevRegister( const CHAR16 *DevName, GUID *DevProto, FO_OPEN OpenFunc,
79 EFI_STATUS EFIAPI __DevSearch( CHAR16 *DevName, GUID *DevProto, DeviceNode **Node);
130 ParsePath( const char *path, wchar_t **FullPath, DeviceNode **DevNode, int *Which, wchar_t **MapPat…
193 PathAlias(wchar_t *Path, DeviceNode **Node);
DConsole.h30 DeviceNode *Parent; ///< Points to the parent Device Node.
44 IN DeviceNode *DevNode,
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/
DDevGenisis.c27 DeviceNode *daDefaultDevice = NULL; ///< Device to use if nothing else found
28 DeviceNode *daRootDevice = NULL; ///< Device containing the root file system
29 DeviceNode *daCurrentDevice = NULL; ///< Device currently being accessed
98 DeviceNode *
110 DeviceNode *Node; in __DevRegister()
121 Node = (DeviceNode *)AllocateZeroPool(sizeof(DeviceNode)); in __DevRegister()
DDevSearch.c46 OUT DeviceNode **Node in __DevSearch()
50 DeviceNode *WorkNode; in __DevSearch()
62 WorkNode = (DeviceNode *)GetFirstNode((LIST_ENTRY *)&daDeviceList); in __DevSearch()
107 WorkNode = (DeviceNode *)GetNextNode(&daDeviceList, (LIST_ENTRY *)WorkNode); in __DevSearch()
DPath.c232 DeviceNode **Node in PathAlias()
274 OUT DeviceNode **DevNode, in ParsePath()
284 DeviceNode *Node = NULL; in ParsePath()
/device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DUefiDevicePathLibOptionalDevicePathProtocol.c382 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode, in ConvertDeviceNodeToText() argument
391 …return mDevicePathLibDevicePathToText->ConvertDeviceNodeToText (DeviceNode, DisplayOnly, AllowShor… in ConvertDeviceNodeToText()
394 return UefiDevicePathLibConvertDeviceNodeToText (DeviceNode, DisplayOnly, AllowShortcuts); in ConvertDeviceNodeToText()
DUefiDevicePathLib.c287 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode, in ConvertDeviceNodeToText() argument
292 return UefiDevicePathLibConvertDeviceNodeToText (DeviceNode, DisplayOnly, AllowShortcuts); in ConvertDeviceNodeToText()
DDevicePathFromText.c3600 EFI_DEVICE_PATH_PROTOCOL *DeviceNode; in UefiDevicePathLibConvertTextToDeviceNode() local
3626 DeviceNode = FromText (DeviceNodeStr); in UefiDevicePathLibConvertTextToDeviceNode()
3628 DeviceNode = FromText (ParamStr); in UefiDevicePathLibConvertTextToDeviceNode()
3634 return DeviceNode; in UefiDevicePathLibConvertTextToDeviceNode()
3655 EFI_DEVICE_PATH_PROTOCOL *DeviceNode; in UefiDevicePathLibConvertTextToDevicePath() local
3675 DeviceNode = UefiDevicePathLibConvertTextToDeviceNode (DeviceNodeStr); in UefiDevicePathLibConvertTextToDevicePath()
3677 NewDevicePath = AppendDevicePathNode (DevicePath, DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
3679 FreePool (DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
3683 DeviceNode = (EFI_DEVICE_PATH_PROTOCOL *) AllocatePool (END_DEVICE_PATH_LENGTH); in UefiDevicePathLibConvertTextToDevicePath()
3684 ASSERT (DeviceNode != NULL); in UefiDevicePathLibConvertTextToDevicePath()
[all …]
DUefiDevicePathLib.h417 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode,
DDevicePathToText.c2226 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode, in UefiDevicePathLibConvertDeviceNodeToText() argument
2235 if (DeviceNode == NULL) { in UefiDevicePathLibConvertDeviceNodeToText()
2247 if (DevicePathType (DeviceNode) == mUefiDevicePathLibToTextTable[Index].Type && in UefiDevicePathLibConvertDeviceNodeToText()
2248 DevicePathSubType (DeviceNode) == mUefiDevicePathLibToTextTable[Index].SubType in UefiDevicePathLibConvertDeviceNodeToText()
2258 ToText (&Str, (VOID *) DeviceNode, DisplayOnly, AllowShortcuts); in UefiDevicePathLibConvertDeviceNodeToText()
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DDevicePathToText.h45 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode,
DDevicePathUtilities.h95 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/DevicePathToText/
DDevicePathToText.h35 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode,
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordSmm/
DOpalPasswordSmm.c85 PCI_DEVICE *DeviceNode; in AddPciDeviceNode() local
95 DeviceNode = (PCI_DEVICE *) (DevList + Dev->Length); in AddPciDeviceNode()
97 DeviceNode->BusNum = BusNum; in AddPciDeviceNode()
98 DeviceNode->DevNum = DevNum; in AddPciDeviceNode()
99 DeviceNode->FuncNum = FuncNum; in AddPciDeviceNode()
230 IN OPAL_SMM_DEVICE *DeviceNode, in SaveRestoreRootportConfSpace() argument
245 while (Length < DeviceNode->Length) { in SaveRestoreRootportConfSpace()
246 DevNode = (PCI_DEVICE *)((UINT8*)DeviceNode->PciBridgeNode + Length); in SaveRestoreRootportConfSpace()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/DevicePathUtilities/
DDevicePathUtilities.h97 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode
/device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/
DUefiDevicePathLib.c760 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode, in ConvertDeviceNodeToText() argument
769 …return mDevicePathLibDevicePathToText->ConvertDeviceNodeToText (DeviceNode, DisplayOnly, AllowShor… in ConvertDeviceNodeToText()
/device/linaro/bootloader/edk2/MdePkg/Include/Library/
DDevicePathLib.h527 IN CONST EFI_DEVICE_PATH_PROTOCOL *DeviceNode,
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
DSysCalls.c566 DeviceNode *Node; in mkdir()
664 DeviceNode *Node; in open()
927 DeviceNode *FromNode; in rename()
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Console/
DdaConsole.c58 static DeviceNode *ConNode[NUM_SPECIAL];
496 DeviceNode *DevNode, in da_ConOpen()
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/UefiShell/
DdaShell.c460 DeviceNode *DevNode, in da_ShellOpen()
803 DeviceNode *Node; in __ctor_DevShell()