HomeSort by: relevance | last modified time | path
    Searched defs:Child (Results 1 - 15 of 15) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/parser/
pstree.c 241 /* Look for an argument or child */
302 * PARAMETERS: Op - Get the child of this Op
304 * RETURN: Child Op, Null if none is found.
314 ACPI_PARSE_OBJECT *Child = NULL;
328 Child = AcpiPsGetArg (Op, 0);
339 Child = AcpiPsGetArg (Op, 1);
345 Child = AcpiPsGetArg (Op, 2);
351 Child = AcpiPsGetArg (Op, 3);
361 return (Child);
  /src/sys/external/bsd/acpica/dist/disassembler/
dmcstyle.c 226 /* Save symbol string in the next child (not peer) */
285 * works. We save the operator symbol in the first child, thus
389 * Promote the target up to the first child in the parse
893 * child of the Op.
902 ACPI_PARSE_OBJECT *Child;
905 /* Link target directly to the Op as first child */
907 Child = Op->Common.Value.Arg;
909 Target->Common.Next = Child;
913 while (Child->Common.Next != Target)
915 Child = Child->Common.Next
    [all...]
dmopcode.c 691 ACPI_PARSE_OBJECT *Child;
754 Child = Op->Common.Value.Arg;
755 if ((Child->Common.AmlOpcode == AML_LOGICAL_EQUAL_OP) ||
756 (Child->Common.AmlOpcode == AML_LOGICAL_GREATER_OP) ||
757 (Child->Common.AmlOpcode == AML_LOGICAL_LESS_OP))
759 Child->Common.DisasmOpcode = ACPI_DASM_LNOT_SUFFIX;
941 Child = Op->Common.Value.Arg;
943 if (Child->Common.AmlOpcode == AML_INT_BYTELIST_OP)
947 Aml = Child->Named.Data;
948 Length = (UINT32) Child->Common.Value.Integer
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsfield.c 331 ACPI_PARSE_OBJECT *Child;
418 Child = Arg->Common.Value.Arg;
419 if (Child->Common.AmlOpcode == AML_INT_BYTELIST_OP)
421 Info->ResourceBuffer = Child->Named.Data;
422 Info->ResourceLength = (UINT16) Child->Named.Value.Integer;
429 Child->Common.Value.Name, ACPI_TYPE_ANY,
435 Child->Common.Value.Name, Status);
  /src/sys/external/bsd/acpica/dist/compiler/
aslcodegen.c 184 /* 11 */ Op->Asl.Child,
435 ACPI_PARSE_OBJECT *Child;
444 Child = Op->Asl.Child;
448 Child = Child->Asl.Next;
460 ACPI_COPY_NAMESEG (AcpiGbl_TableSig, Child->Asl.Value.String);
461 Child->Asl.Value.String = ACPI_SIG_XXXX;
464 ACPI_COPY_NAMESEG (AslGbl_TableHeader.Signature, Child->Asl.Value.String);
468 Child = Child->Asl.Next
    [all...]
aslexternal.c 88 ACPI_PARSE_OBJECT *ExternTypeOp = Op->Asl.Child->Asl.Next;
112 if (TypeOp->Asl.Child)
116 (void) MtProcessTypeOp (TypeOp->Asl.Child);
128 if (TypeOp->Asl.Child)
130 ParamCount = MtProcessParameterTypeList (TypeOp->Asl.Child, ParamTypes);
139 ArgCountOp = Op->Asl.Child->Asl.Next->Asl.Next;
149 /* Store External node as child */
151 ListOp->Asl.Child = Op;
194 ACPI_PARSE_OBJECT *Child;
211 if (Next->Asl.Child->Asl.CompileFlags & OP_VISITED
    [all...]
aslparseop.c 59 * ... - A list of child ops to link to the new
64 * DESCRIPTION: Create a new parse op and link together a list of child
76 ACPI_PARSE_OBJECT *Child;
90 "\nCreateOp Ln/Col %u/%u NewParent %p Child %u Op %s ",
133 /* Get the next child */
135 Child = va_arg (ap, ACPI_PARSE_OBJECT *);
136 DbgPrint (ASL_PARSE_OUTPUT, "%p, ", Child);
139 * If child is NULL, this means that an optional argument
144 if (!Child)
146 Child = TrAllocateOp (PARSEOP_DEFAULT_ARG)
    [all...]
asltree.c 340 * ... - A list of child ops to link to the new
355 ACPI_PARSE_OBJECT *Child;
369 "\nLinkChildren Line [%u to %u] NewParent %p Child %u Op %s ",
439 Child = va_arg (ap, ACPI_PARSE_OBJECT *);
441 if ((Child == PrevChild) && (Child != NULL))
443 AslError (ASL_WARNING, ASL_MSG_COMPILER_INTERNAL, Child,
444 "Child op list invalid");
449 DbgPrint (ASL_PARSE_OUTPUT, "%p, ", Child);
452 * If child is NULL, this means that an optional argumen
    [all...]
aslload.c 172 ACPI_PARSE_OBJECT *Child = NULL;
201 Child = UtGetArg (Op, 6);
206 Child = UtGetArg (Op, 5);
211 Child = UtGetArg (Op, 4);
223 while (Child)
225 switch (Child->Asl.AmlOpcode)
235 Child->Asl.Value.String,
244 AslError (ASL_ERROR, ASL_MSG_CORE_EXCEPTION, Child,
245 Child->Asl.Value.String);
262 AslDualParseOpError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Child,
    [all...]
aslopcodes.c 158 ACPI_PARSE_OBJECT *Child;
172 Child = Op->Asl.Child;
173 Child = Child->Asl.Next;
174 Child = Child->Asl.Next;
178 AcpiUtSetIntegerWidth ((UINT8) Child->Asl.Value.Integer);
340 TypeOp = Op->Asl.Child;
342 /* First child is the access type *
    [all...]
asloperands.c 118 Next = Op->Asl.Child;
158 Next = Op->Asl.Child;
296 PkgLengthNode = Next->Asl.Child;
306 PkgLengthNode = Next->Asl.Child;
377 PkgLengthNode = Next->Asl.Child;
458 /* First child is field name */
460 Next = Op->Asl.Child;
462 /* Second child is the AccessType */
488 /* First child is the index name */
490 Next = Op->Asl.Child;
    [all...]
cvparser.c 550 * PARAMETERS: ChildFile - contains the filename of the child file
555 * DESCRIPTION: Point the parent pointer of the Child to the node that
565 ACPI_FILE_NODE *Child;
569 Child = CvFilenameExists (ChildFile, AcpiGbl_FileTreeRoot);
572 if (Child && Parent)
574 Child->Parent = Parent;
576 while (Child->Parent)
578 if (Child->Parent->FileEnd < Child->FileStart)
580 Child->Parent->FileEnd = Child->FileStart
    [all...]
aslerror.c 533 ASL_ERROR_MSG *Child = Enode->SubError;
614 while (Child)
617 AePrintSubError (OutputFile, Child);
618 Child = Child->SubError;
dtcompiler.h 123 struct dt_subtable *Child;
  /src/sys/external/bsd/acpica/dist/include/
aclocal.h 193 struct acpi_namespace_node *Child; /* First child */
1056 union acpi_parse_object *Child;

Completed in 30 milliseconds