Home | History | Annotate | Download | only in compiler

Lines Matching defs:Op

185     ACPI_PARSE_OBJECT       *Op;
190 Op = HidNode->Op;
191 if (!Op)
198 switch (Op->Asl.ParseOpcode)
202 Arg = Op->Asl.Child; /* Get the NameSeg/NameString node */
340 * PARAMETERS: Op - Parse Op to be examined
346 * DESCRIPTION: Find the parent Device or Scope Op, get the full pathname to
353 ACPI_PARSE_OBJECT *Op,
360 /* Find parent Device() or Scope() Op */
362 while (Op &&
363 (Op->Asl.AmlOpcode != AML_DEVICE_OP) &&
364 (Op->Asl.AmlOpcode != AML_SCOPE_OP))
366 Op = Op->Asl.Parent;
369 if (!Op)
377 DeviceNode = Op->Asl.Node;
446 * PARAMETERS: Op - Parse Op to be examined
452 * a field. NULL if the Op does not refer to a Connection.
461 ACPI_PARSE_OBJECT *Op,
475 if ((Op->Asl.AmlOpcode == AML_INT_CONNECTION_OP) ||
476 (Op->Asl.ParseOpcode == PARSEOP_CONNECTION))
480 NextOp = Op;