Lines Matching refs:Child
184 ACPI_PARSE_OBJECT *Child; in TrCreateOp() local
243 Child = va_arg (ap, ACPI_PARSE_OBJECT *); in TrCreateOp()
244 DbgPrint (ASL_PARSE_OUTPUT, "%p, ", Child); in TrCreateOp()
252 if (!Child) in TrCreateOp()
254 Child = TrAllocateOp (PARSEOP_DEFAULT_ARG); in TrCreateOp()
262 Op->Asl.Child = Child; in TrCreateOp()
278 Op->Asl.CommentList = Child->Asl.CommentList; in TrCreateOp()
279 Op->Asl.EndBlkComment = Child->Asl.EndBlkComment; in TrCreateOp()
280 Op->Asl.InlineComment = Child->Asl.InlineComment; in TrCreateOp()
281 Op->Asl.FileChanged = Child->Asl.FileChanged; in TrCreateOp()
283 Child->Asl.CommentList = NULL; in TrCreateOp()
284 Child->Asl.EndBlkComment = NULL; in TrCreateOp()
285 Child->Asl.InlineComment = NULL; in TrCreateOp()
286 Child->Asl.FileChanged = FALSE; in TrCreateOp()
293 Op->Asl.Filename = Child->Asl.Filename; in TrCreateOp()
294 Op->Asl.ParentFilename = Child->Asl.ParentFilename; in TrCreateOp()
300 Child->Asl.Parent = Op; in TrCreateOp()
306 PrevChild->Asl.Next = Child; in TrCreateOp()
315 Op->Asl.CommentList = Child->Asl.CommentList; in TrCreateOp()
316 Child->Asl.CommentList = NULL; in TrCreateOp()
318 Op->Asl.InlineComment = Child->Asl.InlineComment; in TrCreateOp()
319 Child->Asl.InlineComment = NULL; in TrCreateOp()
326 while (Child->Asl.Next) in TrCreateOp()
328 Child = Child->Asl.Next; in TrCreateOp()
329 Child->Asl.Parent = Op; in TrCreateOp()
332 PrevChild = Child; in TrCreateOp()
532 if (OriginalOp->Asl.Child) in TrCreateTargetOp()
534 Op->Asl.Child = TrCreateTargetOp (OriginalOp->Asl.Child, Op); in TrCreateTargetOp()
612 SourceOp1 = Source->Asl.Child; in TrCreateAssignmentOp()