Home | History | Annotate | Download | only in disassembler

Lines Matching defs:Name

3  * Module Name: dmnames - AML disassembler, names, namestrings, pathnames
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
175 * PARAMETERS: Name - 4 character ACPI name
177 * RETURN: Final length of name
179 * DESCRIPTION: Dump an ACPI name, minus any trailing underscores.
185 UINT32 Name)
192 /* Copy name locally in case the original name is not writeable */
194 *ACPI_CAST_PTR (UINT32, &NewName[0]) = Name;
196 /* Ensure that the name is printable, even if we have to fix it */
200 /* Remove all trailing underscores from the name */
215 /* Dump the name, up to the start of the trailing underscores */
311 * PARAMETERS: Name - ACPI Name string to store
321 char *Name)
326 if (!Name)
333 while (ACPI_IS_ROOT_PREFIX (ACPI_GET8 (Name)) ||
334 ACPI_IS_PARENT_PREFIX (ACPI_GET8 (Name)))
338 AcpiOsPrintf ("%1c", ACPI_GET8 (Name));
339 Name++;
342 switch (ACPI_GET8 (Name))
352 Name++;
357 SegCount = (UINT32) ACPI_GET8 (Name + 1);
358 Name += 2;
369 /* Append Name segment */
371 AcpiDmDumpName (*ACPI_CAST_PTR (UINT32, Name));
376 /* Not last name, append dot separator */
381 Name += ACPI_NAMESEG_SIZE;
395 * DESCRIPTION: Walk backwards from current scope and display the name
407 UINT32 Name;
466 /* Below root scope, append scope name */
494 Name = AcpiPsGetName (Search);
495 AcpiDmDumpName ((char *) &Name);
511 * PARAMETERS: Name - 4 character ACPI name
515 * DESCRIPTION: Lookup the name
521 char *Name,
527 if ((!Name) ||
536 " /**** Name not found or not accessible from this scope ****/ ");
539 if ((!Name) ||
545 TargetOp = AcpiPsFind (Op, Name, 0, 0);
549 * Didn't find the name in the parse tree. This may be
552 * the predefined names, just display the name as given
555 " /**** Name not found or not accessible from this scope ****/ ");