Function uacpi_object_resolve_as_aml_namepath

uacpi_status uacpi_object_resolve_as_aml_namepath(uacpi_object*, uacpi_namespace_node* scope, uacpi_namespace_node** out_node)

Description

Resolve an AML namepath contained in a string object.

This is only applicable to objects that are package elements. See an explanation of how this works in the comment above the declaration of uacpi_object_is_aml_namepath. This is a shorthand for: uacpi_data_view view; uacpi_object_get_string(object, &view); target_node = uacpi_namespace_node_resolve_from_aml_namepath( scope, view.text );