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 349 /* Look for an argument or child */
410 * PARAMETERS: Op - Get the child of this Op
412 * RETURN: Child Op, Null if none is found.
422 ACPI_PARSE_OBJECT *Child = NULL;
436 Child = AcpiPsGetArg (Op, 0);
447 Child = AcpiPsGetArg (Op, 1);
453 Child = AcpiPsGetArg (Op, 2);
459 Child = AcpiPsGetArg (Op, 3);
469 return (Child);
  /src/sys/external/bsd/acpica/dist/disassembler/
dmcstyle.c 334 /* Save symbol string in the next child (not peer) */
393 * works. We save the operator symbol in the first child, thus
497 * Promote the target up to the first child in the parse
1001 * child of the Op.
1010 ACPI_PARSE_OBJECT *Child;
1013 /* Link target directly to the Op as first child */
1015 Child = Op->Common.Value.Arg;
1017 Target->Common.Next = Child;
1021 while (Child->Common.Next != Target)
1023 Child = Child->Common.Next
    [all...]
dmopcode.c 799 ACPI_PARSE_OBJECT *Child;
862 Child = Op->Common.Value.Arg;
863 if ((Child->Common.AmlOpcode == AML_LOGICAL_EQUAL_OP) ||
864 (Child->Common.AmlOpcode == AML_LOGICAL_GREATER_OP) ||
865 (Child->Common.AmlOpcode == AML_LOGICAL_LESS_OP))
867 Child->Common.DisasmOpcode = ACPI_DASM_LNOT_SUFFIX;
1049 Child = Op->Common.Value.Arg;
1051 if (Child->Common.AmlOpcode == AML_INT_BYTELIST_OP)
1055 Aml = Child->Named.Data;
1056 Length = (UINT32) Child->Common.Value.Integer
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsfield.c 439 ACPI_PARSE_OBJECT *Child;
526 Child = Arg->Common.Value.Arg;
527 if (Child->Common.AmlOpcode == AML_INT_BYTELIST_OP)
529 Info->ResourceBuffer = Child->Named.Data;
530 Info->ResourceLength = (UINT16) Child->Named.Value.Integer;
537 Child->Common.Value.Name, ACPI_TYPE_ANY,
543 Child->Common.Value.Name, Status);
  /src/sys/external/bsd/acpica/dist/compiler/
aslcodegen.c 292 /* 11 */ Op->Asl.Child,
543 ACPI_PARSE_OBJECT *Child;
552 Child = Op->Asl.Child;
556 Child = Child->Asl.Next;
568 ACPI_COPY_NAMESEG (AcpiGbl_TableSig, Child->Asl.Value.String);
569 Child->Asl.Value.String = ACPI_SIG_XXXX;
572 ACPI_COPY_NAMESEG (AslGbl_TableHeader.Signature, Child->Asl.Value.String);
576 Child = Child->Asl.Next
    [all...]
aslexternal.c 196 ACPI_PARSE_OBJECT *ExternTypeOp = Op->Asl.Child->Asl.Next;
220 if (TypeOp->Asl.Child)
224 (void) MtProcessTypeOp (TypeOp->Asl.Child);
236 if (TypeOp->Asl.Child)
238 ParamCount = MtProcessParameterTypeList (TypeOp->Asl.Child, ParamTypes);
247 ArgCountOp = Op->Asl.Child->Asl.Next->Asl.Next;
257 /* Store External node as child */
259 ListOp->Asl.Child = Op;
302 ACPI_PARSE_OBJECT *Child;
319 if (Next->Asl.Child->Asl.CompileFlags & OP_VISITED
    [all...]
aslparseop.c 167 * ... - A list of child ops to link to the new
172 * DESCRIPTION: Create a new parse op and link together a list of child
184 ACPI_PARSE_OBJECT *Child;
198 "\nCreateOp Ln/Col %u/%u NewParent %p Child %u Op %s ",
241 /* Get the next child */
243 Child = va_arg (ap, ACPI_PARSE_OBJECT *);
244 DbgPrint (ASL_PARSE_OUTPUT, "%p, ", Child);
247 * If child is NULL, this means that an optional argument
252 if (!Child)
254 Child = TrAllocateOp (PARSEOP_DEFAULT_ARG)
    [all...]
asltree.c 448 * ... - A list of child ops to link to the new
463 ACPI_PARSE_OBJECT *Child;
477 "\nLinkChildren Line [%u to %u] NewParent %p Child %u Op %s ",
547 Child = va_arg (ap, ACPI_PARSE_OBJECT *);
549 if ((Child == PrevChild) && (Child != NULL))
551 AslError (ASL_WARNING, ASL_MSG_COMPILER_INTERNAL, Child,
552 "Child op list invalid");
557 DbgPrint (ASL_PARSE_OUTPUT, "%p, ", Child);
560 * If child is NULL, this means that an optional argumen
    [all...]
aslload.c 280 ACPI_PARSE_OBJECT *Child = NULL;
309 Child = UtGetArg (Op, 6);
314 Child = UtGetArg (Op, 5);
319 Child = UtGetArg (Op, 4);
331 while (Child)
333 switch (Child->Asl.AmlOpcode)
343 Child->Asl.Value.String,
352 AslError (ASL_ERROR, ASL_MSG_CORE_EXCEPTION, Child,
353 Child->Asl.Value.String);
370 AslDualParseOpError (ASL_ERROR, ASL_MSG_NAME_EXISTS, Child,
    [all...]
aslopcodes.c 266 ACPI_PARSE_OBJECT *Child;
280 Child = Op->Asl.Child;
281 Child = Child->Asl.Next;
282 Child = Child->Asl.Next;
286 AcpiUtSetIntegerWidth ((UINT8) Child->Asl.Value.Integer);
448 TypeOp = Op->Asl.Child;
450 /* First child is the access type *
    [all...]
asloperands.c 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;
    [all...]
cvparser.c 658 * PARAMETERS: ChildFile - contains the filename of the child file
663 * DESCRIPTION: Point the parent pointer of the Child to the node that
673 ACPI_FILE_NODE *Child;
677 Child = CvFilenameExists (ChildFile, AcpiGbl_FileTreeRoot);
680 if (Child && Parent)
682 Child->Parent = Parent;
684 while (Child->Parent)
686 if (Child->Parent->FileEnd < Child->FileStart)
688 Child->Parent->FileEnd = Child->FileStart
    [all...]
aslerror.c 641 ASL_ERROR_MSG *Child = Enode->SubError;
722 while (Child)
725 AePrintSubError (OutputFile, Child);
726 Child = Child->SubError;
dtcompiler.h 231 struct dt_subtable *Child;
  /src/sys/external/bsd/acpica/dist/include/
aclocal.h 301 struct acpi_namespace_node *Child; /* First child */
1164 union acpi_parse_object *Child;

Completed in 26 milliseconds