Lines Matching full:search
4 * Module Name: nssearch - Namespace search
30 * PARAMETERS: target_name - Ascii ACPI name to search for
31 * parent_node - Starting node where search will begin
37 * DESCRIPTION: Search a single level of the namespace. Performs a
38 * simple search of the specified level, and does not add
39 * entries or search parents.
46 * could be easily modified to support any improved search
47 * algorithm. However, the linear search was chosen for simplicity
53 * the linear search seems to be sufficient, as there would seem to be
54 * little value in improving the search.
86 * Search for name at this namespace level, which is to say that we in acpi_ns_search_one_scope()
87 * must search for the name among the children of this object in acpi_ns_search_one_scope()
127 "Name [%4.4s] (%s) not found in search in scope [%4.4s] " in acpi_ns_search_one_scope()
141 * PARAMETERS: target_name - Ascii ACPI name to search for
142 * node - Starting node where search will begin
154 * name space does not contain the name, the search continues
187 "[%4.4s] type [%s] must be local to this scope (no parent search)\n", in acpi_ns_search_parent_tree()
193 /* Search the parent tree */ in acpi_ns_search_parent_tree()
200 /* Search parents until target is found or we have backed up to the root */ in acpi_ns_search_parent_tree()
204 * Search parent scope. Use TYPE_ANY because we don't care about the in acpi_ns_search_parent_tree()
229 * PARAMETERS: target_name - Ascii ACPI name to search for (4 chars)
231 * node - Starting node where search will begin
233 * Otherwise,search only.
235 * flags - Flags describing the search restrictions
240 * DESCRIPTION: Search for a name segment in a single namespace level,
245 * In ACPI_IMODE_EXECUTE, search only.
246 * In other modes, search and add if not found.
341 * (name entry) of loading the namespace, search the parent tree (all the in acpi_ns_search_and_enter()
343 * search when the namespace is actually being loaded. We want to perform in acpi_ns_search_and_enter()
344 * the search when namespace references are being resolved (load pass 2) in acpi_ns_search_and_enter()
350 * Not found at this level - search parent tree according to the in acpi_ns_search_and_enter()
361 /* In execute mode, just search, never add names. Exit now */ in acpi_ns_search_and_enter()