Lines Matching full:common
201 switch (Op->Common.AmlOpcode)
242 Op->Common.DisasmOpcode = ACPI_DASM_SWITCH;
253 Current->Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
372 if (!OneOp || (OneOp->Common.AmlOpcode != AML_ONE_OP))
379 StoreOp = OneOp->Common.Next;
380 if (!StoreOp || (StoreOp->Common.AmlOpcode != AML_STORE_OP))
389 (NamePathOp->Common.AmlOpcode != AML_INT_NAMEPATH_OP))
394 if (strncmp ((char *) (NamePathOp->Common.Value.Name), "_T_", 3))
399 *Temp = (char *) (NamePathOp->Common.Value.Name);
405 OneOp->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
409 StoreOp->Common.DisasmOpcode = ACPI_DASM_IGNORE_SINGLE;
417 PredicateOp->Common.DisasmOpcode = ACPI_DASM_SWITCH_PREDICATE;
418 PredicateOp->Common.DisasmFlags |= ACPI_PARSEOP_PARAMETER_LIST;
422 NamePathOp->Common.DisasmFlags = ACPI_PARSEOP_IGNORE;
426 CurrentOp = StoreOp->Common.Next;
431 if (CurrentOp->Common.AmlOpcode == AML_ELSE_OP)
435 CurrentOp->Common.DisasmOpcode = ACPI_DASM_CASE;
441 CurrentOp->Common.DisasmOpcode = ACPI_DASM_CASE;
450 switch (TempOp->Common.AmlOpcode)
456 TempOp->Common.DisasmOpcode = ACPI_DASM_IGNORE_SINGLE;
461 TempOp->Common.DisasmFlags = ACPI_PARSEOP_IGNORE;
468 PredicateOp = TempOp->Common.Next;
469 PredicateOp->Common.DisasmOpcode = ACPI_DASM_SWITCH_PREDICATE;
470 PredicateOp->Common.DisasmFlags |= ACPI_PARSEOP_PARAMETER_LIST;
498 PredicateOp->Common.DisasmFlags |= ACPI_PARSEOP_PARAMETER_LIST;
516 CurrentOp->Common.Value.Arg = PredicateOp;
517 PredicateOp->Common.Parent = CurrentOp;
521 PredicateOp->Common.Next = TempOp;
532 CurrentOp = CurrentOp->Common.Next;
537 if (CurrentOp && CurrentOp->Common.AmlOpcode == AML_ELSE_OP)
539 CurrentOp->Common.DisasmOpcode = ACPI_DASM_DEFAULT;
547 CurrentOp = StoreOp->Common.Next->Common.Next;
552 if (CurrentOp->Common.AmlOpcode == AML_ELSE_OP)
554 CurrentOp = CurrentOp->Common.Next;
563 CurrentOp->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE;
611 if (CurrentOp->Common.AmlOpcode == AML_ELSE_OP)
620 if (!CurrentOp || CurrentOp->Common.AmlOpcode != AML_IF_OP)
633 switch (CurrentOp->Common.AmlOpcode)
640 if (!CurrentOp || !CurrentOp->Common.Value.Name ||
641 strncmp(CurrentOp->Common.Value.Name, "_T_", 3))
652 if (!CurrentOp || (CurrentOp->Common.AmlOpcode != AML_LOGICAL_EQUAL_OP))
660 if (!CurrentOp || (CurrentOp->Common.AmlOpcode != AML_MATCH_OP))
668 if (!CurrentOp || (CurrentOp->Common.AmlOpcode != AML_PACKAGE_OP))
675 CurrentOp = AcpiPsGetArg (CurrentOp->Common.Parent, 2);
676 if (!CurrentOp || !CurrentOp->Common.Value.Name ||
677 strncmp(CurrentOp->Common.Value.Name, "_T_", 3))