Lines Matching refs:node

139 	struct acpi_namespace_node *node;  in acpi_db_set_scope()  local
153 ACPI_NS_NO_UPSEARCH, &node); in acpi_db_set_scope()
163 ACPI_NS_NO_UPSEARCH, &node); in acpi_db_set_scope()
183 acpi_gbl_db_scope_node = node; in acpi_db_set_scope()
428 struct acpi_namespace_node *node = in acpi_db_walk_for_predefined_names() local
436 predefined = acpi_ut_match_predefined_method(node->name.ascii); in acpi_db_walk_for_predefined_names()
441 pathname = acpi_ns_get_external_pathname(node); in acpi_db_walk_for_predefined_names()
470 acpi_ns_check_acpi_compliance(pathname, node, predefined); in acpi_db_walk_for_predefined_names()
521 struct acpi_namespace_node *node = in acpi_db_walk_for_object_counts() local
524 if (node->type > ACPI_TYPE_NS_NODE_MAX) { in acpi_db_walk_for_object_counts()
526 node->name.ascii, node->type); in acpi_db_walk_for_object_counts()
528 info->types[node->type]++; in acpi_db_walk_for_object_counts()
678 struct acpi_namespace_node *node = in acpi_db_integrity_walk() local
688 if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) { in acpi_db_integrity_walk()
691 "is %2.2X should be %2.2X\n", node, in acpi_db_integrity_walk()
692 acpi_ut_get_descriptor_name(node), in acpi_db_integrity_walk()
693 ACPI_GET_DESCRIPTOR_TYPE(node), in acpi_db_integrity_walk()
698 if ((node->type == ACPI_TYPE_LOCAL_ALIAS) || in acpi_db_integrity_walk()
699 (node->type == ACPI_TYPE_LOCAL_METHOD_ALIAS)) { in acpi_db_integrity_walk()
700 node = (struct acpi_namespace_node *)node->object; in acpi_db_integrity_walk()
706 if (node->type > ACPI_TYPE_LOCAL_MAX) { in acpi_db_integrity_walk()
708 node, node->type); in acpi_db_integrity_walk()
712 if (!acpi_ut_valid_acpi_name(node->name.ascii)) { in acpi_db_integrity_walk()
713 acpi_os_printf("Invalid AcpiName for Node %p\n", node); in acpi_db_integrity_walk()
717 object = acpi_ns_get_attached_object(node); in acpi_db_integrity_walk()
778 struct acpi_namespace_node *node = in acpi_db_walk_for_references() local
783 if (node == (void *)obj_desc) { in acpi_db_walk_for_references()
785 acpi_ut_get_node_name(node)); in acpi_db_walk_for_references()
790 if (acpi_ns_get_attached_object(node) == obj_desc) { in acpi_db_walk_for_references()
792 node, acpi_ut_get_node_name(node)); in acpi_db_walk_for_references()
844 struct acpi_namespace_node *node = in acpi_db_bus_walk() local
852 if ((node->type != ACPI_TYPE_DEVICE) && in acpi_db_bus_walk()
853 (node->type != ACPI_TYPE_PROCESSOR)) { in acpi_db_bus_walk()
859 status = acpi_get_handle(node, METHOD_NAME__PRT, in acpi_db_bus_walk()
882 acpi_os_printf("%-32s Type %X", (char *)buffer.pointer, node->type); in acpi_db_bus_walk()