Lines Matching defs:Child
226 Next = Op->Asl.Child;
266 Next = Op->Asl.Child;
404 PkgLengthNode = Next->Asl.Child;
414 PkgLengthNode = Next->Asl.Child;
485 PkgLengthNode = Next->Asl.Child;
566 /* First child is field name */
568 Next = Op->Asl.Child;
570 /* Second child is the AccessType */
596 /* First child is the index name */
598 Next = Op->Asl.Child;
600 /* Second child is the data name */
604 /* Third child is the AccessType */
630 /* First child is the region name */
632 Next = Op->Asl.Child;
634 /* Second child is the bank name */
638 /* Third child is the bank value */
642 /* Fourth child is the AccessType */
670 /* First child is the region name */
672 Next = Op->Asl.Child;
674 /* Second child is the space ID */
679 /* Third child is the region offset */
683 /* Fourth child is the region length */
732 BufferLengthOp = Op->Asl.Child;
859 PackageLengthOp = Op->Asl.Child;
913 Op->Asl.Child->Asl.ParseOpcode = PARSEOP_INTEGER;
914 Op->Asl.Child->Asl.Value.Integer = PackageLength;
919 (void) OpcSetOptimalIntegerSize (Op->Asl.Child);
944 if (((Op->Asl.Child->Asl.ParseOpcode == PARSEOP_INTEGER) &&
945 (Op->Asl.Child->Asl.Value.Integer <= 255)) ||
946 (Op->Asl.Child->Asl.ParseOpcode == PARSEOP_ONE) ||
947 (Op->Asl.Child->Asl.ParseOpcode == PARSEOP_ONES)||
948 (Op->Asl.Child->Asl.ParseOpcode == PARSEOP_ZERO))
987 /* First child is the table signature */
989 Next = Op->Asl.Child;
991 /* Second child is the OEM ID*/
995 /* Third child is the OEM table ID */
999 /* Fourth child is the RootPath string */
1013 /* Fifth child is the [optional] ParameterPathString */
1014 /* Sixth child is the [optional] ParameterData */
1052 ACPI_PARSE_OBJECT *Child;
1069 Child = Op->Asl.Child;
1070 if (Child->Asl.Value.Buffer &&
1071 *Child->Asl.Value.Buffer &&
1085 strlen ((char *) Child->Asl.Value.Buffer) + 1);
1090 strcat (Filename, (char *) Child->Asl.Value.Buffer);
1112 Child->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
1116 Child = Child->Asl.Next;
1117 Child->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
1118 if (Child->Asl.Value.String)
1120 AslGbl_FilesList->TableSignature = Child->Asl.Value.String;
1121 AslGbl_TableSignature = Child->Asl.Value.String;
1124 AslError (ASL_ERROR, ASL_MSG_TABLE_SIGNATURE, Child,
1132 AslError (ASL_ERROR, ASL_MSG_TABLE_SIGNATURE, Child,
1140 Child = Child->Asl.Next;
1141 Child->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
1149 Child = Child->Asl.Next;
1150 Child->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
1151 if (Child->Asl.Value.String &&
1152 strlen (Child->Asl.Value.String) > ACPI_OEM_ID_SIZE)
1154 AslError (ASL_ERROR, ASL_MSG_OEM_ID, Child,
1160 Child = Child->Asl.Next;
1161 Child->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
1162 if (Child->Asl.Value.String)
1164 Length = strlen (Child->Asl.Value.String);
1167 AslError (ASL_ERROR, ASL_MSG_OEM_TABLE_ID, Child,
1172 strcpy (AslGbl_TableId, Child->Asl.Value.String);
1190 Child = Child->Asl.Next;
1191 Child->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
1218 Arg = Op->Asl.Child;
1247 ACPI_PARSE_OBJECT *Child = NULL;
1265 Child = UtGetArg (Op, 0);
1270 Child = UtGetArg (Op, 1);
1279 Child = UtGetArg (Op, 2);
1284 Child = UtGetArg (Op, 3);
1298 if (Child)
1300 UtAttachNamepathToOwner (Op, Child);
1314 * complex AML opcodes require processing of the child nodes