Home | History | Annotate | Download | only in dispatcher

Lines Matching defs:Index

167     UINT32                  Index,
173 UINT32 Index,
181 UINT32 Index,
264 UINT32 Index;
272 for (Index = 0; Index < ACPI_METHOD_NUM_LOCALS; Index++)
274 if (WalkState->LocalVariables[Index].Object)
277 Index, WalkState->LocalVariables[Index].Object));
281 AcpiNsDetachObject (&WalkState->LocalVariables[Index]);
287 for (Index = 0; Index < ACPI_METHOD_NUM_ARGS; Index++)
289 if (WalkState->Arguments[Index].Object)
292 Index, WalkState->Arguments[Index].Object));
296 AcpiNsDetachObject (&WalkState->Arguments[Index]);
327 UINT32 Index = 0;
342 while ((Index < ACPI_METHOD_NUM_ARGS) &&
343 (Index < MaxParamCount) &&
344 Params[Index])
352 ACPI_REFCLASS_ARG, Index, Params[Index], WalkState);
358 Index++;
360 AcpiExTraceArgs(Params, Index);
362 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "%u args passed to method\n", Index));
373 * Index - Which Local or Arg whose type to get
386 UINT32 Index,
400 if (Index > ACPI_METHOD_MAX_LOCAL)
403 "Local index %u is invalid (max %u)",
404 Index, ACPI_METHOD_MAX_LOCAL));
410 *Node = &WalkState->LocalVariables[Index];
415 if (Index > ACPI_METHOD_MAX_ARG)
418 "Arg index %u is invalid (max %u)",
419 Index, ACPI_METHOD_MAX_ARG));
425 *Node = &WalkState->Arguments[Index];
444 * Index - Which Local or Arg to get
450 * DESCRIPTION: Insert an object onto the method stack at entry Opcode:Index.
458 UINT32 Index,
476 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
503 * Index - Which localVar or argument to get
517 UINT32 Index,
539 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
554 * Index points to uninitialized object.
582 Index, Node));
601 * The Index points to an initialized and valid object.
617 * Index - Which localVar or argument to delete
622 * DESCRIPTION: Delete the entry at Opcode:Index. Inserts
630 UINT32 Index,
643 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
681 * Index - Which Local or Arg to set
696 UINT32 Index,
707 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Type=%2.2X Index=%u Obj=%p\n",
708 Type, Index, ObjDesc));
719 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
814 AcpiDsMethodDataDeleteValue (Type, Index, WalkState);
822 Status = AcpiDsMethodDataSetValue (Type, Index, NewObjDesc, WalkState);
842 * Index - Which Local or Arg whose type to get
854 UINT32 Index,
867 Status = AcpiDsMethodDataGetNode (Opcode, Index, WalkState, &Node);