Home | History | Annotate | Download | only in namespace

Lines Matching defs:Name

3  * Module Name: nsaccess - Top-level functions for accessing ACPI namespace
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
190 UINT32 Name;
218 /* Enter the predefined names in the name table */
238 for (InitVal = AcpiGbl_PreDefinedNames; InitVal->Name; InitVal++)
244 if (!strcmp (InitVal->Name, "_OSI") && !AcpiGbl_CreateOsiMethod)
250 * Create, init, and link the new predefined name
255 memcpy(&Name, InitVal->Name, sizeof(Name));
256 NewNode = AcpiNsCreateNode (Name);
279 * Name entered successfully. If entry in PreDefinedNames[] specifies
289 InitVal->Name));
363 if (strcmp (InitVal->Name, "_GL_") == 0)
421 * Type - Type associated with name
422 name if not found
430 * DESCRIPTION: Find or enter the passed name in the name space.
431 * Log an error if name not found in Exec mode.
539 * Name pointer is valid (and must be in internal name format)
544 * optional scope prefix followed by a name segment part.
547 * which case the name is fully qualified), or one or more
548 * Parent Prefixes (in which case the name's scope is relative
558 /* Point to name segment part */
581 /* Name is fully qualified, no search rules apply */
586 * Point past this prefix to the name segment
625 * Determine the number of ACPI name segments in this pathname.
628 * - A Null name segment (0)
629 * - A DualNamePrefix followed by two 4-byte name segments
632 * - A single 4-byte name segment
634 * Examine the name prefix opcode, if any, to determine the number of
641 * Null name after a root or parent prefixes. We already
642 * have the correct target node and there are no name segments.
648 "Prefix-only Pathname (Zero name segments), Flags=%X\n",
658 /* Two segments, point to first name segment */
673 /* Extract segment count, point to first name segment */
686 * Not a Null name, no Dual or Multi prefix, hence there is
687 * only one name segment and Pathname is already pointing to it.
701 * Search namespace for each segment of the name. Loop through and
702 * verify (or add to the namespace) each name segment.
704 * The object type is significant only at the last name
755 /* Extract one ACPI name from the front of the pathname */
759 /* Try to find the single (4 character) ACPI name */
774 /* Name not found in ACPI namespace */
777 "Name [%4.4s] not found in scope [%4.4s] %p\n",
778 (char *) &SimpleName, (char *) &CurrentNode->Name,
793 * If this ACPI name already exists within the namespace as an
878 * If this is the last name segment and we are not looking for a
888 /* Point to next name segment and make this node current */