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()
88 acpi_size acpi_ns_get_pathname_length(struct acpi_namespace_node *node) in acpi_ns_get_pathname_length() argument
94 if (ACPI_GET_DESCRIPTOR_TYPE(node) != ACPI_DESC_TYPE_NAMED) { in acpi_ns_get_pathname_length()
97 node, ACPI_GET_DESCRIPTOR_TYPE(node))); in acpi_ns_get_pathname_length()
101 size = acpi_ns_build_normalized_path(node, NULL, 0, FALSE); in acpi_ns_get_pathname_length()
123 struct acpi_namespace_node *node; in acpi_ns_handle_to_name() local
128 node = acpi_ns_validate_handle(target_handle); in acpi_ns_handle_to_name()
129 if (!node) { in acpi_ns_handle_to_name()
142 node_name = acpi_ut_get_node_name(node); in acpi_ns_handle_to_name()
171 struct acpi_namespace_node *node; in acpi_ns_handle_to_pathname() local
176 node = acpi_ns_validate_handle(target_handle); in acpi_ns_handle_to_pathname()
177 if (!node) { in acpi_ns_handle_to_pathname()
184 acpi_ns_build_normalized_path(node, NULL, 0, no_trailing); in acpi_ns_handle_to_pathname()
198 (void)acpi_ns_build_normalized_path(node, buffer->pointer, in acpi_ns_handle_to_pathname()
229 acpi_ns_build_normalized_path(struct acpi_namespace_node *node, in acpi_ns_build_normalized_path() argument
238 ACPI_FUNCTION_TRACE_PTR(ns_build_normalized_path, node); in acpi_ns_build_normalized_path()
257 if (!node) { in acpi_ns_build_normalized_path()
261 next_node = node; in acpi_ns_build_normalized_path()
263 if (next_node != node) { in acpi_ns_build_normalized_path()
325 char *acpi_ns_get_normalized_pathname(struct acpi_namespace_node *node, in acpi_ns_get_normalized_pathname() argument
331 ACPI_FUNCTION_TRACE_PTR(ns_get_normalized_pathname, node); in acpi_ns_get_normalized_pathname()
335 size = acpi_ns_build_normalized_path(node, NULL, 0, no_trailing); in acpi_ns_get_normalized_pathname()
350 (void)acpi_ns_build_normalized_path(node, name_buffer, size, in acpi_ns_get_normalized_pathname()