Lines Matching defs:node
28 struct acpi_namespace_node *node,
36 * *dest_desc - Where to store it. Must be an NS node
68 /* dest_desc can be either a namespace node or an ACPI object */
72 * Dest is a namespace node,
73 * Storing an object into a Named node.
335 * node - Named object to receive the value
362 struct acpi_namespace_node *node,
373 /* Get current type of the node, and object attached to Node */
375 target_type = acpi_ns_get_type(node);
376 target_desc = acpi_ns_get_attached_object(node);
378 ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Storing %p [%s] to node %p [%s]\n",
380 acpi_ut_get_object_type_name(source_desc), node,
438 acpi_ut_get_type_name(node->type),
439 node->name.ascii));
476 acpi_ex_store_direct_to_node(source_desc, node,
496 * Note: This may change the type of the node if an explicit
497 * store has been performed such that the node/object type
501 acpi_ns_attach_object(node, new_desc,
537 acpi_ex_store_direct_to_node(source_desc, node, walk_state);
549 * node - Named object to receive the value
554 * DESCRIPTION: "Store" an object directly to a node. This involves a copy
561 struct acpi_namespace_node *node,
570 "Storing [%s] (%p) directly into node [%s] (%p)"
573 source_desc, acpi_ut_get_type_name(node->type),
574 node));
584 /* Attach the new object to the node */
586 status = acpi_ns_attach_object(node, new_desc, new_desc->common.type);