Home | History | Annotate | Download | only in x509

Lines Matching defs:inh_flags

138      * param->inh_flags = X509_VP_FLAG_DEFAULT;
140 param->inh_flags = 0;
208 * The "inh_flags" field determines how this function behaves.
225 * If X509_VP_FLAG_ONCE is set then the current inh_flags setting is zeroed
249 unsigned long inh_flags;
255 inh_flags = dest->inh_flags | src->inh_flags;
257 if (inh_flags & X509_VP_FLAG_ONCE)
258 dest->inh_flags = 0;
260 if (inh_flags & X509_VP_FLAG_LOCKED)
263 if (inh_flags & X509_VP_FLAG_DEFAULT)
268 if (inh_flags & X509_VP_FLAG_OVERWRITE)
285 if (inh_flags & X509_VP_FLAG_RESET_FLAGS)
326 unsigned long save_flags = to->inh_flags;
328 to->inh_flags |= X509_VP_FLAG_DEFAULT;
330 to->inh_flags = save_flags;