| 10898 | TOKEN_STRING_INITIALIZER(struct cmd_cmdfile_result, filename, NULL); |
| 10899 | |
| 10900 | static void |
| 10901 | cmd_load_from_file_parsed( |
| 10902 | void *parsed_result, |
| 10903 | __rte_unused struct cmdline *cl, |
| 10904 | __rte_unused void *data) |
| 10905 | { |
| 10906 | struct cmd_cmdfile_result *res = parsed_result; |
| 10907 | |
| 10908 | cmdline_read_from_file(res->filename); |
| 10909 | } |
| 10910 | |
| 10911 | static cmdline_parse_inst_t cmd_load_from_file = { |
| 10912 | .f = cmd_load_from_file_parsed, |
nothing calls this directly
no test coverage detected