Home | History | Annotate | Download | only in compiler

Lines Matching defs:Current

163  * PARAMETERS:  CurrentState      Current comment parse state
165 * c1 Current input
291 * PARAMETERS: CurrentState Current comment parse state
395 ACPI_COMMENT_NODE *Current = NULL;
419 Current = Op->Asl.CommentList;
420 while (Current)
422 CommentLength = strlen (Current->Comment)+3;
424 CvDbgPrint (" Comment string: %s\n\n", Current->Comment);
426 Current = Current->Next;
432 Current = Op->Asl.EndBlkComment;
433 while (Current)
435 CommentLength = strlen (Current->Comment)+3;
437 CvDbgPrint (" Comment string: %s\n\n", Current->Comment);
439 Current = Current->Next;
476 * PARAMETERS: Op - Current parse op
494 ACPI_COMMENT_NODE *Current;
534 Current = Op->Asl.CommentList;
537 while (Current)
539 CgWriteOneAmlComment(Op, Current->Comment, CommentOption);
540 CvDbgPrint ("Printing comment: %s\n", Current->Comment);
541 Current = Current->Next;
561 * PARAMETERS: Op - Current parse op
599 * PARAMETERS: Op - Current parse op
603 * DESCRIPTION: Write all comments pertaining to the current parse op
611 ACPI_COMMENT_NODE *Current;
658 Current = Op->Asl.CommentList;
668 while (Current)
670 CgWriteOneAmlComment(Op, Current->Comment, CommentOption);
671 Current = Current->Next;
676 Current = Op->Asl.EndBlkComment;
678 while (Current)
680 CgWriteOneAmlComment(Op, Current->Comment, CommentOption);
681 Current = Current->Next;