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

/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/include/openssl/
H A Dconf.h80 * Config files are represented by a |CONF|. */
95 /* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method|
97 OPENSSL_EXPORT CONF *NCONF_new(void *method);
100 OPENSSL_EXPORT void NCONF_free(CONF *conf);
106 int NCONF_load(CONF *conf, const char *filename, long *out_error_line);
110 int NCONF_load_bio(CONF *conf, BIO *bio, long *out_error_line);
115 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
120 const char *NCONF_get_string(const CONF *conf, const char *section,
171 BORINGSSL_MAKE_DELETER(CONF, NCONF_free)
H A Dx509v3.h615 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
616 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
617 OPENSSL_EXPORT int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
618 OPENSSL_EXPORT int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert);
619 OPENSSL_EXPORT int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
620 OPENSSL_EXPORT int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
629 OPENSSL_EXPORT void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf);
H A Dbase.h281 typedef struct conf_st CONF; typedef in typeref:struct:conf_st
H A Dasn1.h868 OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
/external/boringssl/src/include/openssl/
H A Dconf.h80 * Config files are represented by a |CONF|. */
95 /* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method|
97 OPENSSL_EXPORT CONF *NCONF_new(void *method);
100 OPENSSL_EXPORT void NCONF_free(CONF *conf);
106 int NCONF_load(CONF *conf, const char *filename, long *out_error_line);
110 int NCONF_load_bio(CONF *conf, BIO *bio, long *out_error_line);
115 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
120 const char *NCONF_get_string(const CONF *conf, const char *section,
171 BORINGSSL_MAKE_DELETER(CONF, NCONF_free)
H A Dx509v3.h615 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid, char *value);
616 OPENSSL_EXPORT X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name, char *value);
617 OPENSSL_EXPORT int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section, STACK_OF(X509_EXTENSION) **sk);
618 OPENSSL_EXPORT int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509 *cert);
619 OPENSSL_EXPORT int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_REQ *req);
620 OPENSSL_EXPORT int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
629 OPENSSL_EXPORT void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf);
H A Dbase.h281 typedef struct conf_st CONF; typedef in typeref:struct:conf_st
H A Dasn1.h868 OPENSSL_EXPORT ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
/external/boringssl/src/crypto/conf/
H A Dconf.c99 CONF *NCONF_new(void *method) {
100 CONF *conf;
106 conf = OPENSSL_malloc(sizeof(CONF));
123 OPENSSL_PUT_ERROR(CONF, ERR_R_MALLOC_FAILURE);
151 void NCONF_free(CONF *conf) {
161 static CONF_VALUE *NCONF_new_section(const CONF *conf, const char *section) {
200 static int str_copy(CONF *conf, char *section, char **pto, char *from) {
301 OPENSSL_PUT_ERROR(CONF, CONF_R_NO_CLOSE_BRACE);
320 OPENSSL_PUT_ERROR(CONF, CONF_R_VARIABLE_HAS_NO_VALUE);
325 OPENSSL_PUT_ERROR(CONF, CONF_R_VARIABLE_EXPANSION_TOO_LON
[all...]
/external/boringssl/src/decrepit/x509/
H A Dx509_decrepit.c21 CONF *nconf = NULL;
/external/boringssl/src/crypto/x509v3/
H A Dv3_conf.c75 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
84 /* CONF *conf: Config file */
87 X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, char *name,
104 /* CONF *conf: Config file */
106 X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
118 /* CONF *conf: Config file */
120 static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int ext_nid,
329 int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, char *section,
353 int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section,
364 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/toolchain-utils/bestflags/
H A Dexample_algorithms.py43 CONF = 'CONF' variable
76 if CONF not in meta_data:
79 conf_file = meta_data[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/ltp/pan/cgi/
H A Dreconsile.cgi220 } elsif ($match->{STATUS} =~ /CONF/) {
/external/boringssl/src/crypto/x509/
H A Dasn1_gen.c138 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 720 milliseconds