Home | History | Annotate | Download | only in compiler

Lines Matching refs:Current

190     ACPI_COMMENT_NODE       *Current = CommentList;
194 while (Current)
196 Previous = Current;
197 if (Current->Comment)
200 AcpiOsPrintf("%s\n", Current->Comment);
201 Current->Comment = NULL;
204 Current = Current->Next;
512 ACPI_FILE_NODE *Current;
532 Current = FNode;
535 * If the previous file is a descendent of the current file,
536 * make sure that Include statements from the current file
539 while (Current &&
540 Current->Parent &&
541 AcpiUtStricmp (Current->Filename, AcpiGbl_CurrentFilename))
543 CvPrintInclude (Current, Level);
544 Current = Current->Parent;