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