• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/

Lines Matching defs:op

109 		status = acpi_ds_create_operand(walk_state, walk_state->op, 0);
177 walk_state->op));
202 * out_op - Where to return op if a new one is created
216 union acpi_parse_object *op;
222 op = walk_state->op;
223 if (!op) {
229 op = *out_op;
230 walk_state->op = op;
231 walk_state->opcode = op->common.aml_opcode;
233 acpi_ps_get_opcode_info(op->common.aml_opcode);
241 op));
250 if (op == walk_state->origin) {
252 *out_op = op;
267 "Exec predicate Op=%p State=%p\n", op,
275 walk_state->control_state->control.predicate_op = op;
282 if (op->common.aml_opcode == AML_INT_NAMEPATH_OP) {
292 status = acpi_ds_exec_begin_control_op(walk_state, op);
304 * Note 10/2010: Except for the Scope() op. This opcode does
309 if (op->common.aml_opcode != AML_SCOPE_OP) {
314 acpi_ds_scope_stack_push(op->named.node,
315 op->named.node->
358 union acpi_parse_object *op;
367 op = walk_state->op;
373 op->common.aml_opcode));
377 first_arg = op->common.value.arg;
389 acpi_db_single_step(walk_state, op, op_class));
486 status = acpi_ds_exec_end_control_op(walk_state, op);
497 if ((op->asl.parent) &&
498 ((op->asl.parent->asl.aml_opcode == AML_PACKAGE_OP)
499 || (op->asl.parent->asl.aml_opcode ==
503 op));
505 op->common.node =
506 (struct acpi_namespace_node *)op->asl.value.
508 acpi_ut_add_reference(op->asl.value.arg->asl.
514 "Method invocation, Op=%p\n", op));
520 /* next_op points to the op that holds the method name */
524 /* next_op points to first argument op */
566 op));
574 acpi_ds_eval_buffer_field_operands(walk_state, op);
581 op));
583 switch (op->common.parent->common.aml_opcode) {
591 (void *)op->common.parent->common.node;
595 op->common.parent->
597 op->common.parent);
609 (walk_state, op,
610 acpi_ns_get_attached_object(op->common.
619 (walk_state, op, NULL);
644 if (op->common.aml_opcode == AML_REGION_OP) {
647 op));
651 op);
655 } else if (op->common.aml_opcode == AML_DATA_REGION_OP) {
658 op));
662 (walk_state, op);
666 } else if (op->common.aml_opcode == AML_BANK_FIELD_OP) {
669 op));
673 op);
683 "Undefined opcode type Op=%p", op));
690 walk_state->opcode, op));
697 op_class, op_type, op->common.aml_opcode,
698 op));
719 (walk_state->control_state->control.predicate_op == op)) {
736 * Delete the result op if and only if:
738 * non-nested type2 op in a method (parent will be method)
740 acpi_ds_delete_result_if_not_used(op, walk_state->result_obj,