HomeSort by relevance Sort by last modified time
    Searched defs:conf (Results 1 - 25 of 34) sorted by null

1 2

  /external/openssl/crypto/conf/
test.c 1 /* crypto/conf/test.c */
61 #include <openssl/conf.h>
66 LHASH *conf; local
73 conf=CONF_load(NULL,"ssleay.cnf",&eline);
74 if (conf == NULL)
81 lh_stats(conf,stdout);
82 lh_node_stats(conf,stdout);
83 lh_node_usage_stats(conf,stdout);
85 s=CONF_get_string(conf,NULL,"init2");
88 s=CONF_get_string(conf,NULL,"cipher1")
    [all...]
cnf_save.c 1 /* crypto/conf/cnf_save.c */
60 #include <openssl/conf.h>
67 LHASH *conf; local
70 conf=CONF_load(NULL,"../../apps/openssl.cnf",&l);
71 if (conf == NULL)
77 lh_doall(conf,LHASH_DOALL_FN(print_conf));
conf_mod.c 63 #include <openssl/conf.h>
112 static int module_run(const CONF *cnf, char *name, char *value,
118 const CONF *cnf);
119 static CONF_MODULE *module_load_dso(const CONF *cnf, char *name, char *value,
122 /* Main function: load modules from a CONF structure */
124 int CONF_modules_load(const CONF *cnf, const char *appname,
170 CONF *conf = NULL; local
172 conf = NCONF_new(NULL);
173 if (!conf)
    [all...]
  /external/openssl/crypto/lhash/
lh_test.c 66 LHASH *conf; local
70 conf=lh_new(lh_strhash,strcmp);
81 lh_insert(conf,p);
84 lh_node_stats(conf,stdout);
85 lh_stats(conf,stdout);
86 lh_node_usage_stats(conf,stdout);
  /external/openssl/crypto/x509v3/
v3conf.c 63 #include <openssl/conf.h>
71 LHASH *conf; local
86 conf = CONF_load(NULL, "test.cnf", NULL);
87 if(!conf) {
108 if(!X509V3_EXT_add_conf(conf, NULL, "test_section", cert)) {
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/jsdoc-template/
publish.js 3 publish.conf = { // trailing slash expected for dirs
19 IO.mkPath((publish.conf.outDir+"symbols/src").split("/"));
26 var classTemplate = new JSDOC.JsPlate(publish.conf.templatesDir+"class.tmpl");
27 var classesTemplate = new JSDOC.JsPlate(publish.conf.templatesDir+"allclasses.tmpl");
46 var srcDir = publish.conf.outDir + "symbols/src/";
84 IO.saveFile(publish.conf.outDir+"symbols/", ((JSDOC.opt.u)? Link.filemap[symbol.alias] : symbol.alias) + publish.conf.ext, output);
93 var classesindexTemplate = new JSDOC.JsPlate(publish.conf.templatesDir+"index.tmpl");
98 IO.saveFile(publish.conf.outDir, "index"+publish.conf.ext, classesIndex)
    [all...]
  /external/chromium_org/third_party/libxml/src/
check-xinclude-test-suite.py 13 CONF="testdescr.xml"
188 conf = libxml2.parseFile(CONF) variable
189 if conf == None:
190 print "Unable to load %s" % CONF
193 testsuite = conf.getRootElement()
217 conf.freeDoc()
check-xml-test-suite.py 17 CONF="xml-test-suite/xmlconf/xmlconf.xml"
376 conf = loadNoentDoc(CONF) variable
377 if conf == None:
378 print "Unable to load %s" % CONF
381 testsuite = conf.getRootElement()
405 conf.freeDoc()
  /external/openssl/apps/
spkac.c 66 #include <openssl/conf.h>
93 CONF *conf = NULL; local
242 conf = NCONF_new(NULL);
243 i = NCONF_load_bio(conf, in, NULL);
251 spkstr = NCONF_get_string(conf, spksect, spkac);
300 NCONF_free(conf);
srp.c 64 #include <openssl/conf.h>
111 static CONF *conf=NULL; variable
311 conf = NULL;
461 conf = NCONF_new(NULL);
462 if (NCONF_load(conf,configfile,&errorline) <= 0)
478 if (!load_config(bio_err, conf))
486 section=NCONF_get_string(conf,BASE_SECTION,ENV_DEFAULT_SRP);
494 if (randfile == NULL && conf)
495 randfile = NCONF_get_string(conf, BASE_SECTION, "RANDFILE")
    [all...]
  /external/fsck_msdos/
fat.c 455 int conf; local
521 conf = tryclear(boot, fat, head, &fat[p].next);
523 if (conf == FSERROR) {
541 conf |= FSFATMOD;
543 ret |= conf;
  /external/chromium_org/third_party/boringssl/src/crypto/conf/
conf.c 57 #include <openssl/conf.h>
93 CONF *NCONF_new(void) {
94 CONF *conf; local
96 conf = OPENSSL_malloc(sizeof(CONF));
97 if (conf == NULL) {
101 conf->data = lh_CONF_VALUE_new(conf_value_hash, conf_value_cmp);
102 if (conf->data == NULL) {
103 OPENSSL_free(conf);
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
ucsdetst.c 175 int32_t conf; local
186 conf = ucsdet_getConfidence(match, &status);
192 if (conf != 100) {
193 log_err("Did not get 100%% confidence for UTF-16BE: got %d\n", conf);
206 conf = ucsdet_getConfidence(match, &status);
213 if (conf != 100) {
214 log_err("Did not get 100%% confidence for UTF-16LE: got %d\n", conf);
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglconfig.c 57 _eglInitConfig(_EGLConfig *conf, _EGLDisplay *dpy, EGLint id)
59 memset(conf, 0, sizeof(*conf));
61 conf->Display = dpy;
64 conf->ConfigID = id;
65 conf->ConfigCaveat = EGL_NONE;
66 conf->TransparentType = EGL_NONE;
67 conf->NativeVisualType = EGL_NONE;
68 conf->ColorBufferType = EGL_RGB_BUFFER;
79 _eglLinkConfig(_EGLConfig *conf)
105 _EGLConfig *conf; local
821 _EGLConfig *conf = (_EGLConfig *) elem; local
    [all...]
eglapi.c 150 #define _EGL_CHECK_CONFIG(disp, conf, ret, drv) \
151 _EGL_CHECK_OBJECT(disp, Config, conf, ret, drv)
207 _eglCheckConfig(_EGLDisplay *disp, _EGLConfig *conf, const char *msg)
212 if (!conf) {
404 _EGLConfig *conf = _eglLookupConfig(config, disp); local
408 _EGL_CHECK_CONFIG(disp, conf, EGL_FALSE, drv);
409 ret = drv->API.GetConfigAttrib(drv, disp, conf, attribute, value);
420 _EGLConfig *conf = _eglLookupConfig(config, disp); local
437 context = drv->API.CreateContext(drv, disp, conf, share, attrib_list);
525 _EGLConfig *conf = _eglLookupConfig(config, disp) local
546 _EGLConfig *conf = _eglLookupConfig(config, disp); local
567 _EGLConfig *conf = _eglLookupConfig(config, disp); local
1064 _EGLConfig *conf = _eglLookupConfig(config, disp); local
1252 _EGLConfig *conf = _eglLookupConfig(config, disp); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ucsdetst.c 175 int32_t conf; local
186 conf = ucsdet_getConfidence(match, &status);
192 if (conf != 100) {
193 log_err("Did not get 100%% confidence for UTF-16BE: got %d\n", conf);
206 conf = ucsdet_getConfidence(match, &status);
213 if (conf != 100) {
214 log_err("Did not get 100%% confidence for UTF-16LE: got %d\n", conf);
  /external/ipsec-tools/src/racoon/
isakmp_quick.c 1859 struct remoteconf *conf; local
    [all...]
proposal.c 1229 struct remoteconf *conf; local
1247 conf = getrmconf(iph2->dst);
1248 if (conf != NULL &&
1249 conf->gen_policy == GENERATE_POLICY_UNIQUE){
pfkey.c 1861 struct remoteconf *conf; local
    [all...]
  /external/mesa3d/src/egl/main/
eglconfig.c 57 _eglInitConfig(_EGLConfig *conf, _EGLDisplay *dpy, EGLint id)
59 memset(conf, 0, sizeof(*conf));
61 conf->Display = dpy;
64 conf->ConfigID = id;
65 conf->ConfigCaveat = EGL_NONE;
66 conf->TransparentType = EGL_NONE;
67 conf->NativeVisualType = EGL_NONE;
68 conf->ColorBufferType = EGL_RGB_BUFFER;
79 _eglLinkConfig(_EGLConfig *conf)
105 _EGLConfig *conf; local
821 _EGLConfig *conf = (_EGLConfig *) elem; local
    [all...]
eglapi.c 150 #define _EGL_CHECK_CONFIG(disp, conf, ret, drv) \
151 _EGL_CHECK_OBJECT(disp, Config, conf, ret, drv)
207 _eglCheckConfig(_EGLDisplay *disp, _EGLConfig *conf, const char *msg)
212 if (!conf) {
404 _EGLConfig *conf = _eglLookupConfig(config, disp); local
408 _EGL_CHECK_CONFIG(disp, conf, EGL_FALSE, drv);
409 ret = drv->API.GetConfigAttrib(drv, disp, conf, attribute, value);
420 _EGLConfig *conf = _eglLookupConfig(config, disp); local
437 context = drv->API.CreateContext(drv, disp, conf, share, attrib_list);
525 _EGLConfig *conf = _eglLookupConfig(config, disp) local
546 _EGLConfig *conf = _eglLookupConfig(config, disp); local
567 _EGLConfig *conf = _eglLookupConfig(config, disp); local
1064 _EGLConfig *conf = _eglLookupConfig(config, disp); local
1252 _EGLConfig *conf = _eglLookupConfig(config, disp); local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
csdetest.cpp 372 int32_t conf; local
383 conf = ucsdet_getConfidence(match, &status);
390 if (conf != 100) {
391 errln("Did not get 100%% confidence for UTF-16BE: got %d", conf);
404 conf = ucsdet_getConfidence(match, &status);
412 if (conf != 100) {
413 errln("Did not get 100%% confidence for UTF-16LE: got %d", conf);
    [all...]
  /external/icu/icu4c/source/test/intltest/
csdetest.cpp 372 int32_t conf; local
383 conf = ucsdet_getConfidence(match, &status);
390 if (conf != 100) {
391 errln("Did not get 100%% confidence for UTF-16BE: got %d", conf);
404 conf = ucsdet_getConfidence(match, &status);
412 if (conf != 100) {
413 errln("Did not get 100%% confidence for UTF-16LE: got %d", conf);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
egl_dri2.c 101 dri2_match_config(const _EGLConfig *conf, const _EGLConfig *criteria)
103 if (_eglCompareConfigs(conf, criteria, NULL, EGL_FALSE) != 0)
106 if (!_eglMatchConfig(conf, criteria))
117 struct dri2_egl_config *conf; local
229 conf = (struct dri2_egl_config *) matching_config;
231 if (double_buffer && !conf->dri_double_config)
232 conf->dri_double_config = dri_config;
233 else if (!double_buffer && !conf->dri_single_config)
234 conf->dri_single_config = dri_config;
240 conf = malloc(sizeof *conf)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/glx/
egl_glx.c 176 GLX_egl_config_index(_EGLConfig *conf)
178 struct GLX_egl_config *GLX_conf = GLX_egl_config(conf);
436 _EGLConfig *conf = &GLX_conf->Base; local
440 conf->SurfaceType &= ~EGL_WINDOW_BIT;
443 conf->SurfaceType |= EGL_PBUFFER_BIT;
447 if (!(conf->SurfaceType & EGL_WINDOW_BIT)) {
448 conf->NativeVisualID = 0;
449 conf->NativeVisualType = EGL_NONE;
452 if (conf->TransparentType != EGL_TRANSPARENT_RGB) {
454 conf->TransparentRedValue = 0
    [all...]

Completed in 436 milliseconds

1 2