Lines Matching refs:idx
134 * Returns the set of commands with index |idx| previously searched for via
138 const SSL_CONF_CMD *conf_ssl_get(size_t idx, const char **name, size_t *cnt)
140 *name = ssl_names[idx].name;
141 *cnt = ssl_names[idx].cmd_count;
142 return ssl_names[idx].cmds;
147 * index for the command set in |*idx|.
150 int conf_ssl_name_find(const char *name, size_t *idx)
159 *idx = i;
167 * Given a command set |cmd|, return details on the command at index |idx| which
172 void conf_ssl_get_cmd(const SSL_CONF_CMD *cmd, size_t idx, char **cmdstr,
175 *cmdstr = cmd[idx].cmd;
176 *arg = cmd[idx].arg;