Lines Matching refs:Instance
18 Delete the instance in Multi which matches partly with Single instance
20 @param Multi A pointer to a multi-instance device path data
22 @param Single A pointer to a single-instance device path data
36 EFI_DEVICE_PATH_PROTOCOL *Instance;
49 Instance = GetNextDevicePathInstance (&Multi, &InstanceSize);
53 while (Instance != NULL) {
55 if (CompareMem (Instance, Single, MIN (SingleDpSize, InstanceSize)) != 0) {
57 // Append the device path instance which does not match with Single
60 NewDevicePath = AppendDevicePathInstance (NewDevicePath, Instance);
65 FreePool(Instance);
66 Instance = GetNextDevicePathInstance (&Multi, &InstanceSize);
75 second device path instance.
77 @param Multi A pointer to a multi-instance device path data
79 @param Single A pointer to a single-instance device path data