Lines Matching refs:parse_scope
32 return (parser_state->scope->parse_scope.op); in acpi_ps_get_parent_scope()
53 ((parser_state->aml >= parser_state->scope->parse_scope.arg_end in acpi_ps_has_completed_scope()
54 || !parser_state->scope->parse_scope.arg_count))); in acpi_ps_has_completed_scope()
84 scope->parse_scope.op = root_op; in acpi_ps_init_scope()
85 scope->parse_scope.arg_count = ACPI_VAR_ARGS; in acpi_ps_init_scope()
86 scope->parse_scope.arg_end = parser_state->aml_end; in acpi_ps_init_scope()
87 scope->parse_scope.pkg_end = parser_state->aml_end; in acpi_ps_init_scope()
125 scope->parse_scope.op = op; in acpi_ps_push_scope()
126 scope->parse_scope.arg_list = remaining_args; in acpi_ps_push_scope()
127 scope->parse_scope.arg_count = arg_count; in acpi_ps_push_scope()
128 scope->parse_scope.pkg_end = parser_state->pkg_end; in acpi_ps_push_scope()
138 scope->parse_scope.arg_end = parser_state->pkg_end; in acpi_ps_push_scope()
142 scope->parse_scope.arg_end = ACPI_TO_POINTER(ACPI_MAX_PTR); in acpi_ps_push_scope()
179 *op = scope->parse_scope.op; in acpi_ps_pop_scope()
180 *arg_list = scope->parse_scope.arg_list; in acpi_ps_pop_scope()
181 *arg_count = scope->parse_scope.arg_count; in acpi_ps_pop_scope()
182 parser_state->pkg_end = scope->parse_scope.pkg_end; in acpi_ps_pop_scope()