Lines Matching refs:walk_state

45  * PARAMETERS:  walk_state          - Current walk state
55 acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state)
57 union acpi_operand_object **operand = &walk_state->operands[0];
63 acpi_ps_get_opcode_name(walk_state->opcode));
67 switch (walk_state->opcode) {
102 walk_state->opcode));
113 * PARAMETERS: walk_state - Current walk state
122 acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state)
124 union acpi_operand_object **operand = &walk_state->operands[0];
130 acpi_ps_get_opcode_name(walk_state->opcode));
134 switch (walk_state->opcode) {
167 walk_state->opcode));
175 status = acpi_ex_store(return_desc2, operand[2], walk_state);
180 status = acpi_ex_store(return_desc1, operand[3], walk_state);
202 walk_state->result_obj = return_desc1;
212 * PARAMETERS: walk_state - Current walk state
221 acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state)
223 union acpi_operand_object **operand = &walk_state->operands[0];
230 acpi_ps_get_opcode_name(walk_state->opcode));
234 if (walk_state->op_info->flags & AML_MATH) {
245 acpi_ex_do_math_op(walk_state->opcode,
251 switch (walk_state->opcode) {
271 walk_state);
318 &return_desc, walk_state);
409 status = acpi_ex_store(return_desc, operand[2], walk_state);
413 walk_state->result_obj = return_desc;
419 walk_state->opcode));
431 status = acpi_ex_store(return_desc, operand[2], walk_state);
436 if (!walk_state->result_obj) {
437 walk_state->result_obj = return_desc;
447 walk_state->result_obj = NULL;
457 * PARAMETERS: walk_state - Current walk state
465 acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state)
467 union acpi_operand_object **operand = &walk_state->operands[0];
473 acpi_ps_get_opcode_name(walk_state->opcode));
485 if (walk_state->op_info->flags & AML_LOGICAL_NUMERIC) {
489 status = acpi_ex_do_logical_numeric_op(walk_state->opcode,
495 } else if (walk_state->op_info->flags & AML_LOGICAL) {
499 status = acpi_ex_do_logical_op(walk_state->opcode, operand[0],
504 switch (walk_state->opcode) {
508 acpi_ex_acquire_mutex(operand[1], operand[0], walk_state);
527 walk_state->opcode));
553 walk_state->result_obj = return_desc;