Lines Matching defs:Hid
3 * Module Name: utids - support for device IDs - HID, UID, CID, SUB, CLS
166 * ReturnId - Where the string HID is returned
171 * ID of the device. The HID is either an 32-bit encoded EISAID
185 ACPI_PNP_DEVICE_ID *Hid;
211 /* Allocate a buffer for the HID */
213 Hid = ACPI_ALLOCATE_ZEROED (
215 if (!Hid)
223 Hid->String = ACPI_ADD_PTR (char, Hid, sizeof (ACPI_PNP_DEVICE_ID));
229 AcpiExEisaIdToString (Hid->String, ObjDesc->Integer.Value);
233 strcpy (Hid->String, ObjDesc->String.Pointer);
236 Hid->Length = Length;
237 *ReturnId = Hid;