Lines Matching refs:node

251 			     struct acpi_namespace_node **node)  in acpi_ds_method_data_get_node()  argument
270 *node = &walk_state->local_variables[index]; in acpi_ds_method_data_get_node()
284 *node = &walk_state->arguments[index]; in acpi_ds_method_data_get_node()
320 struct acpi_namespace_node *node; in acpi_ds_method_data_set_value() local
331 status = acpi_ds_method_data_get_node(type, index, walk_state, &node); in acpi_ds_method_data_set_value()
346 node->object = object; in acpi_ds_method_data_set_value()
374 struct acpi_namespace_node *node; in acpi_ds_method_data_get_value() local
388 status = acpi_ds_method_data_get_node(type, index, walk_state, &node); in acpi_ds_method_data_get_value()
395 object = node->object; in acpi_ds_method_data_get_value()
416 node->object = object; in acpi_ds_method_data_get_value()
427 index, node)); in acpi_ds_method_data_get_value()
478 struct acpi_namespace_node *node; in acpi_ds_method_data_delete_value() local
485 status = acpi_ds_method_data_get_node(type, index, walk_state, &node); in acpi_ds_method_data_delete_value()
492 object = acpi_ns_get_attached_object(node); in acpi_ds_method_data_delete_value()
499 node->object = NULL; in acpi_ds_method_data_delete_value()
539 struct acpi_namespace_node *node; in acpi_ds_store_object_to_local() local
555 status = acpi_ds_method_data_get_node(type, index, walk_state, &node); in acpi_ds_store_object_to_local()
560 current_obj_desc = acpi_ns_get_attached_object(node); in acpi_ds_store_object_to_local()
688 struct acpi_namespace_node *node; in acpi_ds_method_data_get_type() local
695 status = acpi_ds_method_data_get_node(opcode, index, walk_state, &node); in acpi_ds_method_data_get_type()
702 object = acpi_ns_get_attached_object(node); in acpi_ds_method_data_get_type()