Searched refs:CONF (Results 1 - 22 of 22) sorted by relevance

/external/boringssl/include/openssl/
H A Dconf.h80 * Config files are representated by a |CONF|. */
93 /* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method|
95 CONF *NCONF_new(void *method);
98 void NCONF_free(CONF *conf);
104 int NCONF_load(CONF *conf, const char *filename, long *out_error_line);
108 int NCONF_load_bio(CONF *conf, BIO *bio, long *out_error_line);
113 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
118 const char *NCONF_get_string(const CONF *conf, const char *section,
H A Dx509v3.h603 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
604 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
605 OPENSSL_EXPORT int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
606 OPENSSL_EXPORT int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert);
607 OPENSSL_EXPORT int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
608 OPENSSL_EXPORT int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
617 OPENSSL_EXPORT void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf);
H A Dbase.h203 typedef struct conf_st CONF; typedef in typeref:struct:conf_st
H A Dasn1.h1015 OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
/external/boringssl/src/include/openssl/
H A Dconf.h80 * Config files are representated by a |CONF|. */
93 /* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method|
95 CONF *NCONF_new(void *method);
98 void NCONF_free(CONF *conf);
104 int NCONF_load(CONF *conf, const char *filename, long *out_error_line);
108 int NCONF_load_bio(CONF *conf, BIO *bio, long *out_error_line);
113 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
118 const char *NCONF_get_string(const CONF *conf, const char *section,
H A Dx509v3.h603 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
604 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
605 OPENSSL_EXPORT int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
606 OPENSSL_EXPORT int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert);
607 OPENSSL_EXPORT int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
608 OPENSSL_EXPORT int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
617 OPENSSL_EXPORT void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf);
H A Dbase.h203 typedef struct conf_st CONF; typedef in typeref:struct:conf_st
H A Dasn1.h1015 OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
/external/dhcpcd-6.8.2/
H A Dgenembedh7 CONF=${1:-dhcpcd-definitions.conf}
10 INITDEFINES=$($TOOL_GREP "^define " $CONF | $TOOL_WC -l)
11 INITDEFINE6S=$($TOOL_GREP "^define6 " $CONF | $TOOL_WC -l)
H A Dgenembedc5 CONF=${1:-dhcpcd-definitions.conf}
15 $CONF
/external/boringssl/src/crypto/conf/
H A Dconf.c93 CONF *NCONF_new(void *method) {
94 CONF *conf;
100 conf = OPENSSL_malloc(sizeof(CONF));
117 OPENSSL_PUT_ERROR(CONF, ERR_R_MALLOC_FAILURE);
145 void NCONF_free(CONF *conf) {
155 CONF_VALUE *NCONF_new_section(const CONF *conf, const char *section) {
194 static int str_copy(CONF *conf, char *section, char **pto, char *from) {
295 OPENSSL_PUT_ERROR(CONF, CONF_R_NO_CLOSE_BRACE);
314 OPENSSL_PUT_ERROR(CONF, CONF_R_VARIABLE_HAS_NO_VALUE);
352 static CONF_VALUE *get_section(const CONF *con
[all...]
/external/boringssl/src/crypto/x509v3/
H A Dv3_conf.c75 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value);
80 /* CONF *conf: Config file */
83 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
101 /* CONF *conf: Config file */
103 X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
115 /* CONF *conf: Config file */
117 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
328 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section,
349 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
360 int X509V3_EXT_CRL_add_nconf(CONF *con
[all...]
/external/libxml2/
H A Dcheck-xinclude-test-suite.py13 CONF="testdescr.xml" variable
188 conf = libxml2.parseFile(CONF)
190 print "Unable to load %s" % CONF
H A Dcheck-relaxng-test-suite.py19 CONF=os.path.join(os.path.dirname(__file__), "test/relaxng/OASIS/spectest.xml") variable
365 testsuite = libxml2.parseFile(CONF)
369 print "%s doesn't start with a testSuite element, aborting" % (CONF)
H A Dcheck-relaxng-test-suite2.py18 CONF=os.path.join(os.path.dirname(__file__), "test/relaxng/testsuite.xml") variable
378 testsuite = libxml2.parseFile(CONF)
392 print "%s doesn't start with a testSuite element, aborting" % (CONF)
H A Dcheck-xml-test-suite.py17 CONF="xml-test-suite/xmlconf/xmlconf.xml" variable
376 conf = loadNoentDoc(CONF)
378 print "Unable to load %s" % CONF
H A Dcheck-xsddata-test-suite.py19 CONF=os.path.join(os.path.dirname(__file__), "test/xsdtest/xsdtestsuite.xml") variable
383 testsuite = libxml2.parseFile(CONF)
397 print "%s doesn't start with a testSuite element, aborting" % (CONF)
/external/selinux/policycoreutils/sestatus/
H A Dsestatus.c23 #define CONF "/etc/sestatus.conf" macro
91 FILE *fp = fopen(CONF, "r");
98 printf("\nUnable to open %s.\n", CONF);
/external/boringssl/src/crypto/x509/
H A Dasn1_gen.c134 ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf)
/external/wpa_supplicant_8/hs20/client/
H A Dest.c386 CONF *ctmp = NULL;
/external/curl/tests/
H A Druntests.pl2594 open(CONF, "<../lib/curl_config.h");
2595 while(<CONF>) {
2600 close(CONF);
/external/testng/ant/
H A Divy-2.1.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ...

Completed in 254 milliseconds