• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/

Lines Matching defs:state

62  *              walk_state          - Current Walk state
75 union acpi_generic_state *state;
80 state = walk_state->results;
82 /* Incorrect state of result stack */
84 if (state && !walk_state->result_count) {
89 if (!state && walk_state->result_count) {
90 ACPI_ERROR((AE_INFO, "No result state for result stack"));
96 if (!state) {
107 *object = state->results.obj_desc[index];
115 state->results.obj_desc[index] = NULL;
136 * walk_state - Current Walk state
148 union acpi_generic_state *state;
174 state = walk_state->results;
175 if (!state) {
190 state->results.obj_desc[index] = object;
208 * PARAMETERS: walk_state - Current Walk state
218 union acpi_generic_state *state;
231 state = acpi_ut_create_generic_state();
232 if (!state) {
236 state->common.descriptor_type = ACPI_DESC_TYPE_STATE_RESULT;
237 acpi_ut_push_generic_state(&walk_state->results, state);
244 state, walk_state));
253 * PARAMETERS: walk_state - Current Walk state
263 union acpi_generic_state *state;
281 state = acpi_ut_pop_generic_state(&walk_state->results);
282 acpi_ut_delete_generic_state(state);
290 state, walk_state->result_count, walk_state));
300 * walk_state - Current Walk state
346 * walk_state - Current Walk state
391 * walk_state - Current Walk state
436 * PARAMETERS: Thread - Get current active state for this Thread
438 * RETURN: Pointer to the current walk state
440 * DESCRIPTION: Get the walk state that is at the head of the list (the "current"
441 * walk state.)
465 * Thread - Thread state object
469 * DESCRIPTION: Place the Thread state at the head of the state list
489 * PARAMETERS: Thread - Current thread state
509 /* Next walk state becomes the current walk state */
530 * Thread - Current thread state
532 * RETURN: Pointer to the new walk state.
534 * DESCRIPTION: Allocate and initialize a new walk state. The current walk
535 * state is set to this new state.
567 /* Put the new state at the head of the walk list */
580 * PARAMETERS: walk_state - New state to be initialized
590 * DESCRIPTION: Initialize a walk state for a pass 1 or 2 parse tree walk
696 * DESCRIPTION: Delete a walk state including all internal data structures
702 union acpi_generic_state *state;
711 ACPI_ERROR((AE_INFO, "%p is not a valid walk state",
727 state = walk_state->control_state;
728 walk_state->control_state = state->common.next;
730 acpi_ut_delete_generic_state(state);
736 state = walk_state->scope_info;
737 walk_state->scope_info = state->common.next;
739 acpi_ut_delete_generic_state(state);
745 state = walk_state->results;
746 walk_state->results = state->common.next;
748 acpi_ut_delete_generic_state(state);