HomeSort by: relevance | last modified time | path
    Searched refs:crit (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/crypto/external/bsd/openssl/dist/crypto/x509/
x509_ext.c 35 int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos)
37 return X509v3_get_ext_by_critical(x->crl.extensions, crit, lastpos);
50 void *X509_CRL_get_ext_d2i(const X509_CRL *x, int nid, int *crit, int *idx)
52 return X509V3_get_d2i(x->crl.extensions, nid, crit, idx);
55 int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
58 return X509V3_add1_i2d(&x->crl.extensions, nid, value, crit, flags);
81 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos)
84 (x->cert_info.extensions, crit, lastpos));
102 void *X509_get_ext_d2i(const X509 *x, int nid, int *crit, int *idx)
104 return X509V3_get_d2i(x->cert_info.extensions, nid, crit, idx)
    [all...]
v3_lib.c 153 * The "crit" variable is set to the critical value.
156 * the value of *crit reflects the cause:
162 void *X509V3_get_d2i(const STACK_OF(X509_EXTENSION) *x, int nid, int *crit,
171 if (crit)
172 *crit = -1;
190 if (crit)
191 *crit = -2;
199 if (crit)
200 *crit = X509_EXTENSION_get_critical(found_ex);
207 if (crit)
    [all...]
x509_v3.c 61 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit,
75 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit))
140 int crit,
151 ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data);
158 const ASN1_OBJECT *obj, int crit,
173 if (!X509_EXTENSION_set_critical(ret, crit))
196 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit)
200 ex->critical = (crit) ? 0xFF : -1;
pcy_data.c 39 const ASN1_OBJECT *cid, int crit)
66 if (crit)
v3_conf.c 23 int crit, const char *value);
25 int crit, int type,
30 int ext_nid, int crit, void *ext_struc);
38 int crit; local
42 crit = v3_check_critical(&value);
44 return v3_generic_extension(name, value, crit, ext_type, ctx);
45 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
67 int crit; local
70 crit = v3_check_critical(&value);
73 value, crit, ext_type, ctx)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509/
x509_ext.c 35 int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos)
37 return X509v3_get_ext_by_critical(x->crl.extensions, crit, lastpos);
50 void *X509_CRL_get_ext_d2i(const X509_CRL *x, int nid, int *crit, int *idx)
52 return X509V3_get_d2i(x->crl.extensions, nid, crit, idx);
55 int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
58 return X509V3_add1_i2d(&x->crl.extensions, nid, value, crit, flags);
81 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos)
84 (x->cert_info.extensions, crit, lastpos));
102 void *X509_get_ext_d2i(const X509 *x, int nid, int *crit, int *idx)
104 return X509V3_get_d2i(x->cert_info.extensions, nid, crit, idx)
    [all...]
x509_v3.c 58 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit,
72 if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit))
137 int crit,
148 ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data);
155 const ASN1_OBJECT *obj, int crit,
171 if (!X509_EXTENSION_set_critical(ret, crit))
194 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit)
198 ex->critical = (crit) ? 0xFF : -1;
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
x509_ext.c 35 int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit, int lastpos)
37 return X509v3_get_ext_by_critical(x->crl.extensions, crit, lastpos);
62 void *X509_CRL_get_ext_d2i(const X509_CRL *x, int nid, int *crit, int *idx)
64 return X509V3_get_d2i(x->crl.extensions, nid, crit, idx);
67 int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
70 return X509V3_add1_i2d(&x->crl.extensions, nid, value, crit, flags);
93 int X509_get_ext_by_critical(const X509 *x, int crit, int lastpos)
95 return (X509v3_get_ext_by_critical(x->cert_info.extensions, crit, lastpos));
113 void *X509_get_ext_d2i(const X509 *x, int nid, int *crit, int *idx)
115 return X509V3_get_d2i(x->cert_info.extensions, nid, crit, idx)
    [all...]
v3_lib.c 158 * The "crit" variable is set to the critical value.
161 * the value of *crit reflects the cause:
167 void *X509V3_get_d2i(const STACK_OF(X509_EXTENSION) *x, int nid, int *crit,
176 if (crit)
177 *crit = -1;
195 if (crit)
196 *crit = -2;
204 if (crit)
205 *crit = X509_EXTENSION_get_critical(found_ex);
212 if (crit)
    [all...]
x509_v3.c 61 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit,
76 crit = crit != 0;
77 if (c == crit)
176 int crit,
187 ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data);
194 const ASN1_OBJECT *obj, int crit,
209 if (!X509_EXTENSION_set_critical(ret, crit))
232 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit)
236 ex->critical = (crit) ? 0xFF : 0
    [all...]
