Home | History | Annotate | Download | only in parser

Lines Matching refs:ParseScope

177     return (ParserState->Scope->ParseScope.Op);
201 ((ParserState->Aml >= ParserState->Scope->ParseScope.ArgEnd ||
202 !ParserState->Scope->ParseScope.ArgCount)));
237 Scope->ParseScope.Op = RootOp;
238 Scope->ParseScope.ArgCount = ACPI_VAR_ARGS;
239 Scope->ParseScope.ArgEnd = ParserState->AmlEnd;
240 Scope->ParseScope.PkgEnd = ParserState->AmlEnd;
284 Scope->ParseScope.Op = Op;
285 Scope->ParseScope.ArgList = RemainingArgs;
286 Scope->ParseScope.ArgCount = ArgCount;
287 Scope->ParseScope.PkgEnd = ParserState->PkgEnd;
297 Scope->ParseScope.ArgEnd = ParserState->PkgEnd;
303 Scope->ParseScope.ArgEnd = ACPI_TO_POINTER (ACPI_MAX_PTR);
347 *Op = Scope->ParseScope.Op;
348 *ArgList = Scope->ParseScope.ArgList;
349 *ArgCount = Scope->ParseScope.ArgCount;
350 ParserState->PkgEnd = Scope->ParseScope.PkgEnd;