Lines Matching +full:display +full:- +full:depth

3  * Module Name: dbinput - user front-end to the AML debugger
11 * Some or all of this work - Copyright (c) 1999 - 2025, Intel Corp.
25 * make derivatives, distribute, use and display any portion of the Covered
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
108 * any of its subsidiaries will export/re-export any technical data, process,
130 * 3. Neither the names of the above-listed copyright holders nor the names
190 * Top-level debugger commands.
358 * Note: Some commands are not supported by the kernel-level version of
364 {1, " Businfo", "Display system bus info\n"},
368 {1, " Methods", "Display list of loaded control methods\n"},
369 {1, " Fields <AddressSpaceId>", "Display list of loaded field units by space ID\n"},
370 {1, " Namespace [Object] [Depth]", "Display loaded namespace tree/subtree\n"},
372 …{1, " Objects [ObjectType]", "Display summary of all objects or just given type\n"},
373 {1, " Owner <OwnerId> [Depth]", "Display loaded namespace by object owner\n"},
374 {1, " Paths", "Display full pathnames of namespace objects\n"},
378 … {1, " Resources [DeviceName]", "Display Device resources (no arg = all devices)\n"},
381 {1, " Type <Object>", "Display object type\n"},
391 {1, " Debug <Namepath> [Arguments]", "Single-Step a control method\n"},
401 {1, " Allocations", "Display list of current memory allocations\n"},
403 {0, " [Byte|Word|Dword|Qword]", "Display ACPI objects or memory\n"},
406 {1, " History", "Display command history buffer\n"},
409 {1, " Osi [Install|Remove <name>]", "Display or modify global _OSI list\n"},
411 {8, " Stats <SubCommand>", "Display namespace and memory statistics\n"},
412 {1, " Allocations", "Display list of current memory allocations\n"},
417 {1, " Stack", "Display CPU stack usage\n"},
419 {1, " Tables", "Display info about loaded ACPI tables\n"},
437 {0, "\nControl Method Single-Step Execution:","\n"},
438 {1, " Arguments (or Args)", "Display method arguments\n"},
442 {1, " Information", "Display info about the current method\n"},
444 {1, " List [# of Aml Opcodes]", "Display method ASL statements\n"},
445 {1, " Locals", "Display method local variables\n"},
446 {1, " Results", "Display method result stack\n"},
449 {1, " Tree", "Display control method calling tree\n"},
463 {1, " Gpes", "Display info on all GPE devices\n"},
465 {1, " Sleep [SleepState]", "Simulate sleep/wake sequence(s) (0-5)\n"},
476 * PARAMETERS: Command - Command string to match
477 * Help - Help table entry to attempt match
491 char *Invocation = Help->Invocation; in AcpiDbMatchCommandHelp()
522 LineCount = Help->LineCount; in AcpiDbMatchCommandHelp()
525 AcpiOsPrintf ("%-38s : %s", Help->Invocation, Help->Description); in AcpiDbMatchCommandHelp()
527 LineCount--; in AcpiDbMatchCommandHelp()
538 * PARAMETERS: Command - Command string to match
539 * DisplayAll - Display all matching commands, or just
544 * DESCRIPTION: Display help information for a Debugger command.
558 while (Next->Invocation) in AcpiDbDisplayCommandInfo()
575 * PARAMETERS: Command - Optional command string to display help.
581 * DESCRIPTION: Display help for a single debugger command, or all of them.
594 /* No argument to help, display help for all commands */ in AcpiDbDisplayHelp()
598 while (Next->Invocation) in AcpiDbDisplayHelp()
600 AcpiOsPrintf ("%-38s%s", Next->Invocation, Next->Description); in AcpiDbDisplayHelp()
608 /* Display help for all commands that match the substring */ in AcpiDbDisplayHelp()
619 * PARAMETERS: String - Command buffer
620 * Next - Return value, end of next token
635 UINT32 Depth; in AcpiDbGetNextToken() local
713 Depth = 1; in AcpiDbGetNextToken()
739 Depth++; /* A nested package declaration */ in AcpiDbGetNextToken()
743 Depth--; in AcpiDbGetNextToken()
744 if (Depth == 0) /* Found final package closing bracket */ in AcpiDbGetNextToken()
786 * PARAMETERS: InputBuffer - Command line buffer
834 Count--; /* Number of args only */ in AcpiDbGetLine()
845 * PARAMETERS: UserCommand - User command line
847 * RETURN: Index into command array, -1 if not found
885 * PARAMETERS: InputBuffer - Command line buffer
886 * WalkState - Current walk
887 * Op - Current (executing) parse op
966 AcpiUtDumpAllocations ((UINT32) -1, NULL); in AcpiDbCommandDispatch()
1033 ACPI_NUM_PREDEFINED_REGIONS - 1); in AcpiDbCommandDispatch()
1327 * TBD: [Restructure] Need some way to re-initialize without in AcpiDbCommandDispatch()
1328 * re-creating the semaphores! in AcpiDbCommandDispatch()
1405 * PARAMETERS: Context - Not used