HomeSort by relevance Sort by last modified time
    Searched refs:cnf (Results 1 - 25 of 41) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Dialog.py 13 def __init__(self, master=None, cnf={}, **kw):
14 cnf = _cnfmerge((cnf, kw))
16 Widget._setup(self, master, cnf)
20 cnf['title'], cnf['text'],
21 cnf['bitmap'], cnf['default'],
22 *cnf['strings']))
Tix.py 108 def tix_configure(self, cnf=None, **kw):
121 cnf = _cnfmerge((cnf, kw))
122 elif cnf:
123 cnf = _cnfmerge(cnf)
124 if cnf is None:
125 cnf = {}
127 cnf[x[0][1:]] = (x[0][1:],) + x[1:]
128 return cnf
    [all...]
Tkinter.py 113 cnf = {}
116 cnf.update(c)
120 cnf[k] = v
121 return cnf
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Dialog.py 13 def __init__(self, master=None, cnf={}, **kw):
14 cnf = _cnfmerge((cnf, kw))
16 Widget._setup(self, master, cnf)
20 cnf['title'], cnf['text'],
21 cnf['bitmap'], cnf['default'],
22 *cnf['strings']))
Tix.py 108 def tix_configure(self, cnf=None, **kw):
121 cnf = _cnfmerge((cnf, kw))
122 elif cnf:
123 cnf = _cnfmerge(cnf)
124 if cnf is None:
125 cnf = {}
127 cnf[x[0][1:]] = (x[0][1:],) + x[1:]
128 return cnf
    [all...]
Tkinter.py 113 cnf = {}
116 cnf.update(c)
120 cnf[k] = v
121 return cnf
    [all...]
  /external/wpa_supplicant_8/hs20/server/ca/
