Lines Matching full:arguments
3 * Module Name: dsmthdat - control method arguments and local variables
78 * DESCRIPTION: Initialize the data structures that hold the method's arguments
97 /* Init the method arguments */ in acpi_ds_method_data_init()
100 ACPI_MOVE_32_TO_32(&walk_state->arguments[i].name, in acpi_ds_method_data_init()
102 walk_state->arguments[i].name.integer |= (i << 24); in acpi_ds_method_data_init()
103 walk_state->arguments[i].descriptor_type = ACPI_DESC_TYPE_NAMED; in acpi_ds_method_data_init()
104 walk_state->arguments[i].type = ACPI_TYPE_ANY; in acpi_ds_method_data_init()
105 walk_state->arguments[i].flags = ANOBJ_METHOD_ARG; in acpi_ds_method_data_init()
132 * DESCRIPTION: Delete method locals and arguments. Arguments are only
159 /* Detach the arguments */ in acpi_ds_method_data_delete_all()
162 if (walk_state->arguments[index].object) { in acpi_ds_method_data_delete_all()
165 walk_state->arguments[index].object)); in acpi_ds_method_data_delete_all()
169 acpi_ns_detach_object(&walk_state->arguments[index]); in acpi_ds_method_data_delete_all()
186 * DESCRIPTION: Initialize arguments for a method. The parameter list is a list
256 * Method Locals and Arguments are supported in acpi_ds_method_data_get_node()
284 *node = &walk_state->arguments[index]; in acpi_ds_method_data_get_node()