Lines Matching refs:flags
163 static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl);
164 static int set_multi_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl);
1236 int set_cert_ex(unsigned long *flags, const char *arg)
1259 return set_multi_opts(flags, arg, cert_tbl);
1262 int set_name_ex(unsigned long *flags, const char *arg)
1294 return set_multi_opts(flags, arg, ex_tbl);
1353 static int set_multi_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl)
1362 if (!set_table_opts(flags, val->name, in_tbl))
1369 static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_TBL *in_tbl)
1385 *flags &= ~ptbl->mask;
1386 if(c) *flags |= ptbl->flag;
1387 else *flags &= ~ptbl->flag;
2247 unsigned long flags = 0;
2305 flags |= X509_V_FLAG_IGNORE_CRITICAL;
2307 flags |= X509_V_FLAG_CB_ISSUER_CHECK;
2309 flags |= X509_V_FLAG_CRL_CHECK;
2311 flags |= X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL;
2313 flags |= X509_V_FLAG_POLICY_CHECK;
2315 flags |= X509_V_FLAG_EXPLICIT_POLICY;
2317 flags |= X509_V_FLAG_INHIBIT_ANY;
2319 flags |= X509_V_FLAG_INHIBIT_MAP;
2321 flags |= X509_V_FLAG_X509_STRICT;
2323 flags |= X509_V_FLAG_EXTENDED_CRL_SUPPORT;
2325 flags |= X509_V_FLAG_USE_DELTAS;
2327 flags |= X509_V_FLAG_NOTIFY_POLICY;
2329 flags |= X509_V_FLAG_CHECK_SS_SIGNATURE;
2349 if (flags)
2350 X509_VERIFY_PARAM_set_flags(*pm, flags);