• Home
  • Raw
  • Download

Lines Matching refs:node

63 acpi_dm_test_resource_conversion(struct acpi_namespace_node *node, char *name);
91 struct acpi_namespace_node *node; in acpi_db_convert_to_node() local
99 node = ACPI_TO_POINTER(address); in acpi_db_convert_to_node()
100 if (!acpi_os_readable(node, sizeof(struct acpi_namespace_node))) { in acpi_db_convert_to_node()
101 acpi_os_printf("Address %p is invalid", node); in acpi_db_convert_to_node()
107 if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) { in acpi_db_convert_to_node()
110 node, acpi_ut_get_descriptor_name(node)); in acpi_db_convert_to_node()
118 node = acpi_db_local_ns_lookup(in_string); in acpi_db_convert_to_node()
119 if (!node) { in acpi_db_convert_to_node()
123 node = acpi_gbl_root_node; in acpi_db_convert_to_node()
127 return (node); in acpi_db_convert_to_node()
373 struct acpi_namespace_node *node; in acpi_db_unload_acpi_table() local
378 node = acpi_db_convert_to_node(object_name); in acpi_db_unload_acpi_table()
379 if (!node) { in acpi_db_unload_acpi_table()
383 status = acpi_unload_parent_table(ACPI_CAST_PTR(acpi_handle, node)); in acpi_db_unload_acpi_table()
386 object_name, node); in acpi_db_unload_acpi_table()
409 struct acpi_namespace_node *node; in acpi_db_send_notify() local
414 node = acpi_db_convert_to_node(name); in acpi_db_send_notify()
415 if (!node) { in acpi_db_send_notify()
421 if (acpi_ev_is_notify_object(node)) { in acpi_db_send_notify()
422 status = acpi_ev_queue_notify_request(node, value); in acpi_db_send_notify()
429 acpi_ut_get_node_name(node), in acpi_db_send_notify()
430 acpi_ut_get_type_name(node->type)); in acpi_db_send_notify()
529 struct acpi_namespace_node *node; in acpi_db_display_template() local
535 node = acpi_db_convert_to_node(buffer_arg); in acpi_db_display_template()
536 if (!node || (node == acpi_gbl_root_node)) { in acpi_db_display_template()
543 if (node->type != ACPI_TYPE_BUFFER) { in acpi_db_display_template()
555 status = acpi_rs_create_resource_list(node->object, &return_buffer); in acpi_db_display_template()
574 acpi_ut_debug_dump_buffer((u8 *)node->object->buffer.pointer, in acpi_db_display_template()
575 node->object->buffer.length, in acpi_db_display_template()
695 acpi_dm_test_resource_conversion(struct acpi_namespace_node *node, char *name) in acpi_dm_test_resource_conversion() argument
711 status = acpi_evaluate_object(node, name, NULL, &return_buffer); in acpi_dm_test_resource_conversion()
720 status = acpi_get_current_resources(node, &resource_buffer); in acpi_dm_test_resource_conversion()
791 struct acpi_namespace_node *node; in acpi_db_device_resources() local
800 node = ACPI_CAST_PTR(struct acpi_namespace_node, obj_handle); in acpi_db_device_resources()
801 parent_path = acpi_ns_get_normalized_pathname(node, TRUE); in acpi_db_device_resources()
808 (void)acpi_get_handle(node, METHOD_NAME__PRT, in acpi_db_device_resources()
810 (void)acpi_get_handle(node, METHOD_NAME__CRS, in acpi_db_device_resources()
812 (void)acpi_get_handle(node, METHOD_NAME__PRS, in acpi_db_device_resources()
814 (void)acpi_get_handle(node, METHOD_NAME__AEI, in acpi_db_device_resources()
844 status = acpi_get_irq_routing_table(node, &return_buffer); in acpi_db_device_resources()
873 status = acpi_walk_resources(node, METHOD_NAME__CRS, in acpi_db_device_resources()
886 status = acpi_get_current_resources(node, &return_buffer); in acpi_db_device_resources()
915 (void)acpi_dm_test_resource_conversion(node, METHOD_NAME__CRS); in acpi_db_device_resources()
921 status = acpi_set_current_resources(node, &return_buffer); in acpi_db_device_resources()
952 status = acpi_get_possible_resources(node, &return_buffer); in acpi_db_device_resources()
984 status = acpi_get_event_resources(node, &return_buffer); in acpi_db_device_resources()
1017 struct acpi_namespace_node *node; in acpi_db_display_resources() local
1032 node = acpi_db_convert_to_node(object_arg); in acpi_db_display_resources()
1033 if (node) { in acpi_db_display_resources()
1034 if (node->type != ACPI_TYPE_DEVICE) { in acpi_db_display_resources()
1037 node->name.ascii, in acpi_db_display_resources()
1038 acpi_ut_get_type_name(node->type)); in acpi_db_display_resources()
1040 (void)acpi_db_device_resources(node, 0, NULL, in acpi_db_display_resources()