Lines Matching defs:node

191 	 * Get the actual namespace node for the target object.
194 * 1) Null node, valid pathname from root (absolute path)
277 switch (acpi_ns_get_type(info->node)) {
475 struct acpi_namespace_node *node;
498 node = info->return_object->reference.object;
499 if (node) {
500 obj_desc = node->object;
575 * namespace objects). We cannot allow the deletion of a namespace node
599 /* Now we can validate the starting node */
641 struct acpi_namespace_node *node;
654 node = acpi_ns_validate_handle(obj_handle);
660 if (!node) {
679 status = acpi_ut_execute_HID(node, &hid);
694 status = acpi_ut_execute_CID(node, &cid);
723 status = acpi_ut_execute_STA(node, &flags);
820 * PARAMETERS: obj_handle - Namespace node
826 * DESCRIPTION: Attach arbitrary data and handler to a namespace node.
833 struct acpi_namespace_node *node;
849 node = acpi_ns_validate_handle(obj_handle);
850 if (!node) {
855 status = acpi_ns_attach_data(node, handler, data);
868 * PARAMETERS: obj_handle - Namespace node handle
873 * DESCRIPTION: Remove data that was previously attached to a node.
879 struct acpi_namespace_node *node;
895 node = acpi_ns_validate_handle(obj_handle);
896 if (!node) {
901 status = acpi_ns_detach_data(node, handler);
914 * PARAMETERS: obj_handle - Namespace node
921 * DESCRIPTION: Retrieve data that was previously attached to a namespace node
929 struct acpi_namespace_node *node;
945 node = acpi_ns_validate_handle(obj_handle);
946 if (!node) {
951 status = acpi_ns_get_attached_data(node, handler, data);
967 * PARAMETERS: obj_handle - Namespace node
973 * DESCRIPTION: Retrieve data that was previously attached to a namespace node.