Lines Matching defs:Node
202 * A pseudo-Namespace Node is assigned to each argument and local
203 * so that RefOf() can return a pointer to the Node.
375 * Node - Where the node is returned.
377 * RETURN: Status and node
379 * DESCRIPTION: Get the Node associated with a local or arg.
388 ACPI_NAMESPACE_NODE **Node)
408 /* Return a pointer to the pseudo-node */
410 *Node = &WalkState->LocalVariables[Index];
423 /* Return a pointer to the pseudo-node */
425 *Node = &WalkState->Arguments[Index];
463 ACPI_NAMESPACE_NODE *Node;
474 /* Get the namespace node for the arg/local */
476 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
492 Node->Object = Object;
522 ACPI_NAMESPACE_NODE *Node;
537 /* Get the namespace node for the arg/local */
539 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
545 /* Get the object from the node */
547 Object = Node->Object;
571 Node->Object = Object;
581 "Uninitialized Arg[%u] at node %p",
582 Index, Node));
634 ACPI_NAMESPACE_NODE *Node;
641 /* Get the namespace node for the arg/local */
643 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
651 Object = AcpiNsGetAttachedObject (Node);
658 Node->Object = NULL;
701 ACPI_NAMESPACE_NODE *Node;
717 /* Get the namespace node for the arg/local */
719 Status = AcpiDsMethodDataGetNode (Type, Index, WalkState, &Node);
725 CurrentObjDesc = AcpiNsGetAttachedObject (Node);
761 * contains an object reference (stored as an Node).
789 "Arg (%p) is an ObjRef(Node), storing in node %p\n",
793 * Store this object to the Node (perform the indirect store)
858 ACPI_NAMESPACE_NODE *Node;
865 /* Get the namespace node for the arg/local */
867 Status = AcpiDsMethodDataGetNode (Opcode, Index, WalkState, &Node);
875 Object = AcpiNsGetAttachedObject (Node);