Home | History | Annotate | Download | only in utilities

Lines Matching refs:String

166  *              ReturnId            - Where the string HID is returned
172 * Integer or a String. A string is always returned. An EISAID
173 * is converted to a string.
200 /* Get the size of the String to be returned, includes null terminator */
208 Length = ObjDesc->String.Length + 1;
221 /* Area for the string starts after PNP_DEVICE_ID struct */
223 Hid->String = ACPI_ADD_PTR (char, Hid, sizeof (ACPI_PNP_DEVICE_ID));
225 /* Convert EISAID to a string or simply copy existing string */
229 AcpiExEisaIdToString (Hid->String, ObjDesc->Integer.Value);
233 strcpy (Hid->String, ObjDesc->String.Pointer);
254 * ReturnId - Where the string UID is returned
260 * EISAID) or a string. Always returns a string. A 64-bit integer
261 * is converted to a decimal string.
288 /* Get the size of the String to be returned, includes null terminator */
296 Length = ObjDesc->String.Length + 1;
309 /* Area for the string starts after PNP_DEVICE_ID struct */
311 Uid->String = ACPI_ADD_PTR (char, Uid, sizeof (ACPI_PNP_DEVICE_ID));
313 /* Convert an Integer to string, or just copy an existing string */
317 AcpiExIntegerToString (Uid->String, ObjDesc->Integer.Value);
321 strcpy (Uid->String, ObjDesc->String.Pointer);
354 * 2) String (PCI ID format, e.g. "PCI\VEN_vvvv&DEV_dddd&SUBSYS_ssssssss")
356 * The Integer CIDs are converted to string format by this function.
392 * a Package of Integers/Strings or a single Integer or String.
394 * correct type (Integer or String).
401 else /* Single Integer or String CID */
410 /* String lengths include null terminator */
421 StringAreaSize += CidObjects[i]->String.Length + 1;
459 /* Convert the Integer (EISAID) CID to a string */
467 /* Copy the String CID from the returned object */
469 strcpy (NextIdString, CidObjects[i]->String.Pointer);
470 Length = CidObjects[i]->String.Length + 1;
473 CidList->Ids[i].String = NextIdString;
506 * The returned string has format "BBSSPP", where:
537 /* Get the size of the String to be returned, includes null terminator */
569 /* Area for the string starts after PNP_DEVICE_ID struct */
571 Cls->String = ACPI_ADD_PTR (char, Cls, sizeof (ACPI_PNP_DEVICE_ID));
573 /* Simply copy existing string */
575 AcpiExPciClsToString (Cls->String, ClassCode);