Lines Matching refs: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.
57 length = obj_desc->string.length + 1;
70 /* Area for the string starts after PNP_DEVICE_ID struct */
72 hid->string =
75 /* Convert EISAID to a string or simply copy existing string */
78 acpi_ex_eisa_id_to_string(hid->string, obj_desc->integer.value);
80 strcpy(hid->string, obj_desc->string.pointer);
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.
135 length = obj_desc->string.length + 1;
148 /* Area for the string starts after PNP_DEVICE_ID struct */
150 uid->string =
153 /* Convert an Integer to string, or just copy an existing string */
156 acpi_ex_integer_to_string(uid->string, obj_desc->integer.value);
158 strcpy(uid->string, obj_desc->string.pointer);
191 * The Integer CIDs are converted to string format by this function.
249 string_area_size += cid_objects[i]->string.length + 1;
284 /* Convert the Integer (EISAID) CID to a string */
292 strcpy(next_id_string, cid_objects[i]->string.pointer);
293 length = cid_objects[i]->string.length + 1;
296 cid_list->ids[i].string = next_id_string;
327 * The returned string has format "BBSSPP", where:
385 /* Area for the string starts after PNP_DEVICE_ID struct */
387 cls->string =
390 /* Simply copy existing string */
392 acpi_ex_pci_cls_to_string(cls->string, class_code);