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

1 2 3 4

  /external/chromium_org/third_party/openssl/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));
  /external/chromium_org/third_party/openssl/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/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));
  /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/chromium_org/third_party/openssl/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/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/wpa_supplicant_8/src/ap/
authsrv.c 91 struct hostapd_bss_config *conf = hapd->conf; local
93 srv.client_file = conf->radius_server_clients;
94 srv.auth_port = conf->radius_server_auth_port;
99 srv.pac_opaque_encr_key = conf->pac_opaque_encr_key;
100 srv.eap_fast_a_id = conf->eap_fast_a_id;
101 srv.eap_fast_a_id_len = conf->eap_fast_a_id_len;
102 srv.eap_fast_a_id_info = conf->eap_fast_a_id_info;
103 srv.eap_fast_prov = conf->eap_fast_prov;
104 srv.pac_key_lifetime = conf->pac_key_lifetime
    [all...]
eap_user_db.c 168 if (sqlite3_open(hapd->conf->eap_user_sqlite, &db)) {
170 hapd->conf->eap_user_sqlite, sqlite3_errmsg(db));
215 const struct hostapd_bss_config *conf = hapd->conf; local
216 struct hostapd_eap_user *user = conf->eap_user;
219 if (conf->wps_state && identity_len == WSC_ID_ENROLLEE_LEN &&
228 if (conf->wps_state && identity_len == WSC_ID_REGISTRAR_LEN &&
234 wsc_registrar.password = (u8 *) conf->ap_pin;
235 wsc_registrar.password_len = conf->ap_pin ?
236 os_strlen(conf->ap_pin) : 0
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
RunInLocale.java 38 final Configuration conf = res.getConfiguration(); local
39 final Locale oldLocale = conf.locale;
43 conf.locale = newLocale;
44 res.updateConfiguration(conf, null);
49 conf.locale = oldLocale;
50 res.updateConfiguration(conf, null);
  /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/chromium_org/third_party/openssl/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);
  /external/kernel-headers/original/linux/
textsearch.h 68 * @conf: search configuration
78 struct ts_config *conf,
83 * @conf: search configuration
89 void (*finish)(struct ts_config *conf,
95 * @conf: search configuration
105 static inline unsigned int textsearch_next(struct ts_config *conf,
108 unsigned int ret = conf->ops->find(conf, state);
110 if (conf->finish)
111 conf->finish(conf, state)
165 struct ts_config *conf; local
    [all...]
  /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);
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_yuv.c 79 DFBDisplayLayerConfig conf; local
98 conf.flags = DLCONF_WIDTH | DLCONF_HEIGHT | DLCONF_PIXELFORMAT;
99 conf.width = width;
100 conf.height = height;
105 conf.pixelformat = DSPF_YV12;
108 conf.pixelformat = DSPF_I420;
111 conf.pixelformat = DSPF_YUY2;
114 conf.pixelformat = DSPF_UYVY;
130 ret = layer->SetConfiguration (layer, &conf);
256 DFBDisplayLayerConfig conf; local
    [all...]
  /external/sepolicy/
Android.mk 73 sepolicy_policy.conf := $(intermediates)/policy.conf
74 $(sepolicy_policy.conf): PRIVATE_MLS_SENS := $(MLS_SENS)
75 $(sepolicy_policy.conf): PRIVATE_MLS_CATS := $(MLS_CATS)
76 $(sepolicy_policy.conf) : $(call build_policy, security_classes initial_sids access_vectors global_macros mls_macros mls policy_capabilities te_macros attributes *.te roles users initial_sid_contexts fs_use genfs_contexts port_contexts)
81 $(LOCAL_BUILT_MODULE) : $(sepolicy_policy.conf) $(HOST_OUT_EXECUTABLES)/checkpolicy
87 sepolicy_policy.conf :=
172 # Build keys.conf
174 $(mac_perms_keys.tmp) : $(call build_policy, keys.conf)
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
PhoneTypeChoiceRecognizerEngine.java 59 String conf = mSrec.getResult(result, Recognizer.KEY_CONFIDENCE); local
62 String msg = "conf=" + conf + " lit=" + literal + " sem=" + semantic;
69 String conf = mSrec.getResult(0, Recognizer.KEY_CONFIDENCE); local
72 String msg = "conf=" + conf + " lit=" + literal + " sem=" + semantic;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
LocaleUtils.java 171 final Configuration conf = res.getConfiguration(); local
172 final Locale saveLocale = conf.locale;
173 conf.locale = newLocale;
174 res.updateConfiguration(conf, res.getDisplayMetrics());
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
hybridvideoengine.h 190 VideoEncoderConfig conf = config; local
192 conf.max_codec.name = video1_.codecs()[0].name;
193 if (!video1_.SetDefaultEncoderConfig(conf)) {
199 conf.max_codec.name = video2_.codecs()[0].name;
200 if (!video2_.SetDefaultEncoderConfig(conf)) {
  /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/wpa_supplicant_8/wpa_supplicant/tests/
test_wpa.c 270 struct wpa_auth_config conf; local
275 os_memset(&conf, 0, sizeof(conf));
276 conf.wpa = 2;
277 conf.wpa_key_mgmt = WPA_KEY_MGMT_PSK;
278 conf.wpa_pairwise = WPA_CIPHER_CCMP;
279 conf.rsn_pairwise = WPA_CIPHER_CCMP;
280 conf.wpa_group = WPA_CIPHER_CCMP;
281 conf.eapol_version = 2;
289 wpa->auth_group = wpa_init(wpa->auth_addr, &conf, &cb)
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SendTransaction.java 51 * <li>Retrieves confirmation data from the server (M-Send.conf).
122 SendConf conf = (SendConf) new PduParser(response).parse(); local
123 if (conf == null) {
124 Log.e(TAG, "No M-Send.conf received.");
130 byte[] confId = conf.getTransactionId();
133 + new String(reqId) + ", conf=" + new String(confId));
137 // From now on, we won't save the whole M-Send.conf into
141 int respStatus = conf.getResponseStatus();
151 String messageId = PduPersister.toIsoString(conf.getMessageId());

Completed in 528 milliseconds

1 2 3 4