Searched defs:conf (Results 1 - 25 of 72) sorted by relevance

123

/external/openssl/crypto/conf/
H A Dtest.c1 /* 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,NUL
[all...]
H A Dcnf_save.c1 /* 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));
H A Dconf_api.c59 /* Part of the code in here was originally in conf.c, which is now removed */
68 #include <openssl/conf.h>
72 static void value_free_hash(CONF_VALUE *a, LHASH *conf);
73 static void value_free_stack(CONF_VALUE *a,LHASH *conf);
84 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section) argument
88 if ((conf == NULL) || (section == NULL)) return(NULL);
91 v=(CONF_VALUE *)lh_retrieve(conf->data,&vv);
96 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
101 v=_CONF_get_section(conf,section);
108 int _CONF_add_string(CONF *conf, CONF_VALU argument
132 _CONF_get_string(const CONF *conf, const char *section, const char *name) argument
185 _CONF_new_data(CONF *conf) argument
199 _CONF_free_data(CONF *conf) argument
216 value_free_hash(CONF_VALUE *a, LHASH *conf) argument
224 value_free_stack(CONF_VALUE *a, LHASH *conf) argument
277 _CONF_new_section(CONF *conf, const char *section) argument
[all...]
H A Dconf_lib.c62 #include <openssl/conf.h>
72 void CONF_set_nconf(CONF *conf, LHASH *hash) argument
77 default_CONF_method->init(conf);
78 conf->data = hash;
90 LHASH *CONF_load(LHASH *conf, const char *file, long *eline) argument
106 ltmp = CONF_load_bio(conf, in, eline);
113 LHASH *CONF_load_fp(LHASH *conf, FILE *fp,long *eline) argument
121 ltmp = CONF_load_bio(conf, btmp, eline);
127 LHASH *CONF_load_bio(LHASH *conf, BIO *bp,long *eline) argument
132 CONF_set_nconf(&ctmp, conf);
154 CONF_get_string(LHASH *conf,const char *group,const char *name) argument
168 CONF_get_number(LHASH *conf,const char *group,const char *name) argument
192 CONF_free(LHASH *conf) argument
200 CONF_dump_fp(LHASH *conf, FILE *out) argument
215 CONF_dump_bio(LHASH *conf, BIO *out) argument
245 NCONF_free(CONF *conf) argument
252 NCONF_free_data(CONF *conf) argument
259 NCONF_load(CONF *conf, const char *file, long *eline) argument
271 NCONF_load_fp(CONF *conf, FILE *fp,long *eline) argument
286 NCONF_load_bio(CONF *conf, BIO *bp,long *eline) argument
314 NCONF_get_string(const CONF *conf,const char *group,const char *name) argument
334 NCONF_get_number_e(const CONF *conf,const char *group,const char *name, long *result) argument
360 NCONF_dump_fp(const CONF *conf, FILE *out) argument
374 NCONF_dump_bio(const CONF *conf, BIO *out) argument
[all...]
H A Dconf_def.c1 /* crypto/conf/conf.c */
59 /* Part of the code in here was originally in conf.c, which is now removed */
66 #include <openssl/conf.h>
72 static char *eat_ws(CONF *conf, char *p);
73 static char *eat_alpha_numeric(CONF *conf, char *p);
74 static void clear_comments(CONF *conf, char *p);
75 static int str_copy(CONF *conf,char *section,char **to, char *from);
76 static char *scan_quote(CONF *conf, char *p);
77 static char *scan_dquote(CONF *conf, cha
142 def_init_default(CONF *conf) argument
154 def_init_WIN32(CONF *conf) argument
166 def_destroy(CONF *conf) argument
176 def_destroy_data(CONF *conf) argument
184 def_load(CONF *conf, const char *name, long *line) argument
209 def_load_bio(CONF *conf, BIO *in, long *line) argument
466 clear_comments(CONF *conf, char *p) argument
514 str_copy(CONF *conf, char *section, char **pto, char *from) argument
660 eat_ws(CONF *conf, char *p) argument
667 eat_alpha_numeric(CONF *conf, char *p) argument
682 scan_quote(CONF *conf, char *p) argument
701 scan_dquote(CONF *conf, char *p) argument
735 def_dump(const CONF *conf, BIO *out) argument
741 def_is_number(const CONF *conf, char c) argument
746 def_to_int(const CONF *conf, char c) argument
[all...]
H A Dconf_mod.c63 #include <openssl/conf.h>
170 CONF *conf = NULL; local
172 conf = NCONF_new(NULL);
173 if (!conf)
185 if (NCONF_load(conf, file, NULL) <= 0)
196 ret = CONF_modules_load(conf, appname, flags);
201 NCONF_free(conf);
/external/openssl/crypto/lhash/
H A Dlh_test.c66 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/
H A Dv3conf.c63 #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)) {
H A Dv3_conf.c65 #include <openssl/conf.h>
71 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value);
78 /* CONF *conf: Config file */
81 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, argument
90 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value);
99 /* CONF *conf: Config file */
101 X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, argument
110 return do_ext_nconf(conf, ctx, ext_nid, crit, value);
113 /* CONF *conf: Config file */
115 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CT argument
324 X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk) argument
345 X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert) argument
356 X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl) argument
367 X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req) argument
439 X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf) argument
457 X509V3_EXT_conf(LHASH *conf, X509V3_CTX *ctx, char *name, char *value) argument
467 X509V3_EXT_conf_nid(LHASH *conf, X509V3_CTX *ctx, int ext_nid, char *value) argument
498 X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509 *cert) argument
508 X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl) argument
518 X509V3_EXT_REQ_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_REQ *req) argument
[all...]
/external/icu4c/i18n/
H A Dcsmatch.cpp27 void CharsetMatch::set(InputText *input, CharsetRecognizer *cr, int32_t conf) argument
31 confidence = conf;
/external/openssl/apps/
H A Dspkac.c66 #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/wpa_supplicant_6/wpa_supplicant/
H A Dscan.c46 static int wpas_wps_in_use(struct wpa_config *conf, argument
52 for (ssid = conf->ssid; ssid; ssid = ssid->next) {
70 int wpa_supplicant_enabled_networks(struct wpa_config *conf) argument
72 struct wpa_ssid *ssid = conf->ssid;
100 if (!wpa_supplicant_enabled_networks(wpa_s->conf) &&
109 if (wpa_s->conf->ap_scan != 0 &&
113 wpa_s->conf->ap_scan = 0;
116 if (wpa_s->conf->ap_scan == 0) {
125 ssid = wpa_s->conf->ssid;
137 (ssid->scan_ssid || wpa_s->conf
[all...]
/external/wpa_supplicant_6/wpa_supplicant/tests/
H A Dlink_test.c73 hostapd_get_eap_user(const struct hostapd_bss_config *conf, const u8 *identity, argument
/external/kernel-headers/original/linux/
H A Dtextsearch.h68 * @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, argument
108 unsigned int ret = conf->ops->find(conf, state);
110 if (conf->finish)
111 conf
124 textsearch_find(struct ts_config *conf, struct ts_state *state) argument
135 textsearch_get_pattern(struct ts_config *conf) argument
144 textsearch_get_pattern_len(struct ts_config *conf) argument
165 struct ts_config *conf; local
175 ts_config_priv(struct ts_config *conf) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/directfb/
H A DSDL_DirectFB_yuv.c79 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/wpa_supplicant_6/wpa_supplicant/src/radius/
H A Dradius_server.h48 radius_server_init(struct radius_server_conf *conf);
60 radius_server_init(struct radius_server_conf *conf) argument
/external/bluetooth/bluez/network/
H A Dmanager.c66 } conf = { variable in typeref:struct:network_conf
80 g_free(conf.iface_prefix);
81 g_free(conf.panu_script);
82 g_free(conf.gn_script);
83 g_free(conf.nap_script);
84 g_free(conf.gn_iface);
85 g_free(conf.nap_iface);
111 conf.connection_enabled = FALSE;
113 conf.server_enabled = FALSE;
118 conf
[all...]
/external/fsck_msdos/
H A Dfat.c455 int conf; local
512 conf = tryclear(boot, fat, head, &fat[p].next);
514 if (conf == FSERROR) {
532 conf |= FSFATMOD;
534 ret |= conf;
/external/ipsec-tools/src/racoon/
H A Disakmp_quick.c1860 struct remoteconf *conf;
1861 conf = getrmconf(iph2->dst);
1862 if (conf != NULL)
1863 remoteid=conf->ph1id;
1859 struct remoteconf *conf; local
H A Dproposal.c1229 struct remoteconf *conf; local
1247 conf = getrmconf(iph2->dst);
1248 if (conf != NULL &&
1249 conf->gen_policy == GENERATE_POLICY_UNIQUE){
/external/wpa_supplicant/
H A Dtls_none.c20 void * tls_init(const struct tls_config *conf) argument
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dtls_none.c20 void * tls_init(const struct tls_config *conf) argument
/external/icu4c/test/cintltst/
H A Ducsdetst.c173 int32_t conf; local
184 conf = ucsdet_getConfidence(match, &status);
190 if (conf != 100) {
191 log_err("Did not get 100%% confidence for UTF-16BE: got %d\n", conf);
204 conf = ucsdet_getConfidence(match, &status);
211 if (conf != 100) {
212 log_err("Did not get 100%% confidence for UTF-16LE: got %d\n", conf);
/external/libpcap/
H A Dpcap-dag.c499 char conf[30]; /* dag configure string */ local
620 snprintf(conf, 30, "varlen slen=%d", (snaplen + 3) & ~3);
622 if(dag_configure(handle->fd, conf) < 0) {
/external/qemu/audio/
H A Desdaudio.c79 } conf = { variable in typeref:struct:__anon3383
203 hw->samples = conf.samples;
211 esd->fd = FF(esd_play_stream) (esdfmt, as->freq, conf.dac_host, NULL);
213 if (conf.dac_host == NULL) {
357 hw->samples = conf.samples;
365 esd->fd = FF(esd_record_stream) (esdfmt, as->freq, conf.adc_host, NULL);
367 if (conf.adc_host == NULL) {
439 fd = FF(esd_open_sound)(conf.dac_host);
453 result = &conf;
476 {"SAMPLES", AUD_OPT_INT, &conf
[all...]

Completed in 283 milliseconds

123