Lines Matching defs:type

19 acpi_ds_method_data_delete_value(u8 type,
23 acpi_ds_method_data_set_value(u8 type,
69 walk_state->arguments[i].type = ACPI_TYPE_ANY;
82 walk_state->local_variables[i].type = ACPI_TYPE_ANY;
200 * PARAMETERS: type - Either ACPI_REFCLASS_LOCAL or
202 * index - Which Local or Arg whose type to get
213 acpi_ds_method_data_get_node(u8 type,
223 switch (type) {
254 ACPI_ERROR((AE_INFO, "Type %u is invalid", type));
265 * PARAMETERS: type - Either ACPI_REFCLASS_LOCAL or
279 acpi_ds_method_data_set_value(u8 type,
291 type, object->common.reference_count,
292 acpi_ut_get_type_name(object->common.type)));
296 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
319 * PARAMETERS: type - Either ACPI_REFCLASS_LOCAL or
333 acpi_ds_method_data_get_value(u8 type,
353 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
387 switch (type) {
407 type));
426 * PARAMETERS: type - Either ACPI_REFCLASS_LOCAL or
439 acpi_ds_method_data_delete_value(u8 type,
450 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
483 * PARAMETERS: type - Either ACPI_REFCLASS_LOCAL or
498 acpi_ds_store_object_to_local(u8 type,
510 type, index, obj_desc));
520 status = acpi_ds_method_data_get_node(type, index, walk_state, &node);
572 if (type == ACPI_REFCLASS_ARG) {
579 (current_obj_desc->common.type ==
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
644 * RETURN: Data type of current value of the selected Arg or Local
646 * DESCRIPTION: Get the type of the object stored in the Local or Arg
677 /* Get the object type */
679 return_VALUE(object->type);