| 11781 | } |
| 11782 | |
| 11783 | static int |
| 11784 | parse_qu_mode_name(struct context *ctx, const struct token *token, |
| 11785 | const char *str, unsigned int len, void *buf, |
| 11786 | unsigned int size) |
| 11787 | { |
| 11788 | struct buffer *out = ctx->object; |
| 11789 | |
| 11790 | return parse_name_to_index(ctx, token, str, len, buf, size, |
| 11791 | query_update_mode_names, |
| 11792 | RTE_DIM(query_update_mode_names), |
| 11793 | (uint32_t *)&out->args.ia.qu_mode); |
| 11794 | } |
| 11795 | |
| 11796 | /** No completion. */ |
| 11797 | static int |
nothing calls this directly
no test coverage detected