<dec f='src/src/sys/external/bsd/acpica/dist/include/acnamesp.h' l='509' type='ACPI_STATUS AcpiNsSearchOneScope(UINT32 EntryName, ACPI_NAMESPACE_NODE * Node, ACPI_OBJECT_TYPE Type, ACPI_NAMESPACE_NODE ** RetNode)'/>
<use f='src/src/sys/external/bsd/acpica/dist/events/evregion.c' l='600' u='c' c='AcpiEvExecuteRegMethod'/>
<def f='src/src/sys/external/bsd/acpica/dist/namespace/nssearch.c' l='97' ll='172' type='ACPI_STATUS AcpiNsSearchOneScope(UINT32 TargetName, ACPI_NAMESPACE_NODE * ParentNode, ACPI_OBJECT_TYPE Type, ACPI_NAMESPACE_NODE ** ReturnNode)'/>
<use f='src/src/sys/external/bsd/acpica/dist/namespace/nssearch.c' l='250' u='c' c='AcpiNsSearchParentTree'/>
<use f='src/src/sys/external/bsd/acpica/dist/namespace/nssearch.c' l='334' u='c' c='AcpiNsSearchAndEnter'/>
<doc f='src/src/sys/external/bsd/acpica/dist/namespace/nssearch.c' l='65'>/*******************************************************************************
 *
 * FUNCTION:    AcpiNsSearchOneScope
 *
 * PARAMETERS:  TargetName      - Ascii ACPI name to search for
 *              ParentNode      - Starting node where search will begin
 *              Type            - Object type to match
 *              ReturnNode      - Where the matched Named obj is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Search a single level of the namespace. Performs a
 *              simple search of the specified level, and does not add
 *              entries or search parents.
 *
 *
 *      Named object lists are built (and subsequently dumped) in the
 *      order in which the names are encountered during the namespace load;
 *
 *      All namespace searching is linear in this implementation, but
 *      could be easily modified to support any improved search
 *      algorithm. However, the linear search was chosen for simplicity
 *      and because the trees are small and the other interpreter
 *      execution overhead is relatively high.
 *
 *      Note: CPU execution analysis has shown that the AML interpreter spends
 *      a very small percentage of its time searching the namespace. Therefore,
 *      the linear search seems to be sufficient, as there would seem to be
 *      little value in improving the search.
 *
 ******************************************************************************/</doc>
