Lines Matching defs:Parent
275 AcpiGbl_FileTreeRoot->Parent = NULL;
547 if (Node->Parent)
549 Op->Common.CvParentFilename = Node->Parent->Filename;
605 * ending addresses. This is done to ensure that parent file
612 Node = Node->Parent;
620 Node = Node->Parent;
630 AcpiGbl_FileTreeRoot->Parent = NULL;
659 * ParentFile - contains the filename of the parent file.
663 * DESCRIPTION: Point the parent pointer of the Child to the node that
664 * corresponds with the parent file node.
674 ACPI_FILE_NODE *Parent;
678 Parent = CvFilenameExists (ParentFile, 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;
691 Child = Child->Parent;
884 CvDbgPrint (" Found a parent filename.\n");