Lines Matching defs:state

29  *              walk_state          - Current Walk state
42 union acpi_generic_state *state;
47 state = walk_state->results;
49 /* Incorrect state of result stack */
51 if (state && !walk_state->result_count) {
56 if (!state && walk_state->result_count) {
57 ACPI_ERROR((AE_INFO, "No result state for result stack"));
63 if (!state) {
74 *object = state->results.obj_desc[index];
82 state->results.obj_desc[index] = NULL;
103 * walk_state - Current Walk state
115 union acpi_generic_state *state;
141 state = walk_state->results;
142 if (!state) {
157 state->results.obj_desc[index] = object;
175 * PARAMETERS: walk_state - Current Walk state
185 union acpi_generic_state *state;
198 state = acpi_ut_create_generic_state();
199 if (!state) {
203 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_RESULT;
204 acpi_ut_push_generic_state(&walk_state->results, state);
211 state, walk_state));
220 * PARAMETERS: walk_state - Current Walk state
230 union acpi_generic_state *state;
248 state = acpi_ut_pop_generic_state(&walk_state->results);
249 acpi_ut_delete_generic_state(state);
257 state, walk_state->result_count, walk_state));
267 * walk_state - Current Walk state
313 * walk_state - Current Walk state
358 * walk_state - Current Walk state
403 * PARAMETERS: thread - Get current active state for this Thread
405 * RETURN: Pointer to the current walk state
407 * DESCRIPTION: Get the walk state that is at the head of the list (the "current"
408 * walk state.)
432 * thread - Thread state object
436 * DESCRIPTION: Place the Thread state at the head of the state list
456 * PARAMETERS: thread - Current thread state
476 /* Next walk state becomes the current walk state */
497 * thread - Current thread state
499 * RETURN: Pointer to the new walk state.
501 * DESCRIPTION: Allocate and initialize a new walk state. The current walk
502 * state is set to this new state.
537 /* Put the new state at the head of the walk list */
550 * PARAMETERS: walk_state - New state to be initialized
560 * DESCRIPTION: Initialize a walk state for a pass 1 or 2 parse tree walk
671 * DESCRIPTION: Delete a walk state including all internal data structures
677 union acpi_generic_state *state;
686 ACPI_ERROR((AE_INFO, "%p is not a valid walk state",
702 state = walk_state->control_state;
703 walk_state->control_state = state->common.next;
705 acpi_ut_delete_generic_state(state);
711 state = walk_state->scope_info;
712 walk_state->scope_info = state->common.next;
714 acpi_ut_delete_generic_state(state);
720 state = walk_state->results;
721 walk_state->results = state->common.next;
723 acpi_ut_delete_generic_state(state);