Lines Matching refs:string
79 newsize += key->string.length + 1; in acpi_extract_apple_properties()
83 newsize += val->string.length + 1; in acpi_extract_apple_properties()
117 newprops[k].string.length = key->string.length; in acpi_extract_apple_properties()
118 newprops[k].string.pointer = free_space; in acpi_extract_apple_properties()
119 memcpy(free_space, key->string.pointer, key->string.length); in acpi_extract_apple_properties()
120 free_space += key->string.length + 1; in acpi_extract_apple_properties()
126 newprops[v].string.length = val->string.length; in acpi_extract_apple_properties()
127 newprops[v].string.pointer = free_space; in acpi_extract_apple_properties()
128 memcpy(free_space, val->string.pointer, in acpi_extract_apple_properties()
129 val->string.length); in acpi_extract_apple_properties()
130 free_space += val->string.length + 1; in acpi_extract_apple_properties()