Searched refs:FibreEx (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/lib/libefivar/
H A Defivar-dp-format.c698 Converts a FibreEx device path structure to its string representative.
718 FIBRECHANNELEX_DEVICE_PATH *FibreEx; local
721 FibreEx = DevPath;
722 UefiDevicePathLibCatPrint (Str, "FibreEx(0x");
723 for (Index = 0; Index < sizeof (FibreEx->WWN) / sizeof (FibreEx->WWN[0]); Index++) {
724 UefiDevicePathLibCatPrint (Str, "%02x", FibreEx->WWN[Index]);
727 for (Index = 0; Index < sizeof (FibreEx->Lun) / sizeof (FibreEx->Lun[0]); Index++) {
728 UefiDevicePathLibCatPrint (Str, "%02x", FibreEx
[all...]
H A Defivar-dp-parse.c1219 Converts a text device path node to FibreEx device path structure.
1223 @return A pointer to the newly-created FibreEx device path structure.
1234 FIBRECHANNELEX_DEVICE_PATH *FibreEx; local
1238 FibreEx = (FIBRECHANNELEX_DEVICE_PATH *) CreateDeviceNode (
1244 FibreEx->Reserved = 0;
1245 Strtoi64 (WWNStr, (UINT64 *) (&FibreEx->WWN));
1246 Strtoi64 (LunStr, (UINT64 *) (&FibreEx->Lun));
1248 *(UINT64 *) (&FibreEx->WWN) = SwapBytes64 (*(UINT64 *) (&FibreEx->WWN));
1249 *(UINT64 *) (&FibreEx
[all...]

Completed in 101 milliseconds