Home | History | Annotate | Download | only in dispatcher

Lines Matching defs:State

177  *              WalkState           - Current Walk state
191 ACPI_GENERIC_STATE *State;
198 State = WalkState->Results;
200 /* Incorrect state of result stack */
202 if (State && !WalkState->ResultCount)
208 if (!State && WalkState->ResultCount)
210 ACPI_ERROR ((AE_INFO, "No result state for result stack"));
216 if (!State)
218 ACPI_ERROR ((AE_INFO, "Result stack is empty! State=%p", WalkState));
227 *Object = State->Results.ObjDesc [Index];
230 ACPI_ERROR ((AE_INFO, "No result objects on result stack, State=%p",
235 State->Results.ObjDesc [Index] = NULL;
246 "Obj=%p [%s] Index=%X State=%p Num=%X\n", *Object,
259 * WalkState - Current Walk state
272 ACPI_GENERIC_STATE *State;
303 State = WalkState->Results;
304 if (!State)
313 "Null Object! State=%p Num=%u",
321 State->Results.ObjDesc [Index] = Object;
324 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Obj=%p [%s] State=%p Num=%X Cur=%X\n",
336 * PARAMETERS: WalkState - Current Walk state
348 ACPI_GENERIC_STATE *State;
359 ACPI_ERROR ((AE_INFO, "Result stack overflow: State=%p Num=%u",
364 State = AcpiUtCreateGenericState ();
365 if (!State)
370 State->Common.DescriptorType = ACPI_DESC_TYPE_STATE_RESULT;
371 AcpiUtPushGenericState (&WalkState->Results, State);
377 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Results=%p State=%p\n",
378 State, WalkState));
388 * PARAMETERS: WalkState - Current Walk state
400 ACPI_GENERIC_STATE *State;
411 "Result stack underflow - State=%p\n", WalkState));
421 State = AcpiUtPopGenericState (&WalkState->Results);
422 AcpiUtDeleteGenericState (State);
429 "Result=%p RemainingResults=%X State=%p\n",
430 State, WalkState->ResultCount, WalkState));
441 * WalkState - Current Walk state
462 "Object stack overflow! Obj=%p State
476 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Obj=%p [%s] State=%p #Ops=%X\n",
489 * WalkState - Current Walk state
516 "Object stack underflow! Count=%X State=%p #Ops=%u",
527 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Count=%X State=%p #Ops=%u\n",
539 * WalkState - Current Walk state
583 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Count=%X State=%p #Ops=%X\n",
592 * PARAMETERS: Thread - Get current active state for this Thread
594 * RETURN: Pointer to the current walk state
596 * DESCRIPTION: Get the walk state that is at the head of the list (the "current"
597 * walk state.)
624 * PARAMETERS: WalkState - State to push
625 * Thread - Thread state object
629 * DESCRIPTION: Place the Thread state at the head of the state list
652 * PARAMETERS: Thread - Current thread state
676 /* Next walk state becomes the current walk state */
682 * that there is a parent WALK STATE
698 * Thread - Current thread state
700 * RETURN: Pointer to the new walk state.
702 * DESCRIPTION: Allocate and initialize a new walk state. The current walk
703 * state is set to this new state.
740 /* Put the new state at the head of the walk list */
755 * PARAMETERS: WalkState - New state to be initialized
765 * DESCRIPTION: Initialize a walk state for a pass 1 or 2 parse tree walk
884 * PARAMETERS: WalkState - State to delete
888 * DESCRIPTION: Delete a walk state including all internal data structures
896 ACPI_GENERIC_STATE *State;
909 ACPI_ERROR ((AE_INFO, "%p is not a valid walk state",
927 State = WalkState->ControlState;
928 WalkState->ControlState = State->Common.Next;
930 AcpiUtDeleteGenericState (State);
937 State = WalkState->ScopeInfo;
938 WalkState->ScopeInfo = State->Common.Next;
940 AcpiUtDeleteGenericState (State);
947 State = WalkState->Results;
948 WalkState->Results = State->Common.Next;
950 AcpiUtDeleteGenericState (State);