Lines Matching refs:cmdinfo_t
30 static cmdinfo_t *cmdtab;
35 return strcmp(((const cmdinfo_t *)a)->name, in compare_cmdname()
36 ((const cmdinfo_t *)b)->name); in compare_cmdname()
39 void qemuio_add_command(const cmdinfo_t *ci) in qemuio_add_command()
48 cmdtab = g_renew(cmdinfo_t, cmdtab, ++ncmds); in qemuio_add_command()
53 void qemuio_command_usage(const cmdinfo_t *ci) in qemuio_command_usage()
58 static int init_check_command(BlockBackend *blk, const cmdinfo_t *ct) in init_check_command()
70 static int command(BlockBackend *blk, const cmdinfo_t *ct, int argc, in command()
132 static const cmdinfo_t *find_command(const char *cmd) in find_command()
134 cmdinfo_t *ct; in find_command()
140 return (const cmdinfo_t *)ct; in find_command()
151 cmdinfo_t *ct; in qemuio_complete_command()
697 static const cmdinfo_t read_cmd = {
895 static const cmdinfo_t readv_cmd = {
1036 static const cmdinfo_t write_cmd = {
1250 static const cmdinfo_t writev_cmd = {
1466 static const cmdinfo_t aio_read_cmd = {
1578 static const cmdinfo_t aio_write_cmd = {
1715 static const cmdinfo_t aio_flush_cmd = {
1726 static const cmdinfo_t flush_cmd = {
1781 static const cmdinfo_t zone_report_cmd = {
1814 static const cmdinfo_t zone_open_cmd = {
1847 static const cmdinfo_t zone_close_cmd = {
1880 static const cmdinfo_t zone_finish_cmd = {
1913 static const cmdinfo_t zone_reset_cmd = {
1987 static const cmdinfo_t zone_append_cmd = {
1998 static const cmdinfo_t truncate_cmd = {
2069 static const cmdinfo_t length_cmd = {
2124 static const cmdinfo_t info_cmd = {
2148 static const cmdinfo_t discard_cmd = {
2271 static const cmdinfo_t alloc_cmd = {
2349 static const cmdinfo_t map_cmd = {
2386 static const cmdinfo_t reopen_cmd = {
2535 static const cmdinfo_t break_cmd = {
2545 static const cmdinfo_t remove_break_cmd = {
2567 static const cmdinfo_t resume_cmd = {
2584 static const cmdinfo_t wait_break_cmd = {
2598 static const cmdinfo_t abort_cmd = {
2621 static const cmdinfo_t sigraise_cmd = {
2685 static const cmdinfo_t sleep_cmd = {
2694 static void help_oneline(const char *cmd, const cmdinfo_t *ct) in help_oneline()
2704 static void help_onecmd(const char *cmd, const cmdinfo_t *ct) in help_onecmd()
2714 const cmdinfo_t *ct; in help_all()
2724 const cmdinfo_t *ct; in help_f()
2741 static const cmdinfo_t help_cmd = {
2759 const cmdinfo_t *ct; in qemuio_command()