HomeSort by: relevance | last modified time | path
    Searched refs:Child (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /src/sys/external/bsd/acpica/dist/compiler/
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...]
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...]
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...]
aslprintf.c 224 DestOp = Op->Asl.Child;
225 Op->Asl.Child = DestOp->Asl.Next;
245 * Op->Child - Format string
267 Format = ACPI_CAST_PTR (char, Op->Asl.Child->Asl.Value.String);
268 ArgNode = Op->Asl.Child->Asl.Next;
274 Op->Asl.Child = NULL;
358 if (!Op->Asl.Child)
398 * If we get here and there's no child node then Format
401 if (!Op->Asl.Child)
431 Op->Asl.Child->Asl.Next = DestOp
    [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...]
aslprune.c 313 PrPrintObjectAtLevel (Level, Op->Asl.Child->Asl.Value.Name);
314 Op->Asl.Child->Asl.Next->Asl.Next->Asl.Next->Asl.Next->Asl.Next->Asl.Next = NULL;
321 PrPrintObjectAtLevel (Level, Op->Asl.Child->Asl.Value.Name);
322 Op->Asl.Child->Asl.Next = NULL;
332 Op->Asl.Child = NULL;
337 Op->Asl.Child->Asl.Next = NULL;
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...]
aslwalks.c 211 if ((Op->Asl.Child) &&
212 (Op->Asl.Child->Asl.ParseOpcode != PARSEOP_DEFAULT_ARG))
214 ThisOpBtype = AnGetBtype (Op->Asl.Child);
216 if ((Op->Asl.Child->Asl.ParseOpcode == PARSEOP_METHODCALL) &&
224 * Child->Node will be null if the method has not been
227 if (Op->Asl.Child->Asl.Node &&
228 (Op->Asl.ParentMethod != Op->Asl.Child->Asl.Node->Op))
232 TrWalkParseTree (Op->Asl.Child->Asl.Node->Op,
236 ThisOpBtype = AnGetBtype (Op->Asl.Child);
315 ArgOp = Op->Asl.Child;
    [all...]
asltransform.c 439 * complex AML opcodes require processing of the child nodes
493 /* First child contains the method name */
495 MethodOp = MethodOp->Asl.Child;
533 if (Op->Asl.Child->Asl.Value.Integer > 1000)
584 Next = Op->Asl.Child;
654 /* First child is the Switch() predicate */
656 Next = StartNode->Asl.Child;
672 /* CASE statements start at next child */
682 TrCheckForDuplicateCase (Next, Next->Asl.Child);
700 CaseBlock = CaseOp->Asl.Child->Asl.Next
    [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...]
dtsubtable.c 224 /* Link the new entry into the child list */
226 if (!ParentTable->Child)
228 ParentTable->Child = Subtable;
232 /* Walk to the end of the child list */
234 ChildTable = ParentTable->Child;
240 /* Add new subtable at the end of the child list */
324 * ChildTable - Previous child that was found.
325 * The NEXT child will be returned
327 * RETURN: Pointer to the NEXT child or NULL if none is found.
345 return (ParentTable->Child);
    [all...]
aslmethod.c 272 Next = Op->Asl.Child;
292 NextType = Next->Asl.Child;
301 NextType = Next->Asl.Child;
324 Op->Asl.Child->Asl.Next, AslGbl_MsgBuffer);
485 * A child indicates a possible return value. A simple Return or
492 if ((Op->Asl.Child) &&
493 (Op->Asl.Child->Asl.ParseOpcode != PARSEOP_DEFAULT_ARG) &&
494 (!(Op->Asl.Child->Asl.CompileFlags & OP_IS_NULL_RETURN)))
527 if ((Op->Asl.Child->Asl.ParseOpcode == PARSEOP_INTEGER) &&
528 (Op->Asl.Child->Asl.Value.Integer > ACPI_UINT8_MAX)
    [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...]
aslxref.c 464 NextOp = Op->Asl.Child;
617 /* For nearly all NAMED operators, the name reference is the first child */
619 Path = Op->Asl.Child->Asl.Value.String;
626 Path = Op->Asl.Child->Asl.Next->Asl.Value.String;
633 NextOp = Op->Asl.Child;
716 NextOp = Op->Asl.Child;
855 /* The first child is the alias target op */
857 NextOp = NextOp->Asl.Child;
1037 * Count the number of arguments, each appears as a child
1044 NextOp = Op->Asl.Child;
    [all...]
aslnamesp.c 337 Op = Op->Asl.Child;
355 Op = Op->Asl.Child;
374 Op = Op->Asl.Child;
427 Op = Op->Asl.Child;
436 Op = Op->Asl.Child;
451 Op = Op->Asl.Child;
460 Op = Op->Asl.Child;
asloffset.c 246 if (!Op->Asl.Child)
248 FlPrintFile (FileId, "%s NO CHILD!\n", AslGbl_MsgBuffer);
256 Op = Op->Asl.Child;
299 NextOp = Op->Asl.Child;
321 NextOp = Op->Asl.Child;
368 NextOp = Op->Asl.Child;
392 NextOp = Op->Asl.Child; /* Get Namepath */
417 NextOp = Op->Asl.Child; /* Get Namepath */
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...]
aslrestype2.c 190 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
198 /* Process all child initialization nodes */
297 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
325 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
342 /* Process all child initialization nodes */
529 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
541 InitializerOp = Info->DescriptorTypeOp->Asl.Child;
553 /* Process all child initialization nodes */
asllookup.c 399 /* For nearly all NAMED operators, the name reference is the first child */
401 NameOp = Op->Asl.Child;
408 NameOp = Op->Asl.Child->Asl.Next;
415 NameOp = Op->Asl.Child;
aslfold.c 589 Op->Asl.Child = NULL;
632 Child1 = Op->Asl.Child;
744 Child1->Asl.Child = NULL;
757 /* First child is the folded constant */
759 /* Second child will be the target */
843 /* Child node is the buffer length */
852 Op->Asl.Child = LengthOp;
854 /* Next child is the raw buffer data */
965 /* Copy child pointer to Arg for compatibility with Interpreter */
967 if (Op->Asl.Child)
    [all...]
aslpld.c 223 ThisOp = Op->Asl.Child;
226 /* Get child values */
228 ParseOpcode = ThisOp->Asl.Child->Asl.ParseOpcode;
229 Value = (UINT32) ThisOp->Asl.Child->Asl.Value.Integer;
367 ThisOp->Asl.Child->Asl.Value.String,
391 ThisOp->Asl.Child->Asl.Value.String,
415 ThisOp->Asl.Child->Asl.Value.String,
439 ThisOp->Asl.Child->Asl.Value.String,
688 /* Child node is the buffer length */
696 Op->Asl.Child = NewOp
    [all...]
  /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/namespace/
nsxfobj.c 304 * LastChild - Previous child that was found.
305 * The NEXT child will be returned
320 ACPI_HANDLE Child,
344 if (!Child)
360 ChildNode = AcpiNsValidateHandle (Child);
nsalloc.c 310 NextNode = ParentNode->Child;
312 /* Find the node that is the previous peer in the parent's child list */
322 /* Node is not first child, unlink it */
329 * Node is first child (has no previous peer).
332 ParentNode->Child = Node->Peer;
366 ACPI_NAMESPACE_NODE *Node, /* New Child*/
388 * A method is creating a new node that is not a child of the
402 ChildNode = ParentNode->Child;
406 ParentNode->Child = Node;
466 NextNode = ParentNode->Child;
    [all...]
  /src/sys/external/bsd/acpica/dist/disassembler/
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...]

Completed in 28 milliseconds

1 2 3