Lines Matching refs:obj_desc
180 acpi_ds_get_buffer_field_arguments(union acpi_operand_object *obj_desc) in acpi_ds_get_buffer_field_arguments() argument
186 ACPI_FUNCTION_TRACE_PTR(ds_get_buffer_field_arguments, obj_desc); in acpi_ds_get_buffer_field_arguments()
188 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_buffer_field_arguments()
194 extra_desc = acpi_ns_get_secondary_object(obj_desc); in acpi_ds_get_buffer_field_arguments()
195 node = obj_desc->buffer_field.node; in acpi_ds_get_buffer_field_arguments()
225 acpi_ds_get_bank_field_arguments(union acpi_operand_object *obj_desc) in acpi_ds_get_bank_field_arguments() argument
231 ACPI_FUNCTION_TRACE_PTR(ds_get_bank_field_arguments, obj_desc); in acpi_ds_get_bank_field_arguments()
233 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_bank_field_arguments()
239 extra_desc = acpi_ns_get_secondary_object(obj_desc); in acpi_ds_get_bank_field_arguments()
240 node = obj_desc->bank_field.node; in acpi_ds_get_bank_field_arguments()
257 status = acpi_ut_add_address_range(obj_desc->region.space_id, in acpi_ds_get_bank_field_arguments()
258 obj_desc->region.address, in acpi_ds_get_bank_field_arguments()
259 obj_desc->region.length, node); in acpi_ds_get_bank_field_arguments()
276 acpi_status acpi_ds_get_buffer_arguments(union acpi_operand_object *obj_desc) in acpi_ds_get_buffer_arguments() argument
281 ACPI_FUNCTION_TRACE_PTR(ds_get_buffer_arguments, obj_desc); in acpi_ds_get_buffer_arguments()
283 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_buffer_arguments()
289 node = obj_desc->buffer.node; in acpi_ds_get_buffer_arguments()
293 obj_desc)); in acpi_ds_get_buffer_arguments()
302 obj_desc->buffer.aml_length, in acpi_ds_get_buffer_arguments()
303 obj_desc->buffer.aml_start); in acpi_ds_get_buffer_arguments()
320 acpi_status acpi_ds_get_package_arguments(union acpi_operand_object *obj_desc) in acpi_ds_get_package_arguments() argument
325 ACPI_FUNCTION_TRACE_PTR(ds_get_package_arguments, obj_desc); in acpi_ds_get_package_arguments()
327 if (obj_desc->common.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_package_arguments()
333 node = obj_desc->package.node; in acpi_ds_get_package_arguments()
337 obj_desc)); in acpi_ds_get_package_arguments()
346 obj_desc->package.aml_length, in acpi_ds_get_package_arguments()
347 obj_desc->package.aml_start); in acpi_ds_get_package_arguments()
364 acpi_status acpi_ds_get_region_arguments(union acpi_operand_object *obj_desc) in acpi_ds_get_region_arguments() argument
370 ACPI_FUNCTION_TRACE_PTR(ds_get_region_arguments, obj_desc); in acpi_ds_get_region_arguments()
372 if (obj_desc->region.flags & AOPOBJ_DATA_VALID) { in acpi_ds_get_region_arguments()
376 extra_desc = acpi_ns_get_secondary_object(obj_desc); in acpi_ds_get_region_arguments()
383 node = obj_desc->region.node; in acpi_ds_get_region_arguments()
401 status = acpi_ut_add_address_range(obj_desc->region.space_id, in acpi_ds_get_region_arguments()
402 obj_desc->region.address, in acpi_ds_get_region_arguments()
403 obj_desc->region.length, node); in acpi_ds_get_region_arguments()