Lines Matching refs:Index

59     UINT32                  Index,
65 UINT32 Index,
73 UINT32 Index,
156 UINT32 Index;
164 for (Index = 0; Index < ACPI_METHOD_NUM_LOCALS; Index++)
166 if (WalkState->LocalVariables[Index].Object)
169 Index, WalkState->LocalVariables[Index].Object));
173 AcpiNsDetachObject (&WalkState->LocalVariables[Index]);
179 for (Index = 0; Index < ACPI_METHOD_NUM_ARGS; Index++)
181 if (WalkState->Arguments[Index].Object)
184 Index, WalkState->Arguments[Index].Object));
188 AcpiNsDetachObject (&WalkState->Arguments[Index]);
219 UINT32 Index = 0;
234 while ((Index < ACPI_METHOD_NUM_ARGS) &&
235 (Index < MaxParamCount) &&
236 Params[Index])
244 ACPI_REFCLASS_ARG, Index, Params[Index], WalkState);
250 Index++;
253 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "%u args passed to method\n", Index));
264 * Index - Which Local or Arg whose type to get
277 UINT32 Index,
291 if (Index > ACPI_METHOD_MAX_LOCAL)
295 Index, ACPI_METHOD_MAX_LOCAL));
301 *Node = &WalkState->LocalVariables[Index];
306 if (Index > ACPI_METHOD_MAX_ARG)
310 Index, ACPI_METHOD_MAX_ARG));
316 *Node = &WalkState->Arguments[Index];
335 * Index - Which Local or Arg to get
341 * DESCRIPTION: Insert an object onto the method stack at entry Opcode:Index.
349 UINT32 Index,
367 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
394 * Index - Which localVar or argument to get
408 UINT32 Index,
430 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
445 * Index points to uninitialized object.
473 Index, Node));
492 * The Index points to an initialized and valid object.
508 * Index - Which localVar or argument to delete
513 * DESCRIPTION: Delete the entry at Opcode:Index. Inserts
521 UINT32 Index,
534 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
572 * Index - Which Local or Arg to set
587 UINT32 Index,
598 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Type=%2.2X Index=%u Obj=%p\n",
599 Type, Index, ObjDesc));
610 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
705 AcpiDsMethodDataDeleteValue (Type, Index, WalkState);
713 Status = AcpiDsMethodDataSetValue (Type, Index, NewObjDesc, WalkState);
732 * Index - Which Local or Arg whose type to get
744 UINT32 Index,
757 Status = AcpiDsMethodDataGetNode (Opcode, Index, WalkState, &Node);