Home | History | Annotate | Download | only in parser

Lines Matching defs:Parent

303     /* Set the parent in this arg and any args linked after it */
307 Arg->Common.Parent = Op;
337 ACPI_PARSE_OBJECT *Parent;
367 /* Look for a sibling of parent */
369 Parent = Op->Common.Parent;
371 while (Parent)
373 Arg = AcpiPsGetArg (Parent, 0);
383 /* Reached parent of origin, end search */
388 if (Parent->Common.Next)
390 /* Found sibling of parent */
392 ASL_CV_LABEL_FILENODE (Parent->Common.Next);
393 return (Parent->Common.Next);
396 Op = Parent;
397 Parent = Parent->Common.Parent;