Home | History | Annotate | Download | only in UefiDevicePathLib

Lines Matching defs:Bbs

3388   Converts a BBS text device path node to BBS device path structure.

3392 @return A pointer to BBS device path structure.
3420 BBS_BBS_DEVICE_PATH *Bbs;
3425 Bbs = (BBS_BBS_DEVICE_PATH *) CreateDeviceNode (
3432 Bbs->DeviceType = BBS_TYPE_FLOPPY;
3434 Bbs->DeviceType = BBS_TYPE_HARDDRIVE;
3436 Bbs->DeviceType = BBS_TYPE_CDROM;
3438 Bbs->DeviceType = BBS_TYPE_PCMCIA;
3440 Bbs->DeviceType = BBS_TYPE_USB;
3442 Bbs->DeviceType = BBS_TYPE_EMBEDDED_NETWORK;
3444 Bbs->DeviceType = (UINT16) Strtoi (TypeStr);
3447 AsciiStr = Bbs->String;
3450 Bbs->StatusFlag = (UINT16) Strtoi (FlagsStr);
3452 return (EFI_DEVICE_PATH_PROTOCOL *) Bbs;
3576 {L"BBS", DevPathFromTextBBS },