Lines Matching refs:idx
53 * idx is the index to the BIO_f_filter chain(), where 0 is closest
54 * to the source/sink BIO. If idx isn't given, 0 is assumed
56 { "i", OPT_INDENT, 's', "Indentation in form '[idx:]indent'" },
57 { "p", OPT_PREFIX, 's', "Prefix in form '[idx:]prefix'" },
144 size_t idx, indent;
189 idx = 0;
191 idx = strtoul(arg, &endptr, 10);
209 if (idx >= amount) {
211 progname, idx, amount - 1);
214 if (BIO_set_indent(chain[idx], (long)indent) <= 0) {
227 idx = 0;
229 idx = strtoul(arg, &endptr, 10);
240 if (idx >= amount) {
242 progname, idx, amount - 1);
245 if (BIO_set_prefix(chain[idx], colon) <= 0) {