Lines Matching full:scope
4 * Module Name: dswscope - Scope stack manipulation
25 * DESCRIPTION: Pop (and free) everything on the scope stack except the
26 * root scope object (which remains at the stack top.)
37 /* Pop a scope off the stack */ in acpi_ds_scope_stack_clear()
40 walk_state->scope_info = scope_info->scope.next; in acpi_ds_scope_stack_clear()
61 * DESCRIPTION: Push the current scope on the scope stack, and make the
78 /* Invalid scope */ in acpi_ds_scope_stack_push()
80 ACPI_ERROR((AE_INFO, "Null scope parameter")); in acpi_ds_scope_stack_push()
90 /* Allocate a new scope object */ in acpi_ds_scope_stack_push()
97 /* Init new scope object */ in acpi_ds_scope_stack_push()
100 scope_info->scope.node = node; in acpi_ds_scope_stack_push()
106 "[%.2d] Pushed scope ", in acpi_ds_scope_stack_push()
114 scope.node), in acpi_ds_scope_stack_push()
122 ", New scope -> [%4.4s] (%s)\n", in acpi_ds_scope_stack_push()
123 acpi_ut_get_node_name(scope_info->scope.node), in acpi_ds_scope_stack_push()
126 /* Push new scope object onto stack */ in acpi_ds_scope_stack_push()
140 * DESCRIPTION: Pop the scope stack once.
152 * Pop scope info object off the stack. in acpi_ds_scope_stack_pop()
162 "[%.2d] Popped scope [%4.4s] (%s), New scope -> ", in acpi_ds_scope_stack_pop()
164 acpi_ut_get_node_name(scope_info->scope.node), in acpi_ds_scope_stack_pop()
171 scope.node), in acpi_ds_scope_stack_pop()