/drivers/acpi/acpica/ |
D | exdebug.c | 74 acpi_ex_do_debug_object(union acpi_operand_object *source_desc, in acpi_ex_do_debug_object() argument 80 ACPI_FUNCTION_TRACE_PTR(ex_do_debug_object, source_desc); in acpi_ex_do_debug_object() 111 if (!source_desc) { in acpi_ex_do_debug_object() 116 if (ACPI_GET_DESCRIPTOR_TYPE(source_desc) == ACPI_DESC_TYPE_OPERAND) { in acpi_ex_do_debug_object() 118 acpi_ut_get_object_type_name(source_desc)); in acpi_ex_do_debug_object() 120 if (!acpi_ut_valid_internal_object(source_desc)) { in acpi_ex_do_debug_object() 122 source_desc); in acpi_ex_do_debug_object() 125 } else if (ACPI_GET_DESCRIPTOR_TYPE(source_desc) == in acpi_ex_do_debug_object() 130 source_desc)->type), in acpi_ex_do_debug_object() 131 source_desc); in acpi_ex_do_debug_object() [all …]
|
D | exstore.c | 61 acpi_ex_store_direct_to_node(union acpi_operand_object *source_desc, 86 acpi_ex_store(union acpi_operand_object *source_desc, in acpi_ex_store() argument 97 if (!source_desc || !dest_desc) { in acpi_ex_store() 109 status = acpi_ex_store_object_to_node(source_desc, in acpi_ex_store() 160 status = acpi_ex_store_object_to_node(source_desc, in acpi_ex_store() 171 acpi_ex_store_object_to_index(source_desc, ref_desc, in acpi_ex_store() 183 source_desc, walk_state); in acpi_ex_store() 193 source_desc, in acpi_ex_store() 194 acpi_ut_get_object_type_name(source_desc))); in acpi_ex_store() 196 ACPI_DEBUG_OBJECT(source_desc, 0, 0); in acpi_ex_store() [all …]
|
D | exresnte.c | 83 union acpi_operand_object *source_desc; in acpi_ex_resolve_node_to_value() local 95 source_desc = acpi_ns_get_attached_object(node); in acpi_ex_resolve_node_to_value() 99 node, source_desc, in acpi_ex_resolve_node_to_value() 108 source_desc = acpi_ns_get_attached_object(node); in acpi_ex_resolve_node_to_value() 126 if (!source_desc) { in acpi_ex_resolve_node_to_value() 139 if (source_desc->common.type != ACPI_TYPE_PACKAGE) { in acpi_ex_resolve_node_to_value() 141 acpi_ut_get_object_type_name(source_desc))); in acpi_ex_resolve_node_to_value() 145 status = acpi_ds_get_package_arguments(source_desc); in acpi_ex_resolve_node_to_value() 150 obj_desc = source_desc; in acpi_ex_resolve_node_to_value() 157 if (source_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ex_resolve_node_to_value() [all …]
|
D | exstoren.c | 72 union acpi_operand_object *source_desc = *source_desc_ptr; in acpi_ex_resolve_object() local 96 if (source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) { in acpi_ex_resolve_object() 116 if ((source_desc->common.type != ACPI_TYPE_INTEGER) && in acpi_ex_resolve_object() 117 (source_desc->common.type != ACPI_TYPE_BUFFER) && in acpi_ex_resolve_object() 118 (source_desc->common.type != ACPI_TYPE_STRING) && in acpi_ex_resolve_object() 119 !((source_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) && in acpi_ex_resolve_object() 120 (source_desc->reference.class == ACPI_REFCLASS_TABLE))) { in acpi_ex_resolve_object() 126 acpi_ut_get_object_type_name(source_desc), in acpi_ex_resolve_object() 190 acpi_ex_store_object_to_object(union acpi_operand_object *source_desc, in acpi_ex_store_object_to_object() argument 198 ACPI_FUNCTION_TRACE_PTR(ex_store_object_to_object, source_desc); in acpi_ex_store_object_to_object() [all …]
|
D | exfield.c | 331 acpi_ex_write_data_to_field(union acpi_operand_object *source_desc, in acpi_ex_write_data_to_field() argument 346 if (!source_desc || !obj_desc) { in acpi_ex_write_data_to_field() 379 if (source_desc->common.type != ACPI_TYPE_BUFFER) { in acpi_ex_write_data_to_field() 382 acpi_ut_get_object_type_name(source_desc))); in acpi_ex_write_data_to_field() 415 if (source_desc->buffer.length < length) { in acpi_ex_write_data_to_field() 418 length, source_desc->buffer.length)); in acpi_ex_write_data_to_field() 431 ACPI_MEMCPY(buffer, source_desc->buffer.pointer, length); in acpi_ex_write_data_to_field() 458 if (source_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_ex_write_data_to_field() 464 acpi_ut_get_type_name(source_desc->common. in acpi_ex_write_data_to_field() 466 source_desc->common.type, in acpi_ex_write_data_to_field() [all …]
|
D | exstorob.c | 64 acpi_ex_store_buffer_to_buffer(union acpi_operand_object *source_desc, in acpi_ex_store_buffer_to_buffer() argument 70 ACPI_FUNCTION_TRACE_PTR(ex_store_buffer_to_buffer, source_desc); in acpi_ex_store_buffer_to_buffer() 74 if (source_desc == target_desc) { in acpi_ex_store_buffer_to_buffer() 80 buffer = ACPI_CAST_PTR(u8, source_desc->buffer.pointer); in acpi_ex_store_buffer_to_buffer() 81 length = source_desc->buffer.length; in acpi_ex_store_buffer_to_buffer() 142 target_desc->buffer.flags = source_desc->buffer.flags; in acpi_ex_store_buffer_to_buffer() 161 acpi_ex_store_string_to_string(union acpi_operand_object *source_desc, in acpi_ex_store_string_to_string() argument 167 ACPI_FUNCTION_TRACE_PTR(ex_store_string_to_string, source_desc); in acpi_ex_store_string_to_string() 171 if (source_desc == target_desc) { in acpi_ex_store_string_to_string() 177 buffer = ACPI_CAST_PTR(u8, source_desc->string.pointer); in acpi_ex_store_string_to_string() [all …]
|
D | utcopy.c | 77 acpi_ut_copy_simple_object(union acpi_operand_object *source_desc, 675 acpi_ut_copy_simple_object(union acpi_operand_object *source_desc, in acpi_ut_copy_simple_object() argument 693 if (ACPI_GET_DESCRIPTOR_TYPE(source_desc) == ACPI_DESC_TYPE_NAMED) { in acpi_ut_copy_simple_object() 698 ACPI_CAST_PTR(char, source_desc), copy_size); in acpi_ut_copy_simple_object() 718 if ((source_desc->buffer.pointer) && in acpi_ut_copy_simple_object() 719 (source_desc->buffer.length)) { in acpi_ut_copy_simple_object() 721 ACPI_ALLOCATE(source_desc->buffer.length); in acpi_ut_copy_simple_object() 729 source_desc->buffer.pointer, in acpi_ut_copy_simple_object() 730 source_desc->buffer.length); in acpi_ut_copy_simple_object() 740 if (source_desc->string.pointer) { in acpi_ut_copy_simple_object() [all …]
|
D | acinterp.h | 123 union acpi_operand_object *source_desc, 131 acpi_ex_do_debug_object(union acpi_operand_object *source_desc, 164 acpi_ex_write_data_to_field(union acpi_operand_object *source_desc, 402 acpi_ex_store_object_to_node(union acpi_operand_object *source_desc, 419 acpi_ex_store_object_to_object(union acpi_operand_object *source_desc, 428 acpi_ex_store_buffer_to_buffer(union acpi_operand_object *source_desc, 432 acpi_ex_store_string_to_string(union acpi_operand_object *source_desc, 439 acpi_ex_copy_integer_to_index_field(union acpi_operand_object *source_desc, 443 acpi_ex_copy_integer_to_bank_field(union acpi_operand_object *source_desc, 447 acpi_ex_copy_data_to_named_field(union acpi_operand_object *source_desc, [all …]
|
D | exconvrt.c | 577 union acpi_operand_object *source_desc, in acpi_ex_convert_to_target_type() argument 587 *result_desc = source_desc; in acpi_ex_convert_to_target_type() 609 if (destination_type != source_desc->common.type) { in acpi_ex_convert_to_target_type() 613 (source_desc), in acpi_ex_convert_to_target_type() 633 acpi_ex_convert_to_integer(source_desc, result_desc, in acpi_ex_convert_to_target_type() 643 acpi_ex_convert_to_string(source_desc, result_desc, in acpi_ex_convert_to_target_type() 653 acpi_ex_convert_to_buffer(source_desc, result_desc); in acpi_ex_convert_to_target_type()
|
D | acutils.h | 295 acpi_ut_copy_iobject_to_iobject(union acpi_operand_object *source_desc,
|