Lines Matching refs:ParserState
174 ACPI_PARSE_STATE *ParserState) in AcpiPsGetParentScope() argument
177 return (ParserState->Scope->ParseScope.Op); in AcpiPsGetParentScope()
197 ACPI_PARSE_STATE *ParserState) in AcpiPsHasCompletedScope() argument
201 ((ParserState->Aml >= ParserState->Scope->ParseScope.ArgEnd || in AcpiPsHasCompletedScope()
202 !ParserState->Scope->ParseScope.ArgCount))); in AcpiPsHasCompletedScope()
221 ACPI_PARSE_STATE *ParserState, in AcpiPsInitScope() argument
239 Scope->ParseScope.ArgEnd = ParserState->AmlEnd; in AcpiPsInitScope()
240 Scope->ParseScope.PkgEnd = ParserState->AmlEnd; in AcpiPsInitScope()
242 ParserState->Scope = Scope; in AcpiPsInitScope()
243 ParserState->StartOp = RootOp; in AcpiPsInitScope()
266 ACPI_PARSE_STATE *ParserState, in AcpiPsPushScope() argument
287 Scope->ParseScope.PkgEnd = ParserState->PkgEnd; in AcpiPsPushScope()
291 AcpiUtPushGenericState (&ParserState->Scope, Scope); in AcpiPsPushScope()
297 Scope->ParseScope.ArgEnd = ParserState->PkgEnd; in AcpiPsPushScope()
328 ACPI_PARSE_STATE *ParserState, in AcpiPsPopScope() argument
333 ACPI_GENERIC_STATE *Scope = ParserState->Scope; in AcpiPsPopScope()
343 Scope = AcpiUtPopGenericState (&ParserState->Scope); in AcpiPsPopScope()
350 ParserState->PkgEnd = Scope->ParseScope.PkgEnd; in AcpiPsPopScope()
386 ACPI_PARSE_STATE *ParserState) in AcpiPsCleanupScope() argument
391 ACPI_FUNCTION_TRACE_PTR (PsCleanupScope, ParserState); in AcpiPsCleanupScope()
394 if (!ParserState) in AcpiPsCleanupScope()
401 while (ParserState->Scope) in AcpiPsCleanupScope()
403 Scope = AcpiUtPopGenericState (&ParserState->Scope); in AcpiPsCleanupScope()