aarch64_exec_command_handlers is only used within OpenOCD.
 
Symbols
loading...
Files
loading...
CodeScopeDevelopment ToolsOpenOCDaarch64_exec_command_handlers

aarch64_exec_command_handlers variable

Syntax

static const struct command_registration aarch64_exec_command_handlers[] = { { .name = "cache_info", .handler = aarch64_handle_cache_info_command, .mode = COMMAND_EXEC, .help = "display information about target caches", .usage = "", }, { .name = "dbginit", .handler = aarch64_handle_dbginit_command, .mode = COMMAND_EXEC, .help = "Initialize core debug", .usage = "", }, { .name = "disassemble", .handler = aarch64_handle_disassemble_command, .mode = COMMAND_EXEC, .help = "Disassemble instructions", .usage = "address [count]", }, { .name = "maskisr", .handler = aarch64_mask_interrupts_command, .mode = COMMAND_ANY, .help = "mask aarch64 interrupts during single-step", .usage = "['on'|'off']", }, { .name = "mcr", .mode = COMMAND_EXEC, .handler = aarch64_mcrmrc_command, .help = "write coprocessor register", .usage = "cpnum op1 CRn CRm op2 value", }, { .name = "mrc", .mode = COMMAND_EXEC, .handler = aarch64_mcrmrc_command, .help = "read coprocessor register", .usage = "cpnum op1 CRn CRm op2", }, { .chain = smp_command_handlers, }, COMMAND_REGISTRATION_DONE };

References

LocationText
aarch64.c:3166
static const struct command_registration aarch64_exec_command_handlers[] = {
aarch64.c:3233
.chain = aarch64_exec_command_handlers,

Type Use

Type of aarch64_exec_command_handlers
aarch64_exec_command_handlers
all items filtered out