/external/openssl/crypto/x509/ |
x509_ext.c | 84 int X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos) 86 return(X509v3_get_ext_by_critical(x->crl->extensions,crit,lastpos)); 99 void *X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx) 101 return X509V3_get_d2i(x->crl->extensions, nid, crit, idx); 104 int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit, 107 return X509V3_add1_i2d(&x->crl->extensions, nid, value, crit, flags); 130 int X509_get_ext_by_critical(X509 *x, int crit, int lastpos) 132 return(X509v3_get_ext_by_critical(x->cert_info->extensions,crit,lastpos)); 150 void *X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx) 152 return X509V3_get_d2i(x->cert_info->extensions, nid, crit, idx) [all...] |
x509_v3.c | 104 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit, 118 if ( ((ex->critical > 0) && crit) || 119 ((ex->critical <= 0) && !crit)) 184 int crit, ASN1_OCTET_STRING *data) 195 ret=X509_EXTENSION_create_by_OBJ(ex,obj,crit,data); 201 ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data) 218 if (!X509_EXTENSION_set_critical(ret,crit)) 240 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) 243 ex->critical=(crit)?0xFF:-1;
|
x509.h | 1135 int crit, int lastpos); variable [all...] |
/external/openssl/crypto/ocsp/ |
ocsp_ext.c | 91 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos) 93 return(X509v3_get_ext_by_critical(x->tbsRequest->requestExtensions,crit,lastpos)); 106 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx) 108 return X509V3_get_d2i(x->tbsRequest->requestExtensions, nid, crit, idx); 111 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit, 114 return X509V3_add1_i2d(&x->tbsRequest->requestExtensions, nid, value, crit, flags); 139 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos) 141 return(X509v3_get_ext_by_critical(x->singleRequestExtensions,crit,lastpos)); 154 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx) 156 return X509V3_get_d2i(x->singleRequestExtensions, nid, crit, idx) [all...] |
ocsp.h | 493 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos); 496 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx); 497 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit, 504 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos); 507 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx); 508 int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit, 515 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos); 518 void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit, int *idx); 519 int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value, int crit, 526 int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit, int lastpos) [all...] |
/external/openssl/crypto/x509v3/ |
v3_lib.c | 179 * The "crit" variable is set to the critical value. 182 * the value of *crit reflects the cause: 188 void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx) 194 if(crit) *crit = -1; 210 if(crit) *crit = -2; 218 if(crit) *crit = X509_EXTENSION_get_critical(found_ex); 224 if(crit) *crit = -1 [all...] |
v3_conf.c | 71 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value); 72 static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, int crit, int type, X509V3_CTX *ctx); 76 int crit, void *ext_struc); 84 int crit; local 87 crit = v3_check_critical(&value); 89 return v3_generic_extension(name, value, crit, ext_type, ctx); 90 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value); 104 int crit; local 106 crit = v3_check_critical(&value); 109 value, crit, ext_type, ctx) [all...] |
pcy_data.c | 85 X509_POLICY_DATA *policy_data_new(POLICYINFO *policy, ASN1_OBJECT *id, int crit) 108 if (crit)
|
pcy_cache.c | 74 CERTIFICATEPOLICIES *policies, int crit) 89 data = policy_data_new(policy, NULL, crit);
|
pcy_int.h | 197 int crit);
|
x509v3.h | 584 void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx); variable 587 X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc); 588 int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, int crit, unsigned long flags); variable
|
/external/openssl/include/openssl/ |
ocsp.h | 493 int OCSP_REQUEST_get_ext_by_critical(OCSP_REQUEST *x, int crit, int lastpos); 496 void *OCSP_REQUEST_get1_ext_d2i(OCSP_REQUEST *x, int nid, int *crit, int *idx); 497 int OCSP_REQUEST_add1_ext_i2d(OCSP_REQUEST *x, int nid, void *value, int crit, 504 int OCSP_ONEREQ_get_ext_by_critical(OCSP_ONEREQ *x, int crit, int lastpos); 507 void *OCSP_ONEREQ_get1_ext_d2i(OCSP_ONEREQ *x, int nid, int *crit, int *idx); 508 int OCSP_ONEREQ_add1_ext_i2d(OCSP_ONEREQ *x, int nid, void *value, int crit, 515 int OCSP_BASICRESP_get_ext_by_critical(OCSP_BASICRESP *x, int crit, int lastpos); 518 void *OCSP_BASICRESP_get1_ext_d2i(OCSP_BASICRESP *x, int nid, int *crit, int *idx); 519 int OCSP_BASICRESP_add1_ext_i2d(OCSP_BASICRESP *x, int nid, void *value, int crit, 526 int OCSP_SINGLERESP_get_ext_by_critical(OCSP_SINGLERESP *x, int crit, int lastpos) [all...] |
x509.h | 1135 int crit, int lastpos); variable [all...] |
x509v3.h | 584 void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx); variable 587 X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc); 588 int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value, int crit, unsigned long flags); variable
|
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/ |
PolicyNodeImpl.java | 243 stringbuffer.append(" CRIT: ");
|
/external/iptables/extensions/ |
libip6t_LOG.c | 62 { .name = "crit", .level = LOG_CRIT },
|
libipt_LOG.c | 62 { .name = "crit", .level = LOG_CRIT },
|
/external/openssl/crypto/bio/ |
bss_log.c | 191 { 5, "CRIT ", LOG_CRIT },
|
/external/dnsmasq/man/fr/ |
dnsmasq.8 | 473 pas ces critères, le CNAME est ignoré. Le CNAME doit être unique, mais [all...] |
/external/webkit/LayoutTests/http/conf/ |
apache2-debian-httpd.conf | 389 # Possible values include: debug, info, notice, warn, error, crit,
|
apache2-httpd.conf | 414 # Possible values include: debug, info, notice, warn, error, crit,
|
cygwin-httpd.conf | 448 # Possible values include: debug, info, notice, warn, error, crit,
|
fedora-httpd.conf | 453 # Possible values include: debug, info, notice, warn, error, crit,
|
/frameworks/base/libs/utils/ |
Threads.cpp | 620 // Reset wasBroadcast. (No crit section needed because nobody
|
/dalvik/vm/ |
CheckJni.c | 198 #define kFlag_CritMask 0x0003 /* bit mask to get "crit" value */ 377 LOGW("JNI WARNING: threadid=%d called too many crit releases\n", [all...] |