Home | History | Annotate | Download | only in IScsiDxe

Lines Matching refs:HexStr

319   @param[in, out]  HexStr      Pointer to the string.

332 IN OUT CHAR8 *HexStr,
338 if ((HexStr == NULL) || (BinBuffer == NULL) || (BinLength == 0)) {
351 HexStr[0] = '0';
352 HexStr[1] = 'x';
355 HexStr[Index * 2 + 2] = IScsiHexString[BinBuffer[Index] >> 4];
356 HexStr[Index * 2 + 3] = IScsiHexString[BinBuffer[Index] & 0xf];
359 HexStr[Index * 2 + 2] = '\0';
370 @param[in] HexStr The hexadecimal string.
381 IN CHAR8 *HexStr
394 if ((HexStr[0] == '0') && ((HexStr[1] == 'x') || (HexStr[1] == 'X'))) {
395 HexStr += 2;
398 Length = AsciiStrLen (HexStr);
401 TemStr[0] = HexStr[Index];