Lines Matching full:command

1 /* Header file for GDB command decoding library.
23 #include "command.h"
29 cmd_types'' can be moved from "command.h" to "cli-decode.h". */
30 /* Not a set/show command. Note that some commands which begin with
42 /* This structure records one command'd definition. */
46 the first time a deprecated command is used, see the 'flags' field in
55 /* Points to next command in this list. */
58 /* Name of this command. */
61 /* Command class; class values are chosen by application program. */
64 /* Function definition of this command. NULL for command class
70 /* The command's real callback. At present func() bounces through
82 /* Local state (context) for this command. This can be anything. */
85 /* Documentation of this command (or help topic).
93 bit 0: (LSB) CMD_DEPRECATED, when 1 indicated that this command
94 is deprecated. It may be removed from gdb's command set in the
98 this is a deprecated command. The user should only be warned
99 the first time a command is used.
106 memory for replacement is malloc'ed. When a command is
113 /* if this command is deprecated, this is the replacement name */
116 /* If this command represents a show command, then this function
120 /* Hook for another command to be executed before this command. */
123 /* Hook for another command to be executed after this command. */
126 /* Flag that specifies if this command is already running it's hook. */
130 /* Nonzero identifies a prefix command. For them, the address
137 It is used before the word "command" in describing the
152 /* Completion routine for this command. TEXT is the text beyond
153 what was matched for the command itself (leading whitespace is
166 /* Type of "set" or "show" command (or SET_NOT_SET if not "set"
180 /* Pointer to command strings of user-defined commands */
183 /* Pointer to command that is hooked by this one, (by hook_pre)
187 /* Pointer to command that is hooked by this one, (by hook_post)
191 /* Pointer to command that is aliased by this one, so the
192 aliased command can be located in case it has been hooked. */
196 /* API to the manipulation of command lists. */
240 /* Access to the command's local context. */
312 function field NULL, the command is interpreted as a help topic, or