Lines Matching refs:ParseScope
69 return (ParserState->Scope->ParseScope.Op); in AcpiPsGetParentScope()
93 ((ParserState->Aml >= ParserState->Scope->ParseScope.ArgEnd || in AcpiPsHasCompletedScope()
94 !ParserState->Scope->ParseScope.ArgCount))); in AcpiPsHasCompletedScope()
129 Scope->ParseScope.Op = RootOp; in AcpiPsInitScope()
130 Scope->ParseScope.ArgCount = ACPI_VAR_ARGS; in AcpiPsInitScope()
131 Scope->ParseScope.ArgEnd = ParserState->AmlEnd; in AcpiPsInitScope()
132 Scope->ParseScope.PkgEnd = ParserState->AmlEnd; in AcpiPsInitScope()
176 Scope->ParseScope.Op = Op; in AcpiPsPushScope()
177 Scope->ParseScope.ArgList = RemainingArgs; in AcpiPsPushScope()
178 Scope->ParseScope.ArgCount = ArgCount; in AcpiPsPushScope()
179 Scope->ParseScope.PkgEnd = ParserState->PkgEnd; in AcpiPsPushScope()
189 Scope->ParseScope.ArgEnd = ParserState->PkgEnd; in AcpiPsPushScope()
195 Scope->ParseScope.ArgEnd = ACPI_TO_POINTER (ACPI_MAX_PTR); in AcpiPsPushScope()
239 *Op = Scope->ParseScope.Op; in AcpiPsPopScope()
240 *ArgList = Scope->ParseScope.ArgList; in AcpiPsPopScope()
241 *ArgCount = Scope->ParseScope.ArgCount; in AcpiPsPopScope()
242 ParserState->PkgEnd = Scope->ParseScope.PkgEnd; in AcpiPsPopScope()