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++;
361 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "%u args passed to method\n", Index));
372 * Index - Which Local or Arg whose type to get
385 UINT32 Index,
399 if (Index > ACPI_METHOD_MAX_LOCAL)
403 Index, ACPI_METHOD_MAX_LOCAL));
409 *Node = &WalkState->LocalVariables[Index];
414 if (Index > ACPI_METHOD_MAX_ARG)
418 Index, ACPI_METHOD_MAX_ARG));
424 *Node = &WalkState->Arguments[Index];
443 * Index - Which Local or Arg to get
449 * DESCRIPTION: Insert an object onto the method stack at entry Opcode:Index.
457 UINT32 Index,
475 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
502 * Index - Which localVar or argument to get
516 UINT32 Index,
538 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
553 * Index points to uninitialized object.
581 Index, Node));
600 * The Index points to an initialized and valid object.
616 * Index - Which localVar or argument to delete
621 * DESCRIPTION: Delete the entry at Opcode:Index. Inserts
629 UINT32 Index,
642 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
680 * Index - Which Local or Arg to set
695 UINT32 Index,
706 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Type=%2.2X Index=%u Obj=%p\n",
707 Type, Index, ObjDesc));
718 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
813 AcpiDsMethodDataDeleteValue (Type, Index, WalkState);
821 Status = AcpiDsMethodDataSetValue (Type, Index, NewObjDesc, WalkState);
841 * Index - Which Local or Arg whose type to get
853 UINT32 Index,
866 Status = AcpiDsMethodDataGetNode (Opcode, Index, WalkState, &Node);