Searched defs:pszDeviceProps (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/
H A DDevEFI.cpp2027 * @param pszDeviceProps The device property hex string to decode.
2029 static int efiParseDeviceString(PDEVEFI pThis, const char *pszDeviceProps) argument
2031 uint32_t const cbOut = (uint32_t)RTStrNLen(pszDeviceProps, RTSTR_MAX) / 2 + 1;
2039 for (uint32_t iStr = 0; pszDeviceProps[iStr]; iStr++)
2041 uint8_t u8Hb = efiGetHalfByte(pszDeviceProps[iStr]);
2224 char *pszDeviceProps;
2225 rc = CFGMR3QueryStringAllocDef(pCfg, "DeviceProps", &pszDeviceProps, NULL);
2229 if (pszDeviceProps)
2231 LogRel(("EFI: device props = %s\n", pszDeviceProps));
2232 rc = efiParseDeviceString(pThis, pszDeviceProps);
[all...]

Completed in 325 milliseconds