target_subcommand_handlers is only used within OpenOCD.
 
Symbols
loading...
Files
loading...
CodeScopeDevelopment ToolsOpenOCDtarget_subcommand_handlers

target_subcommand_handlers variable

Syntax

static const struct command_registration target_subcommand_handlers[] = { { .name = "init", .mode = COMMAND_CONFIG, .handler = handle_target_init_command, .help = "initialize targets", .usage = "", }, { .name = "create", .mode = COMMAND_CONFIG, .jim_handler = jim_target_create, .usage = "name type '-chain-position' name [options ...]", .help = "Creates and selects a new target", }, { .name = "current", .mode = COMMAND_ANY, .handler = handle_target_current, .help = "Returns the currently selected target", .usage = "", }, { .name = "types", .mode = COMMAND_ANY, .handler = handle_target_types, .help = "Returns the available target types as " "a list of strings", .usage = "", }, { .name = "names", .mode = COMMAND_ANY, .handler = handle_target_names, .help = "Returns the names of all targets as a list of strings", .usage = "", }, { .name = "smp", .mode = COMMAND_ANY, .handler = handle_target_smp, .usage = "targetname1 targetname2 ...", .help = "gather several target in a smp list" }, COMMAND_REGISTRATION_DONE };

References

LocationText
target.c:6173
static const struct command_registration target_subcommand_handlers[] = {
target.c:6385
.chain = target_subcommand_handlers,

Type Use

Type of target_subcommand_handlers
target_subcommand_handlers
all items filtered out