• 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 refs:op

170 acpi_ds_is_result_used(union acpi_parse_object * op,
175 ACPI_FUNCTION_TRACE_PTR(ds_is_result_used, op);
179 if (!op) {
204 if ((!op->common.parent) ||
205 (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) {
211 acpi_ps_get_opcode_name(op->common.
219 acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode);
221 ACPI_ERROR((AE_INFO, "Unknown parent opcode Op=%p", op));
234 switch (op->common.parent->common.aml_opcode) {
245 * If we are executing the predicate AND this is the predicate op,
251 predicate_op == op)) {
275 if ((op->common.parent->common.aml_opcode == AML_REGION_OP) ||
276 (op->common.parent->common.aml_opcode == AML_DATA_REGION_OP)
277 || (op->common.parent->common.aml_opcode == AML_PACKAGE_OP)
278 || (op->common.parent->common.aml_opcode ==
280 || (op->common.parent->common.aml_opcode == AML_BUFFER_OP)
281 || (op->common.parent->common.aml_opcode ==
283 || (op->common.parent->common.aml_opcode ==
306 acpi_ps_get_opcode_name(op->common.aml_opcode),
307 acpi_ps_get_opcode_name(op->common.parent->common.
308 aml_opcode), op));
315 acpi_ps_get_opcode_name(op->common.aml_opcode),
316 acpi_ps_get_opcode_name(op->common.parent->common.
317 aml_opcode), op));
340 acpi_ds_delete_result_if_not_used(union acpi_parse_object *op,
349 if (!op) {
358 if (!acpi_ds_is_result_used(op, walk_state)) {
558 * For the Conditional Reference op, it's OK if
786 union acpi_parse_object *op = walk_state->op;
793 if (!op->common.parent) {
800 if ((op->common.parent->common.aml_opcode == AML_PACKAGE_OP) ||
801 (op->common.parent->common.aml_opcode == AML_VAR_PACKAGE_OP) ||
802 (op->common.parent->common.aml_opcode == AML_REF_OF_OP)) {
809 status = acpi_ds_create_operand(walk_state, op, 0);
814 if (op->common.flags & ACPI_PARSEOP_TARGET) {
863 op->common.flags |= ACPI_PARSEOP_IN_STACK;