Lines Matching refs:index

20 				 u32 index, struct acpi_walk_state *walk_state);
24 u32 index,
31 u32 index, struct acpi_walk_state *walk_state);
104 u32 index;
110 for (index = 0; index < ACPI_METHOD_NUM_LOCALS; index++) {
111 if (walk_state->local_variables[index].object) {
113 index,
114 walk_state->local_variables[index].
120 local_variables[index]);
126 for (index = 0; index < ACPI_METHOD_NUM_ARGS; index++) {
127 if (walk_state->arguments[index].object) {
129 index,
130 walk_state->arguments[index].object));
134 acpi_ns_detach_object(&walk_state->arguments[index]);
163 u32 index = 0;
175 while ((index < ACPI_METHOD_NUM_ARGS) &&
176 (index < max_param_count) && params[index]) {
183 acpi_ds_method_data_set_value(ACPI_REFCLASS_ARG, index,
184 params[index], walk_state);
189 index++;
192 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "%u args passed to method\n", index));
202 * index - Which Local or Arg whose type to get
214 u32 index,
226 if (index > ACPI_METHOD_MAX_LOCAL) {
228 "Local index %u is invalid (max %u)",
229 index, ACPI_METHOD_MAX_LOCAL));
235 *node = &walk_state->local_variables[index];
240 if (index > ACPI_METHOD_MAX_ARG) {
242 "Arg index %u is invalid (max %u)",
243 index, ACPI_METHOD_MAX_ARG));
249 *node = &walk_state->arguments[index];
267 * index - Which Local or Arg to get
280 u32 index,
296 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
321 * index - Which localVar or argument to get
334 u32 index,
353 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
392 index, node));
428 * index - Which localVar or argument to delete
440 u32 index, struct acpi_walk_state *walk_state)
450 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
485 * index - Which Local or Arg to set
499 u32 index,
510 type, index, obj_desc));
520 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
613 acpi_ds_method_data_delete_value(type, index, walk_state);
622 acpi_ds_method_data_set_value(type, index, new_obj_desc,
641 * index - Which Local or Arg whose type to get
652 u32 index, struct acpi_walk_state *walk_state)
662 status = acpi_ds_method_data_get_node(opcode, index, walk_state, &node);