Home
last modified time | relevance | path

Searched refs:NextNode (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/uts/intel/io/acpica/namespace/
H A Dnsalloc.c188 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsRemoveNode() local
197 NextNode = ParentNode->Child; in AcpiNsRemoveNode()
201 while (NextNode != Node) in AcpiNsRemoveNode()
203 PrevNode = NextNode; in AcpiNsRemoveNode()
204 NextNode = NextNode->Peer; in AcpiNsRemoveNode()
339 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsDeleteChildren() local
353 NextNode = ParentNode->Child; in AcpiNsDeleteChildren()
354 while (NextNode) in AcpiNsDeleteChildren()
358 if (NextNode->Child) in AcpiNsDeleteChildren()
361 ParentNode, NextNode)); in AcpiNsDeleteChildren()
[all …]
H A Dnswalk.c117 ACPI_NAMESPACE_NODE *NextNode = NULL; in AcpiNsGetNextNodeTyped() local
123 NextNode = AcpiNsGetNextNode (ParentNode, ChildNode); in AcpiNsGetNextNodeTyped()
131 return (NextNode); in AcpiNsGetNextNodeTyped()
136 while (NextNode) in AcpiNsGetNextNodeTyped()
140 if (NextNode->Type == Type) in AcpiNsGetNextNodeTyped()
142 return (NextNode); in AcpiNsGetNextNodeTyped()
147 NextNode = NextNode->Peer; in AcpiNsGetNextNodeTyped()
H A Dnsnames.c211 ACPI_NAMESPACE_NODE *NextNode; in AcpiNsBuildNormalizedPath() local
240 NextNode = Node; in AcpiNsBuildNormalizedPath()
241 while (NextNode && NextNode != AcpiGbl_RootNode) in AcpiNsBuildNormalizedPath()
243 if (NextNode != Node) in AcpiNsBuildNormalizedPath()
248 ACPI_MOVE_32_TO_32 (Name, &NextNode->Name); in AcpiNsBuildNormalizedPath()
263 NextNode = NextNode->Parent; in AcpiNsBuildNormalizedPath()
/titanic_44/usr/src/uts/intel/io/acpica/events/
H A Devregion.c852 ACPI_NAMESPACE_NODE *NextNode; in AcpiEvOrphanEcRegMethod() local
885 NextNode = AcpiNsGetNextNode (EcDeviceNode, NULL); in AcpiEvOrphanEcRegMethod()
886 while (NextNode) in AcpiEvOrphanEcRegMethod()
888 if ((NextNode->Type == ACPI_TYPE_REGION) && in AcpiEvOrphanEcRegMethod()
889 (NextNode->Object) && in AcpiEvOrphanEcRegMethod()
890 (NextNode->Object->Region.SpaceId == ACPI_ADR_SPACE_EC)) in AcpiEvOrphanEcRegMethod()
895 NextNode = AcpiNsGetNextNode (EcDeviceNode, NextNode); in AcpiEvOrphanEcRegMethod()