/external/boringssl/src/include/openssl/ |
conf.h | 80 * 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); 97 /* NCONF_free frees all the data owned by |conf| and then |conf| itself. */ 98 void NCONF_free(CONF *conf); 101 * |conf|. It returns one on success and zero on error. In the event of an 104 int NCONF_load(CONF *conf, const char *filename, long *out_error_line) [all...] |
x509v3.h | 59 #include <openssl/conf.h> 603 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) [all...] |
base.h | 203 typedef struct conf_st CONF;
|
asn1.h | [all...] |
/external/dhcpcd-6.8.2/ |
genembedh | 7 CONF=${1:-dhcpcd-definitions.conf} 10 INITDEFINES=$($TOOL_GREP "^define " $CONF | $TOOL_WC -l) 11 INITDEFINE6S=$($TOOL_GREP "^define6 " $CONF | $TOOL_WC -l)
|
genembedc | 5 CONF=${1:-dhcpcd-definitions.conf} 15 $CONF
|
/external/boringssl/src/crypto/conf/ |
conf.c | 57 #include <openssl/conf.h> 93 CONF *NCONF_new(void *method) { 94 CONF *conf; local 100 conf = OPENSSL_malloc(sizeof(CONF)); 101 if (conf == NULL) { 105 conf->data = lh_CONF_VALUE_new(conf_value_hash, conf_value_cmp); 106 if (conf->data == NULL) { 107 OPENSSL_free(conf); [all...] |
/external/boringssl/src/crypto/x509v3/ |
v3_conf.c | 63 #include <openssl/conf.h> 75 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, 92 ret = do_ext_nconf(conf, ctx, OBJ_sn2nid(name), crit, value); 101 /* CONF *conf: Config file * [all...] |
/external/libxml2/ |
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-relaxng-test-suite.py | 19 CONF=os.path.join(os.path.dirname(__file__), "test/relaxng/OASIS/spectest.xml") 362 # Parse the conf file 365 testsuite = libxml2.parseFile(CONF) 369 print "%s doesn't start with a testSuite element, aborting" % (CONF)
|
check-relaxng-test-suite2.py | 18 CONF=os.path.join(os.path.dirname(__file__), "test/relaxng/testsuite.xml") 375 # Parse the conf file 378 testsuite = libxml2.parseFile(CONF) 392 print "%s doesn't start with a testSuite element, aborting" % (CONF)
|
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()
|
check-xsddata-test-suite.py | 19 CONF=os.path.join(os.path.dirname(__file__), "test/xsdtest/xsdtestsuite.xml") 380 # Parse the conf file 383 testsuite = libxml2.parseFile(CONF) 397 print "%s doesn't start with a testSuite element, aborting" % (CONF)
|
/external/selinux/policycoreutils/sestatus/ |
sestatus.c | 23 #define CONF "/etc/sestatus.conf" 25 /* conf file sections */ 91 FILE *fp = fopen(CONF, "r"); 98 printf("\nUnable to open %s.\n", CONF);
|
/system/sepolicy/ |
Android.mk | 89 sepolicy_policy.conf := $(intermediates)/policy.conf 90 $(sepolicy_policy.conf): PRIVATE_MLS_SENS := $(MLS_SENS) 91 $(sepolicy_policy.conf): PRIVATE_MLS_CATS := $(MLS_CATS) 92 $(sepolicy_policy.conf): PRIVATE_ADDITIONAL_M4DEFS := $(LOCAL_ADDITIONAL_M4DEFS) 93 $(sepolicy_policy.conf): $(call build_policy, $(sepolicy_build_files)) 101 $(LOCAL_BUILT_MODULE): $(sepolicy_policy.conf) $(HOST_OUT_EXECUTABLES)/checkpolicy $(HOST_OUT_EXECUTABLES)/sepolicy-analyze 116 sepolicy_policy.conf := 127 sepolicy_policy_recovery.conf := $(intermediates)/policy_recovery.conf [all...] |
/external/boringssl/src/crypto/x509/ |
asn1_gen.c | 134 ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf)
|
/external/wpa_supplicant_8/hs20/client/ |
est.c | 386 CONF *ctmp = NULL;
|
/external/curl/tests/ |
runtests.pl | [all...] |
/external/testng/ant/ |
ivy-2.1.0.jar | |