Home
last modified time | relevance | path

Searched refs:return_desc (Results 1 – 21 of 21) sorted by relevance

/linux-6.1.9/drivers/acpi/acpica/
Dexoparg1.c56 union acpi_operand_object *return_desc = NULL; in acpi_ex_opcode_0A_0T_1R() local
68 return_desc = in acpi_ex_opcode_0A_0T_1R()
70 if (!return_desc) { in acpi_ex_opcode_0A_0T_1R()
89 acpi_ut_remove_reference(return_desc); in acpi_ex_opcode_0A_0T_1R()
94 walk_state->result_obj = return_desc; in acpi_ex_opcode_0A_0T_1R()
231 union acpi_operand_object *return_desc = NULL; in acpi_ex_opcode_1A_1T_1R() local
254 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); in acpi_ex_opcode_1A_1T_1R()
255 if (!return_desc) { in acpi_ex_opcode_1A_1T_1R()
263 return_desc->integer.value = ~operand[0]->integer.value; in acpi_ex_opcode_1A_1T_1R()
268 return_desc->integer.value = operand[0]->integer.value; in acpi_ex_opcode_1A_1T_1R()
[all …]
Dexoparg2.c224 union acpi_operand_object *return_desc = NULL; in acpi_ex_opcode_2A_1T_1R() local
238 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); in acpi_ex_opcode_2A_1T_1R()
239 if (!return_desc) { in acpi_ex_opcode_2A_1T_1R()
244 return_desc->integer.value = in acpi_ex_opcode_2A_1T_1R()
254 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); in acpi_ex_opcode_2A_1T_1R()
255 if (!return_desc) { in acpi_ex_opcode_2A_1T_1R()
264 NULL, &return_desc->integer.value); in acpi_ex_opcode_2A_1T_1R()
270 acpi_ex_do_concatenate(operand[0], operand[1], &return_desc, in acpi_ex_opcode_2A_1T_1R()
298 return_desc = acpi_ut_create_string_object(length); in acpi_ex_opcode_2A_1T_1R()
299 if (!return_desc) { in acpi_ex_opcode_2A_1T_1R()
[all …]
Dexconcat.c55 union acpi_operand_object *return_desc; in acpi_ex_do_concatenate() local
192 return_desc = acpi_ut_create_buffer_object((acpi_size) in acpi_ex_do_concatenate()
195 if (!return_desc) { in acpi_ex_do_concatenate()
200 buffer = (char *)return_desc->buffer.pointer; in acpi_ex_do_concatenate()
218 return_desc = acpi_ut_create_string_object(((acpi_size) in acpi_ex_do_concatenate()
223 if (!return_desc) { in acpi_ex_do_concatenate()
228 buffer = return_desc->string.pointer; in acpi_ex_do_concatenate()
240 return_desc = acpi_ut_create_buffer_object(((acpi_size) in acpi_ex_do_concatenate()
245 if (!return_desc) { in acpi_ex_do_concatenate()
250 buffer = (char *)return_desc->buffer.pointer; in acpi_ex_do_concatenate()
[all …]
Dexconvrt.c42 union acpi_operand_object *return_desc; in acpi_ex_convert_to_integer() local
144 return_desc = acpi_ut_create_integer_object(result); in acpi_ex_convert_to_integer()
145 if (!return_desc) { in acpi_ex_convert_to_integer()
154 (void)acpi_ex_truncate_for32bit_table(return_desc); in acpi_ex_convert_to_integer()
155 *result_desc = return_desc; in acpi_ex_convert_to_integer()
177 union acpi_operand_object *return_desc; in acpi_ex_convert_to_buffer() local
195 return_desc = in acpi_ex_convert_to_buffer()
197 if (!return_desc) { in acpi_ex_convert_to_buffer()
203 new_buf = return_desc->buffer.pointer; in acpi_ex_convert_to_buffer()
218 return_desc = acpi_ut_create_buffer_object((acpi_size) in acpi_ex_convert_to_buffer()
[all …]
Dexoparg3.c128 union acpi_operand_object *return_desc = NULL; in acpi_ex_opcode_3A_1T_1R() local
143 return_desc = acpi_ut_create_internal_object((operand[0])-> in acpi_ex_opcode_3A_1T_1R()
145 if (!return_desc) { in acpi_ex_opcode_3A_1T_1R()
217 return_desc->string.pointer = buffer; in acpi_ex_opcode_3A_1T_1R()
218 return_desc->string.length = (u32) length; in acpi_ex_opcode_3A_1T_1R()
222 return_desc->buffer.flags |= AOPOBJ_DATA_VALID; in acpi_ex_opcode_3A_1T_1R()
236 status = acpi_ex_store(return_desc, operand[3], walk_state); in acpi_ex_opcode_3A_1T_1R()
243 acpi_ut_remove_reference(return_desc); in acpi_ex_opcode_3A_1T_1R()
248 walk_state->result_obj = return_desc; in acpi_ex_opcode_3A_1T_1R()
Dexoparg6.c179 union acpi_operand_object *return_desc = NULL; in acpi_ex_opcode_6A_0T_1R() local
218 return_desc = acpi_ut_create_integer_object(ACPI_UINT64_MAX); in acpi_ex_opcode_6A_0T_1R()
219 if (!return_desc) { in acpi_ex_opcode_6A_0T_1R()
265 return_desc->integer.value = index; in acpi_ex_opcode_6A_0T_1R()
272 status = acpi_ex_load_table_op(walk_state, &return_desc); in acpi_ex_opcode_6A_0T_1R()
289 acpi_ut_remove_reference(return_desc); in acpi_ex_opcode_6A_0T_1R()
295 walk_state->result_obj = return_desc; in acpi_ex_opcode_6A_0T_1R()
Dutosi.c388 union acpi_operand_object *return_desc; in acpi_ut_osi_implementation() local
405 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER); in acpi_ut_osi_implementation()
406 if (!return_desc) { in acpi_ut_osi_implementation()
415 acpi_ut_remove_reference(return_desc); in acpi_ut_osi_implementation()
457 return_desc->integer.value = return_value; in acpi_ut_osi_implementation()
458 walk_state->return_desc = return_desc; in acpi_ut_osi_implementation()
Ddsmethod.c610 union acpi_operand_object *return_desc) in acpi_ds_restart_control_method() argument
620 walk_state->method_call_op, return_desc)); in acpi_ds_restart_control_method()
629 if (return_desc) { in acpi_ds_restart_control_method()
634 (walk_state->implicit_return_obj == return_desc); in acpi_ds_restart_control_method()
642 status = acpi_ds_result_push(return_desc, walk_state); in acpi_ds_restart_control_method()
644 acpi_ut_remove_reference(return_desc); in acpi_ds_restart_control_method()
652 walk_state->return_desc = return_desc; in acpi_ds_restart_control_method()
667 (return_desc, walk_state, FALSE) in acpi_ds_restart_control_method()
674 acpi_ut_remove_reference(return_desc); in acpi_ds_restart_control_method()
Dpsparse.c580 walk_state->return_desc, in acpi_ps_parse_aml()
593 if (!previous_walk_state->return_desc) { in acpi_ps_parse_aml()
630 previous_walk_state->return_desc); in acpi_ps_parse_aml()
640 return_desc); in acpi_ps_parse_aml()
658 previous_walk_state->return_desc; in acpi_ps_parse_aml()
661 if (previous_walk_state->return_desc) { in acpi_ps_parse_aml()
666 return_desc); in acpi_ps_parse_aml()
Ddscontrol.c254 walk_state->return_desc = walk_state->operands[0]; in acpi_ds_exec_end_control_op()
288 walk_state->return_desc = in acpi_ds_exec_end_control_op()
300 walk_state->return_desc = NULL; in acpi_ds_exec_end_control_op()
305 walk_state, walk_state->return_desc)); in acpi_ds_exec_end_control_op()
Dexmisc.c34 union acpi_operand_object **return_desc, in acpi_ex_get_object_reference() argument
42 *return_desc = NULL; in acpi_ex_get_object_reference()
96 *return_desc = reference_obj; in acpi_ex_get_object_reference()
101 *return_desc)); in acpi_ex_get_object_reference()
Ddsutils.c79 acpi_ds_do_implicit_return(union acpi_operand_object *return_desc, in acpi_ds_do_implicit_return() argument
88 if ((!acpi_gbl_enable_interpreter_slack) || (!return_desc)) { in acpi_ds_do_implicit_return()
94 return_desc, walk_state->implicit_return_obj)); in acpi_ds_do_implicit_return()
103 if (walk_state->implicit_return_obj == return_desc) { in acpi_ds_do_implicit_return()
111 walk_state->implicit_return_obj = return_desc; in acpi_ds_do_implicit_return()
113 acpi_ut_add_reference(return_desc); in acpi_ds_do_implicit_return()
Dexresolv.c305 union acpi_operand_object **return_desc) in acpi_ex_resolve_multiple() argument
451 if (return_desc) { in acpi_ex_resolve_multiple()
535 if (return_desc) { in acpi_ex_resolve_multiple()
536 *return_desc = obj_desc; in acpi_ex_resolve_multiple()
Duteval.c40 union acpi_operand_object **return_desc) in acpi_ut_evaluate_object() argument
148 *return_desc = info->return_object; in acpi_ut_evaluate_object()
Dacinterp.h180 union acpi_operand_object **return_desc,
235 union acpi_operand_object **return_desc);
364 union acpi_operand_object **return_desc);
Dacdispat.h181 union acpi_operand_object *return_desc);
246 acpi_ds_do_implicit_return(union acpi_operand_object *return_desc,
Dexconfig.c83 union acpi_operand_object **return_desc) in acpi_ex_load_table_op() argument
103 *return_desc = return_obj; in acpi_ex_load_table_op()
Dacstruct.h86 union acpi_operand_object *return_desc; /* Return object, if any */ member
Dpsxface.c162 info->return_object = walk_state->return_desc; in acpi_ps_execute_method()
Ddswexec.c358 walk_state->return_desc = NULL; in acpi_ds_exec_end_op()
Dacutils.h369 union acpi_operand_object **return_desc);