Lines Matching full:string

22  *              return_id           - Where the string HID is returned
28 * Integer or a String. A string is always returned. An EISAID
29 * is converted to a string.
52 /* Get the size of the String to be returned, includes null terminator */ in acpi_ut_execute_HID()
57 length = obj_desc->string.length + 1; in acpi_ut_execute_HID()
70 /* Area for the string starts after PNP_DEVICE_ID struct */ in acpi_ut_execute_HID()
72 hid->string = in acpi_ut_execute_HID()
75 /* Convert EISAID to a string or simply copy existing string */ in acpi_ut_execute_HID()
78 acpi_ex_eisa_id_to_string(hid->string, obj_desc->integer.value); in acpi_ut_execute_HID()
80 strcpy(hid->string, obj_desc->string.pointer); in acpi_ut_execute_HID()
99 * return_id - Where the string UID is returned
105 * EISAID) or a string. Always returns a string. A 64-bit integer
106 * is converted to a decimal string.
130 /* Get the size of the String to be returned, includes null terminator */ in acpi_ut_execute_UID()
135 length = obj_desc->string.length + 1; in acpi_ut_execute_UID()
148 /* Area for the string starts after PNP_DEVICE_ID struct */ in acpi_ut_execute_UID()
150 uid->string = in acpi_ut_execute_UID()
153 /* Convert an Integer to string, or just copy an existing string */ in acpi_ut_execute_UID()
156 acpi_ex_integer_to_string(uid->string, obj_desc->integer.value); in acpi_ut_execute_UID()
158 strcpy(uid->string, obj_desc->string.pointer); in acpi_ut_execute_UID()
189 * 2) String (PCI ID format, e.g. "PCI\VEN_vvvv&DEV_dddd&SUBSYS_ssssssss")
191 * The Integer CIDs are converted to string format by this function.
223 * a Package of Integers/Strings or a single Integer or String. in acpi_ut_execute_CID()
225 * correct type (Integer or String). in acpi_ut_execute_CID()
230 } else { /* Single Integer or String CID */ in acpi_ut_execute_CID()
239 /* String lengths include null terminator */ in acpi_ut_execute_CID()
249 string_area_size += cid_objects[i]->string.length + 1; in acpi_ut_execute_CID()
284 /* Convert the Integer (EISAID) CID to a string */ in acpi_ut_execute_CID()
291 /* Copy the String CID from the returned object */ in acpi_ut_execute_CID()
292 strcpy(next_id_string, cid_objects[i]->string.pointer); in acpi_ut_execute_CID()
293 length = cid_objects[i]->string.length + 1; in acpi_ut_execute_CID()
296 cid_list->ids[i].string = next_id_string; in acpi_ut_execute_CID()
327 * The returned string has format "BBSSPP", where:
354 /* Get the size of the String to be returned, includes null terminator */ in acpi_ut_execute_CLS()
385 /* Area for the string starts after PNP_DEVICE_ID struct */ in acpi_ut_execute_CLS()
387 cls->string = in acpi_ut_execute_CLS()
390 /* Simply copy existing string */ in acpi_ut_execute_CLS()
392 acpi_ex_pci_cls_to_string(cls->string, class_code); in acpi_ut_execute_CLS()