Verify whether a given SO file looks like a valid remap plugin. * * @param[in] args The arguments passed to the -C command option. This includes * verify_global_plugin. * * @return a CMD status code. See the CMD_ defines above in this file. */
| 1132 | * @return a CMD status code. See the CMD_ defines above in this file. |
| 1133 | */ |
| 1134 | int |
| 1135 | cmd_verify_remap_plugin(char *args) |
| 1136 | { |
| 1137 | return verify_plugin_helper(args, plugin_type_t::REMAP); |
| 1138 | } |
| 1139 | |
| 1140 | int cmd_help(char *cmd); |
| 1141 |
nothing calls this directly
no test coverage detected