Lines Matching defs:Op

245  * PARAMETERS:  Op
252 * DESCRIPTION: Prints all comments of CommentType within the given Op and
253 * clears the printed comment from the Op.
260 ACPI_PARSE_OBJECT *Op,
273 if (CvListIsSingleton (Op->Common.CommentList))
275 CvPrintOneCommentList (Op->Common.CommentList, Level);
280 CvPrintOneCommentList (Op->Common.CommentList, Level);
283 Op->Common.CommentList = NULL;
288 if (Op->Common.EndBlkComment)
290 CvPrintOneCommentList (Op->Common.EndBlkComment, Level);
291 Op->Common.EndBlkComment = NULL;
298 CommentToPrint = &Op->Common.InlineComment;
303 CommentToPrint = &Op->Common.EndNodeComment;
308 CommentToPrint = &Op->Common.NameComment;
313 CommentToPrint = &Op->Common.CloseBraceComment;
338 * PARAMETERS: Op
351 ACPI_PARSE_OBJECT *Op,
361 CvPrintOneCommentType (Op, AML_COMMENT_ENDBLK, NULL, Level);
363 CvPrintOneCommentType (Op, AML_COMMENT_CLOSE_BRACE, NULL, Level);
371 * PARAMETERS: Op
384 ACPI_PARSE_OBJECT *Op,
398 if (AcpiDmBlockType (Op) == BLOCK_PAREN)
400 CvPrintOneCommentType (Op, AML_COMMENT_ENDBLK, NULL, Level);
405 if (Op->Common.EndNodeComment)
407 CvPrintOneCommentType (Op, AML_COMMENT_END_NODE, NULL, Level);
409 else if ((Op->Common.Parent->Common.AmlOpcode == AML_IF_OP) &&
410 Op->Common.Parent->Common.EndNodeComment)
412 CvPrintOneCommentType (Op->Common.Parent,
422 * PARAMETERS: Op
435 ACPI_PARSE_OBJECT *Op)
438 if (Op->Common.CvFilename &&
440 AcpiUtStricmp(Op->Common.CvFilename, AcpiGbl_CurrentFilename))
495 * Op
508 ACPI_PARSE_OBJECT *Op)
510 char *Filename = Op->Common.CvFilename;
549 /* Redirect output to Op->Common.CvFilename */