Home
last modified time | relevance | path

Searched refs:IdStr (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/Application/IfConfig6/
DIfConfig6.c557 CHAR16 *IdStr; in IfConfig6ParseInterfaceId() local
564 IdStr = (*Arg)->Arg; in IfConfig6ParseInterfaceId()
569 while ((*IdStr != L'\0') && (Index < 8)) { in IfConfig6ParseInterfaceId()
572 while ((*IdStr != L':') && (*IdStr != L'\0')) { in IfConfig6ParseInterfaceId()
574 if ((*IdStr <= L'F') && (*IdStr >= L'A')) { in IfConfig6ParseInterfaceId()
575 NodeVal = (UINT8)((NodeVal << 4) + *IdStr - L'A' + 10); in IfConfig6ParseInterfaceId()
576 } else if ((*IdStr <= L'f') && (*IdStr >= L'a')) { in IfConfig6ParseInterfaceId()
577 NodeVal = (UINT8)((NodeVal << 4) + *IdStr - L'a' + 10); in IfConfig6ParseInterfaceId()
578 } else if ((*IdStr <= L'9') && (*IdStr >= L'0')) { in IfConfig6ParseInterfaceId()
579 NodeVal = (UINT8)((NodeVal << 4) + *IdStr - L'0'); in IfConfig6ParseInterfaceId()
[all …]
/device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
DXenStore.c1280 CHAR8 *IdStr; in XenStoreTransactionStart() local
1284 (VOID **) &IdStr); in XenStoreTransactionStart()
1286 Transaction->Id = (UINT32)AsciiStrDecimalToUintn (IdStr); in XenStoreTransactionStart()
1287 FreePool (IdStr); in XenStoreTransactionStart()
/device/linaro/bootloader/edk2/IntelFspPkg/Tools/
DGenCfgOpt.py964 IdStr = BinFd.read(0x08)
965 ImageId = struct.unpack('<Q', IdStr)
969 … TxtBody.append("#define FSP_IMAGE_ID 0x%016X /* '%s' */\n" % (ImageId[0], IdStr))
/device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DDevicePathFromText.c3389 CHAR16 *IdStr; in DevPathFromTextBBS() local
3395 IdStr = GetNextParamStr (&TextDeviceNode); in DevPathFromTextBBS()
3400 (UINT16) (sizeof (BBS_BBS_DEVICE_PATH) + StrLen (IdStr)) in DevPathFromTextBBS()
3420 StrToAscii (IdStr, &AsciiStr); in DevPathFromTextBBS()