Lines Matching refs:node
66 char *acpi_ns_get_external_pathname(struct acpi_namespace_node *node) in acpi_ns_get_external_pathname() argument
70 ACPI_FUNCTION_TRACE_PTR(ns_get_external_pathname, node); in acpi_ns_get_external_pathname()
72 name_buffer = acpi_ns_get_normalized_pathname(node, FALSE); in acpi_ns_get_external_pathname()
89 acpi_size acpi_ns_get_pathname_length(struct acpi_namespace_node *node) in acpi_ns_get_pathname_length() argument
95 size = acpi_ns_build_normalized_path(node, NULL, 0, FALSE); in acpi_ns_get_pathname_length()
121 struct acpi_namespace_node *node; in acpi_ns_handle_to_pathname() local
126 node = acpi_ns_validate_handle(target_handle); in acpi_ns_handle_to_pathname()
127 if (!node) { in acpi_ns_handle_to_pathname()
134 acpi_ns_build_normalized_path(node, NULL, 0, no_trailing); in acpi_ns_handle_to_pathname()
148 (void)acpi_ns_build_normalized_path(node, buffer->pointer, in acpi_ns_handle_to_pathname()
182 acpi_ns_build_normalized_path(struct acpi_namespace_node *node, in acpi_ns_build_normalized_path() argument
191 ACPI_FUNCTION_TRACE_PTR(ns_build_normalized_path, node); in acpi_ns_build_normalized_path()
210 if (!node) { in acpi_ns_build_normalized_path()
214 next_node = node; in acpi_ns_build_normalized_path()
216 if (next_node != node) { in acpi_ns_build_normalized_path()
274 char *acpi_ns_get_normalized_pathname(struct acpi_namespace_node *node, in acpi_ns_get_normalized_pathname() argument
280 ACPI_FUNCTION_TRACE_PTR(ns_get_normalized_pathname, node); in acpi_ns_get_normalized_pathname()
284 size = acpi_ns_build_normalized_path(node, NULL, 0, no_trailing); in acpi_ns_get_normalized_pathname()
299 (void)acpi_ns_build_normalized_path(node, name_buffer, size, in acpi_ns_get_normalized_pathname()