est-csrattrs.sh 3 openssl asn1parse -genconf est-csrattrs.cnf -out est-csrattrs.der -oid hs20.oid
clean.sh 7 rm -f openssl.cnf.tmp
12 rm -f my-openssl.cnf my-openssl-root.cnf
setup.sh 6 export OPENSSL_CONF=$PWD/openssl.cnf
86 cat openssl-root.cnf | sed "s/@PASSWORD@/$PASS/" \
87 > my-openssl-root.cnf
89 cat openssl.cnf | sed "s/@PASSWORD@/$PASS/" |
95 > my-openssl.cnf
98 cat my-openssl-root.cnf | sed "s/#@CN@/commonName_default = $CNR/" > openssl.cnf.tmp
105 $OPENSSL req -config openssl.cnf.tmp -batch -new -newkey rsa:4096 -keyout rootCA/private/cakey.pem -out rootCA/careq.pem || fail "Failed to generate Root CA private key"
107 $OPENSSL ca -config openssl.cnf.tmp -md sha256 -create_serial -out rootCA/cacert.pem -days 10957 -batch -keyfile rootCA/private/cakey.pem -passin pass:$PASS -selfsign -extensions v3_ca -outdir rootCA/newcerts -infiles rootCA/careq.pem || fail "Failed to sign Root CA certificate"
119 cat my-openssl.cnf | sed "s/#@CN@/commonName_default = $COMPANY Hotspot 2.0 Intermediate CA/" > openssl.cnf.tm
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_cpols.c 144 CONF_VALUE *cnf;
159 cnf = sk_CONF_VALUE_value(vals, i);
160 if(cnf->value || !cnf->name ) {
162 X509V3_conf_err(cnf);
165 pstr = cnf->name;
175 X509V3_conf_err(cnf);
182 if(!(pobj = OBJ_txt2obj(cnf->name, 0))) {
184 X509V3_conf_err(cnf);
208 CONF_VALUE *cnf;
    [all...]
v3_akey.c 120 CONF_VALUE *cnf; local
132 cnf = sk_CONF_VALUE_value(values, i);
133 if(!strcmp(cnf->name, "keyid"))
136 if(cnf->value && !strcmp(cnf->value, "always"))
139 else if(!strcmp(cnf->name, "issuer"))
142 if(cnf->value && !strcmp(cnf->value, "always"))
148 ERR_add_error_data(2, "name=", cnf->name);
v3_crld.c 118 CONF_VALUE *cnf)
122 if (!strncmp(cnf->name, "fullname", 9))
124 fnm = gnames_from_sectname(ctx, cnf->value);
128 else if (!strcmp(cnf->name, "relativename"))
136 dnsect = X509V3_get_section(ctx, cnf->value);
274 CONF_VALUE *cnf; local
282 cnf = sk_CONF_VALUE_value(nval, i);
283 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
288 if (!strcmp(cnf->name, "reasons"))
290 if (!set_reasons(&point->reasons, cnf->value)
317 CONF_VALUE *cnf; local
449 CONF_VALUE *cnf; local
    [all...]
v3_pci.c 262 CONF_VALUE *cnf = sk_CONF_VALUE_value(vals, i); local
263 if (!cnf->name || (*cnf->name != '@' && !cnf->value))
266 X509V3_conf_err(cnf);
269 if (*cnf->name == '@')
274 sect = X509V3_get_section(ctx, cnf->name + 1);
278 X509V3_conf_err(cnf);
293 if (!process_pci_value(cnf,
296 X509V3_conf_err(cnf);
    [all...]
v3_info.c 145 CONF_VALUE *cnf, ctmp;
155 cnf = sk_CONF_VALUE_value(nval, i);
161 ptmp = strchr(cnf->name, ';');
166 objlen = ptmp - cnf->name;
168 ctmp.value = cnf->value;
175 strncpy(objtmp, cnf->name, objlen);
v3_alt.c 250 CONF_VALUE *cnf; local
257 cnf = sk_CONF_VALUE_value(nval, i);
258 if(!name_cmp(cnf->name, "issuer") && cnf->value &&
259 !strcmp(cnf->value, "copy")) {
263 if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf)))
316 CONF_VALUE *cnf; local
323 cnf = sk_CONF_VALUE_value(nval, i);
324 if(!name_cmp(cnf->name, "email") && cnf->value &
405 CONF_VALUE *cnf; local
    [all...]
v3_sxnet.c 139 CONF_VALUE *cnf;
143 cnf = sk_CONF_VALUE_value(nval, i);
144 if(!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1))
  /libcore/support/src/test/java/tests/resources/x509/
create.sh 25 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch > /tmp/cert-rsa-req.pem
27 openssl x509 -extfile ${DIR}/default.cnf -days 3650 -extensions usr_cert -req -signkey ${DIR}/privkey.pem -outform d -set_serial -99999999999999999999 < /tmp/cert-rsa-req.pem > ${DIR}/cert-rsa.der
40 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions keyUsage_extraLong_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-keyUsage-extraLong.der
42 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions extendedKeyUsage_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-extendedKeyUsage.der
44 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions ca_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-ca.der
46 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions userWithPathLen_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-userWit (…)
    [all...]
  /external/boringssl/src/crypto/x509/
asn1_gen.c 130 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf);
136 X509V3_CTX cnf; local
141 X509V3_set_nconf(&cnf, nconf);
142 return ASN1_generate_v3(str, &cnf);
145 ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf)
172 if (!cnf)
177 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf);
467 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf)
480 if (!cnf)
482 sect = X509V3_get_section(cnf, (char *)section)
    [all...]
  /external/owasp/sanitizer/tools/
update_tree_in_svn.py 90 def cnf(src, dst): conflict = True function in function:sync
103 (FILE, DIR) : (recurse, remove, svn_delete, copy, svn_add, cnf),
105 (DIR, FILE) : (remove, svn_delete, mkdir, svn_add, recurse, cnf),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
OutputWindow.py 145 for tag, cnf in self.tagdefs.items():
146 if cnf:
147 text.tag_configure(tag, **cnf)
ColorDelegator.py 59 for tag, cnf in self.tagdefs.items():
60 if cnf:
61 self.tag_configure(tag, **cnf)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
OutputWindow.py 145 for tag, cnf in self.tagdefs.items():
146 if cnf:
147 text.tag_configure(tag, **cnf)
ColorDelegator.py 59 for tag, cnf in self.tagdefs.items():
60 if cnf:
61 self.tag_configure(tag, **cnf)
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 234 EGLConfig cnf = getConfig(_env, config); local
237 EGLContext ctx = eglCreateContext(dpy, cnf, shr, base);
250 EGLConfig cnf = getConfig(_env, config); local
252 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base);
277 EGLConfig cnf = getConfig(_env, config); local
300 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
320 EGLContext cnf = getConfig(_env, config); local
334 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
347 EGLContext cnf = getConfig(_env, config); local
362 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base)
375 EGLContext cnf = getConfig(_env, config); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.core_2.2.0.v20100429.jar 

Completed in 1113 milliseconds

1 2