Lines Matching defs:node
50 struct acpi_namespace_node *node = NULL;
61 /* Convert a parent handle to a prefix node */
98 acpi_ns_get_node(prefix_node, pathname, ACPI_NS_NO_UPSEARCH, &node);
100 *ret_handle = ACPI_CAST_PTR(acpi_handle, node);
207 * namespace node and possibly by running several standard
229 struct acpi_namespace_node *node;
255 node = acpi_ns_validate_handle(handle);
256 if (!node) {
261 /* Get the namespace node data while the namespace is locked */
264 type = node->type;
265 name = node->name.integer;
267 if (node->type == ACPI_TYPE_METHOD) {
268 param_count = node->object->method.param_count;
288 status = acpi_ut_execute_HID(node, &hid);
296 status = acpi_ut_execute_UID(node, &uid);
304 status = acpi_ut_execute_CID(node, &cid_list);
317 status = acpi_ut_execute_CLS(node, &cls);
348 status = acpi_ut_evaluate_numeric_object(METHOD_NAME__ADR, node,
356 status = acpi_ut_execute_power_methods(node,
366 status = acpi_ut_execute_power_methods(node,
482 struct acpi_namespace_node *node;
523 * node from the namespace if we cannot allocate memory.
536 /* Lock namespace for acpi_ns_lookup, we may be creating a new node */
543 /* The lookup either returns an existing node or creates a new one */
548 NULL, &node);
557 /* Node existed previously, make sure it is a method node */
559 if (node->type != ACPI_TYPE_METHOD) {
588 status = acpi_ns_attach_object(node, method_obj, ACPI_TYPE_METHOD);
594 node->flags |= ANOBJ_ALLOCATED_BUFFER;