Lines Matching full:path

14 /// Device Path Utilities protocol
22 Returns the size of the device path, in bytes.
24 @param DevicePath Points to the start of the EFI device path.
26 @return Size Size of the specified device path, in bytes, including the end-of-path tag.
37 Create a duplicate of the specified path.
39 @param DevicePath Points to the source EFI device path.
41 @retval Pointer A pointer to the duplicate device path.
52 Create a new path by appending the second device path to the first.
55 If Src1 and Src2 are both NULL, then a copy of an end-of-device-path is returned.
57 @param Src1 Points to the first device path.
58 @param Src2 Points to the second device path.
60 @retval Pointer A pointer to the newly created device path.
72 Creates a new path by appending the device node to the device path.
74 …If DevicePath is NULL then a copy of DeviceNode, followed by an end-of-device path device node is …
75 …If both DeviceNode and DevicePath are NULL then a copy of an end-of-device-path device node is ret…
77 @param DevicePath Points to the device path.
92 Creates a new path by appending the specified device path instance to the specified device path.
94 @param DevicePath Points to the device path. If NULL, then ignored.
95 @param DevicePathInstance Points to the device path instance.
97 @retval Pointer A pointer to the newly created device path
109 Creates a copy of the current device path instance and returns a pointer to the next device path
112 @param DevicePathInstance On input, this holds the pointer to the current device path
114 device path instance or NULL if there are no more device
115 path instances in the device path.
116 @param DevicePathInstanceSize On output, this holds the size of the device path instance,
120 @retval Pointer A pointer to the copy of the current device path instance.
155 Returns whether a device path is multi-instance.
157 @param DevicePath Points to the device path. If NULL, then ignored.
159 @retval TRUE The device path has more than one instance
160 @retval FALSE The device path is empty or contains only a single instance.