Lines Matching defs:inh_flags
92 /* param->inh_flags = X509_VP_FLAG_DEFAULT; */
121 * The "inh_flags" field determines how this function behaves.
138 * If X509_VP_FLAG_ONCE is set then the current inh_flags setting is zeroed
156 unsigned long inh_flags;
161 inh_flags = dest->inh_flags | src->inh_flags;
163 if ((inh_flags & X509_VP_FLAG_ONCE) != 0)
164 dest->inh_flags = 0;
166 if ((inh_flags & X509_VP_FLAG_LOCKED) != 0)
169 to_default = (inh_flags & X509_VP_FLAG_DEFAULT) != 0;
170 to_overwrite = (inh_flags & X509_VP_FLAG_OVERWRITE) != 0;
185 if ((inh_flags & X509_VP_FLAG_RESET_FLAGS) != 0)
231 save_flags = to->inh_flags;
232 to->inh_flags |= X509_VP_FLAG_DEFAULT;
234 to->inh_flags = save_flags;
292 return param->inh_flags;
297 param->inh_flags = flags;