Lines Matching defs:node

83 	struct acpi_namespace_node *node = NULL;
94 /* Convert a parent handle to a prefix node */
131 acpi_ns_get_node(prefix_node, pathname, ACPI_NS_NO_UPSEARCH, &node);
133 *ret_handle = ACPI_CAST_PTR(acpi_handle, node);
160 struct acpi_namespace_node *node;
190 node = acpi_ns_validate_handle(handle);
191 if (!node) {
205 ACPI_STRNCPY(buffer->pointer, acpi_ut_get_node_name(node),
256 * namespace node and possibly by running several standard
270 struct acpi_namespace_node *node;
295 node = acpi_ns_validate_handle(handle);
296 if (!node) {
301 /* Get the namespace node data while the namespace is locked */
304 type = node->type;
305 name = node->name.integer;
307 if (node->type == ACPI_TYPE_METHOD) {
308 param_count = node->object->method.param_count;
328 status = acpi_ut_execute_HID(node, &hid);
336 status = acpi_ut_execute_UID(node, &uid);
344 status = acpi_ut_execute_CID(node, &cid_list);
380 status = acpi_ut_execute_STA(node, &info->current_status);
387 status = acpi_ut_evaluate_numeric_object(METHOD_NAME__ADR, node,
395 status = acpi_ut_execute_power_methods(node,
405 status = acpi_ut_execute_power_methods(node,
513 struct acpi_namespace_node *node;
553 * node from the namespace if we cannot allocate memory.
566 /* Lock namespace for acpi_ns_lookup, we may be creating a new node */
573 /* The lookup either returns an existing node or creates a new one */
578 NULL, &node);
587 /* Node existed previously, make sure it is a method node */
589 if (node->type != ACPI_TYPE_METHOD) {
618 status = acpi_ns_attach_object(node, method_obj, ACPI_TYPE_METHOD);
624 node->flags |= ANOBJ_ALLOCATED_BUFFER;