Lines Matching refs:Asl
188 if ((!strcmp (Op->Asl.ExternalName, "\\_OSI")) ||
189 (!strcmp (Op->Asl.ExternalName, "_OSI")))
215 if ((!strcmp (Op->Asl.ExternalName, "\\_OSI")) ||
216 (!strcmp (Op->Asl.ExternalName, "_OSI")))
250 if (Op->Asl.ParseOpcode != PARSEOP_STRING_LITERAL)
257 Length = strlen (Op->Asl.Value.String);
270 if (*Op->Asl.Value.String == '*')
273 Op, Op->Asl.Value.String);
286 for (i = 0; Op->Asl.Value.String[i]; i++)
288 if (!isalnum ((int) Op->Asl.Value.String[i]))
291 Op, Op->Asl.Value.String);
307 Op, Op->Asl.Value.String);
319 if (!isupper ((int) Op->Asl.Value.String[i]))
322 Op, &Op->Asl.Value.String[i]);
335 if (!isupper ((int) Op->Asl.Value.String[i]) &&
336 !isdigit ((int) Op->Asl.Value.String[i]))
339 Op, &Op->Asl.Value.String[i]);
349 if (!isxdigit ((int) Op->Asl.Value.String[i]))
352 Op, &Op->Asl.Value.String[i]);
365 * RETURN: TRUE if last statement is an ASL RETURN. False otherwise
385 if ((!Next->Asl.Next) &&
386 (Next->Asl.ParseOpcode == PARSEOP_RETURN))
428 Node = ArgOp->Asl.Node;
442 if (OwningOp->Asl.CompileFlags & OP_METHOD_NO_RETVAL)
448 else if (OwningOp->Asl.CompileFlags & OP_METHOD_SOME_NO_RETVAL)
504 switch (Op->Asl.ParseOpcode)
520 Parent = Op->Asl.Parent;
521 switch (Parent->Asl.ParseOpcode)
530 if (Parent->Asl.Child == Op)
592 ACPI_MOVE_32_TO_32 (Name, Op->Asl.NameSeg);
634 NextOp = Op->Asl.Next;
642 if ((NextOp->Asl.ParseOpcode == PARSEOP_METHOD) ||
643 (NextOp->Asl.ParseOpcode == PARSEOP_NAME))
645 if (ACPI_COMPARE_NAMESEG (Target, NextOp->Asl.NameSeg))
655 NextOp = NextOp->Asl.Next;
689 if (!ACPI_COMPARE_NAMESEG (METHOD_NAME__REG, &Op->Asl.NameSeg))
696 Parent = Op->Asl.Parent;
697 Next = Parent->Asl.Child;
703 if (Next->Asl.ParseOpcode == PARSEOP_OPERATIONREGION)
708 Next = Next->Asl.Next;
776 switch (Op->Asl.ParseOpcode)
795 if (ACPI_COMPARE_NAMESEG (Name, Op->Asl.NameSeg))
844 Parent = Op->Asl.Parent;
845 Next = Parent->Asl.Child;
851 if ((Next->Asl.ParseOpcode == PARSEOP_METHOD) ||
852 (Next->Asl.ParseOpcode == PARSEOP_NAME))
854 if (ACPI_COMPARE_NAMESEG (Name, Next->Asl.NameSeg))
860 Next = Next->Asl.Next;