Searched refs:conf (Results 1 - 25 of 238) sorted by relevance

12345678910

/external/openssl/crypto/conf/
H A Dconf_api.h63 #include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
82 int _CONF_new_data(CONF *conf);
83 void _CONF_free_data(CONF *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 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_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.h1 /* crypto/conf/conf.h */
93 int (*init)(CONF *conf);
94 int (*destroy)(CONF *conf);
95 int (*destroy_data)(CONF *conf);
96 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
97 int (*dump)(const CONF *conf, BIO *bp);
98 int (*is_number)(const CONF *conf, char c);
99 int (*to_int)(const CONF *conf, char c);
100 int (*load)(CONF *conf, cons
[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));
/external/openssl/include/openssl/
H A Dconf_api.h63 #include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
82 int _CONF_new_data(CONF *conf);
83 void _CONF_free_data(CONF *conf);
H A Dconf.h1 /* crypto/conf/conf.h */
93 int (*init)(CONF *conf);
94 int (*destroy)(CONF *conf);
95 int (*destroy_data)(CONF *conf);
96 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
97 int (*dump)(const CONF *conf, BIO *bp);
98 int (*is_number)(const CONF *conf, char c);
99 int (*to_int)(const CONF *conf, char c);
100 int (*load)(CONF *conf, cons
[all...]
/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/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/dbus/test/data/equiv-config-files/basic/
H A Dbasic-2.conf4 <include>basic-1.conf</include>
/external/dbus/test/data/equiv-config-files/entities/
H A Dentities-2.conf4 <include>entities-1.conf</include>
/external/dbus/test/data/invalid-config-files/
H A Dcircular-1.conf3 <include>circular-1.conf</include>
H A Dcircular-2.conf3 <include>circular-3.conf</include>
H A Dcircular-3.conf3 <include>circular-2.conf</include>
/external/openssl/crypto/evp/
H A Devp_acnf.c61 #include <openssl/conf.h>
/external/webkit/WebKitTools/wx/build/
H A Dsettings.py196 def common_configure(conf):
201 conf.env['MSVC_VERSIONS'] = ['msvc 9.0', 'msvc 8.0']
202 conf.env['MSVC_TARGETS'] = ['x86']
214 conf.env['CC'] = 'gcc-4.0'
216 conf.env['CXX'] = 'g++-4.0'
217 conf.check_tool('compiler_cxx')
218 conf.check_tool('compiler_cc')
220 conf.check_tool('python')
221 conf.check_python_headers()
224 conf
[all...]
/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/dhcpcd/dhcpcd-hooks/
H A D20-resolv.conf1 # Generate /etc/resolv.conf
3 # We can merge other dhcpcd resolv.conf files into one like resolvconf,
9 resolv_conf_dir="${state_dir}/resolv.conf"
13 local cf="/etc/resolv.conf.${interface}"
19 # Build the resolv.conf
40 # Assemble resolv.conf using our head and tail files
43 if [ -f /etc/resolv.conf.head ]; then
44 cat /etc/resolv.conf.head >> "${cf}"
46 echo "# /etc/resolv.conf.head can replace this line" >> "${cf}"
49 if [ -f /etc/resolv.conf
[all...]
H A D50-yp.conf12 local cf=/etc/yp.conf."${interface}" prefix= x= pid=
28 save_conf /etc/yp.conf
29 mv -f "${cf}" /etc/yp.conf
39 restore_conf /etc/yp.conf || return 0
/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/wpa_supplicant/
H A Dradius_client.c67 struct hostapd_radius_servers *conf; member in struct:radius_client_data
166 struct hostapd_radius_servers *conf = radius->conf; local
173 conf->acct_server->requests++;
175 conf->acct_server->timeouts++;
176 conf->acct_server->retransmissions++;
181 conf->auth_server->requests++;
183 conf->auth_server->timeouts++;
184 conf->auth_server->retransmissions++;
215 struct hostapd_radius_servers *conf local
443 struct hostapd_radius_servers *conf = radius->conf; local
504 struct hostapd_radius_servers *conf = radius->conf; local
836 struct hostapd_radius_servers *conf = radius->conf; local
866 struct hostapd_radius_servers *conf = radius->conf; local
916 struct hostapd_radius_servers *conf = radius->conf; local
965 radius_client_init(void *ctx, struct hostapd_radius_servers *conf) argument
1148 struct hostapd_radius_servers *conf = radius->conf; local
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/radius/
H A Dradius_client.c68 struct hostapd_radius_servers *conf; member in struct:radius_client_data
167 struct hostapd_radius_servers *conf = radius->conf; local
174 conf->acct_server->requests++;
176 conf->acct_server->timeouts++;
177 conf->acct_server->retransmissions++;
182 conf->auth_server->requests++;
184 conf->auth_server->timeouts++;
185 conf->auth_server->retransmissions++;
216 struct hostapd_radius_servers *conf local
444 struct hostapd_radius_servers *conf = radius->conf; local
505 struct hostapd_radius_servers *conf = radius->conf; local
751 struct hostapd_radius_servers *conf = radius->conf; local
892 struct hostapd_radius_servers *conf = radius->conf; local
938 struct hostapd_radius_servers *conf = radius->conf; local
990 struct hostapd_radius_servers *conf = radius->conf; local
1041 radius_client_init(void *ctx, struct hostapd_radius_servers *conf) argument
1230 struct hostapd_radius_servers *conf = radius->conf; local
[all...]

Completed in 171 milliseconds

12345678910