pcy_data.c 39 const ASN1_OBJECT *cid, int crit)
65 if (crit)
v3_conf.c 23 int crit, const char *value);
25 int crit, int type,
30 int ext_nid, int crit, void *ext_struc);
38 int crit; local
42 crit = v3_check_critical(&value);
44 return v3_generic_extension(name, value, crit, ext_type, ctx);
45 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
67 int crit; local
70 crit = v3_check_critical(&value);
73 value, crit, ext_type, ctx)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ocsp/
ocsp_ext.c 39 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos)
41 return (X509v3_get_ext_by_critical(x->tbsRequest.requestExtensions, crit, lastpos));
54 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx)
56 return X509V3_get_d2i(x->tbsRequest.requestExtensions, nid, crit, idx);
59 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit,
63 crit, flags);
89 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos)
91 return (X509v3_get_ext_by_critical(x->singleRequestExtensions, crit, lastpos));
104 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx)
106 return X509V3_get_d2i(x->singleRequestExtensions, nid, crit, idx)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ocsp/
ocsp_ext.c 41 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos)
44 (x->tbsRequest.requestExtensions, crit, lastpos));
57 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx)
59 return X509V3_get_d2i(x->tbsRequest.requestExtensions, nid, crit, idx);
62 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit,
66 crit, flags);
93 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos)
96 (x->singleRequestExtensions, crit, lastpos));
109 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx)
111 return X509V3_get_d2i(x->singleRequestExtensions, nid, crit, idx)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/ocsp/
ocsp_ext.c 41 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos)
44 (x->tbsRequest.requestExtensions, crit, lastpos));
57 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx)
59 return X509V3_get_d2i(x->tbsRequest.requestExtensions, nid, crit, idx);
62 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit,
66 crit, flags);
93 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos)
96 (x->singleRequestExtensions, crit, lastpos));
109 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx)
111 return X509V3_get_d2i(x->singleRequestExtensions, nid, crit, idx)
    [all...]
  /src/usr.sbin/bootp/bootpd/
syslog.conf 16 kern.debug;user,mail.crit;auth.notice /dev/console
19 #*.err;kern.debug;daemon,auth.notice;mail.crit;user.none /var/adm/messages
20 kern.debug;user,mail.crit;auth.notice /var/adm/messages
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_lib.c 153 * The "crit" variable is set to the critical value.
156 * the value of *crit reflects the cause:
162 void *X509V3_get_d2i(const STACK_OF(X509_EXTENSION) *x, int nid, int *crit,
171 if (crit)
172 *crit = -1;
190 if (crit)
191 *crit = -2;
199 if (crit)
200 *crit = X509_EXTENSION_get_critical(found_ex);
207 if (crit)
    [all...]
pcy_data.c 39 const ASN1_OBJECT *cid, int crit)
66 if (crit)
v3_conf.c 23 int crit, const char *value);
25 int crit, int type,
30 int ext_nid, int crit, void *ext_struc);
39 int crit; local
42 crit = v3_check_critical(&value);
44 return v3_generic_extension(name, value, crit, ext_type, ctx);
45 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
58 int crit; local
60 crit = v3_check_critical(&value);
63 value, crit, ext_type, ctx)
    [all...]
  /src/etc/
syslog.conf 3 *.err;kern.*;auth.notice;authpriv.none;mail.crit /dev/console
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
ocsp.h 272 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos);
275 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit,
277 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit,
284 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos);
287 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx);
288 int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit,
296 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit,
300 void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit,
303 int crit, unsigned long flags);
310 int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit,
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/ts/
ts_req_utils.c 160 int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos)
162 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos);
180 void *TS_REQ_get_ext_d2i(TS_REQ *a, int nid, int *crit, int *idx)
182 return X509V3_get_d2i(a->extensions, nid, crit, idx);
  /src/crypto/external/bsd/openssl/dist/crypto/ts/
ts_req_utils.c 160 int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos)
162 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos);
180 void *TS_REQ_get_ext_d2i(TS_REQ *a, int nid, int *crit, int *idx)
182 return X509V3_get_d2i(a->extensions, nid, crit, idx);
  /src/crypto/external/bsd/openssl.old/dist/crypto/ts/
ts_req_utils.c 160 int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos)
162 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos);
180 void *TS_REQ_get_ext_d2i(TS_REQ *a, int nid, int *crit, int *idx)
182 return X509V3_get_d2i(a->extensions, nid, crit, idx);
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/allwinner/
sun5i-a13.dtsi 72 cpu_crit: cpu-crit {

Completed in 42 milliseconds

1 2 3 4