HomeSort by: relevance | last modified time | path
    Searched refs:configfile (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/external/apache2/llvm/autoconf/autoconf/
AutoRegen.sh 23 configfile=configure.ac
29 test -d autoconf && test -f autoconf/$configfile && cd autoconf
30 test -f $configfile || die "Can't find 'autoconf' dir; please cd into it first"
50 autoconf --force --warnings=all -o ../$outfile $configfile || die "autoconf failed"
53 autoheader --warnings=all -I autoconf -I autoconf/m4 autoconf/$configfile || die "autoheader failed"
  /src/crypto/external/apache2/openssl/dist/test/
prov_config_test.c 15 static char *configfile = NULL; variable
32 if (!TEST_true(OSSL_LIB_CTX_load_config(ctx, configfile)))
34 if (!TEST_true(OSSL_LIB_CTX_load_config(ctx, configfile)))
118 OPT_TEST_DECLARE_USAGE("configfile\n")
127 if (!TEST_ptr(configfile = test_get_argument(0)))
rand_test.c 18 static char *configfile; variable
265 if (!TEST_true(OSSL_LIB_CTX_load_config(ctx, configfile)))
285 if (!TEST_ptr(configfile = test_get_argument(0))
289 && !TEST_true(OSSL_LIB_CTX_load_config(NULL, configfile))))
  /src/crypto/external/bsd/openssl/dist/test/
prov_config_test.c 15 static char *configfile = NULL; variable
32 if (!TEST_true(OSSL_LIB_CTX_load_config(ctx, configfile)))
34 if (!TEST_true(OSSL_LIB_CTX_load_config(ctx, configfile)))
118 OPT_TEST_DECLARE_USAGE("configfile\n")
127 if (!TEST_ptr(configfile = test_get_argument(0)))
  /src/external/bsd/nsd/dist/contrib/
nsd.init 15 configfile="/etc/nsd.conf"
28 configfile=$1
63 echo "Usage: `basename $0` [-c configfile] {start|stop|reload|restart|"
66 echo " -c configfile Use specified configfile (default: @nsdconfigfile@)."
76 ${nsd_checkconf} ${configfile}
83 pidfile=`${nsd_checkconf} -o pidfile ${configfile}`
84 zonesdir=`${nsd_checkconf} -o zonesdir ${configfile}`
120 ${sbindir}/nsd -c ${configfile}
  /src/etc/
Makefile 576 .for configfile in ${ALL_KERNELS:O:u} # {
577 build_kernels: kern-${configfile}
578 kern-${configfile}: .PHONY .MAKE
582 -b ${KERNOBJDIR}/${configfile:C/.*\///} ${configfile}
584 ${MAKE} -C ${KERNOBJDIR}/${configfile:C/.*\///} distclean
586 ${MAKE} -C ${KERNOBJDIR}/${configfile:C/.*\///} depend && \
587 ${MAKE} -C ${KERNOBJDIR}/${configfile:C/.*\///} && \
588 ${MAKE} -C ${KERNOBJDIR}/${configfile:C/.*\///} debuginstall
596 .for configfile in ${KERNEL_SETS:O:u} #
    [all...]
  /src/usr.sbin/faithd/
prefix.c 262 config_load(const char *configfile)
271 if (!configfile)
272 configfile = _PATH_PREFIX_CONF;
273 fp = fopen(configfile, "r");
faithd.c 94 static char *configfile = NULL; variable
140 if (config_load(configfile) < 0 && configfile) {
219 configfile = optarg;
232 if (config_load(configfile) < 0 && configfile) {
  /src/external/bsd/nsd/dist/
nsd-mem.c 37 fprintf(stderr, "Usage: nsd-mem [-c configfile]\n");
248 const char *configfile = CONFIGFILE; local
258 configfile = optarg;
283 if(!parse_options_file(nsd.options, configfile, NULL, NULL, NULL)) {
284 error("could not read config: %s\n", configfile);
  /src/external/bsd/unbound/dist/testcode/
testbound.c 246 char configfile[MAX_LINE_LEN]; local
250 fake_temp_file("_cfg", "", configfile, sizeof(configfile));
252 add_opts(configfile, pass_argc, pass_argv);
253 cfg = fopen(configfile, "w");
255 configfile, strerror(errno));
256 if(!cfg_strlist_insert(&cfgfiles, strdup(configfile)))
504 /* remove configfile from here, the atexit() is for when
594 /* remove configfile from here, the atexit() is for when
  /src/external/bsd/openldap/dist/servers/lloadd/
main.c 377 char *configfile = NULL; local
422 newConfigFile = (char *)lutil_getRegParam( regService, "ConfigFile" );
424 configfile = ch_strdup( newConfigFile );
426 configfile );
495 configfile = ch_strdup( optarg );
683 if ( lload_read_config( configfile, configdir ) != 0 ) {
853 configfile ? configfile : LLOADD_DEFAULT_CONFIGFILE, urls );
910 if ( configfile ) ch_free( configfile );
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/recipes/
80-test_ssl_old.t 101 my $configfile = srctop_file("test","default-and-legacy.cnf");
103 $configfile = srctop_file("test","default.cnf");
106 testssl($Ukey, $Ucert, $CAcert, "default", $configfile);
388 my ($key, $cert, $CAtmp, $provider, $configfile) = @_;
398 run(test(["fips_version_test", "-config", $configfile, "<3.4.0"]),
405 "-config", $configfile,
527 $ENV{OPENSSL_CONF} = $configfile;
  /src/crypto/external/bsd/openssl.old/dist/apps/
srp.c 227 char **gNrow = NULL, *configfile = NULL; local
247 configfile = opt_arg();
291 if (srpvfile != NULL && configfile != NULL) {
293 "-srpvfile and -configfile cannot be specified together.\n");
320 if (configfile == NULL)
321 configfile = default_config_file;
325 configfile);
326 conf = app_load_config(configfile);
329 if (configfile != default_config_file && !app_load_modules(conf))
ts.c 36 static CONF *load_config_file(const char *configfile);
154 const char *configfile = default_config_file, *engine = NULL; local
189 configfile = opt_arg();
282 if ((conf = load_config_file(configfile)) == NULL)
284 if (configfile != default_config_file && !app_load_modules(conf))
339 static CONF *load_config_file(const char *configfile)
341 CONF *conf = app_load_config(configfile);
346 BIO_printf(bio_err, "Using configuration from %s\n", configfile);
  /src/crypto/external/bsd/openssl/dist/test/recipes/
80-test_ssl_old.t 99 my $configfile = srctop_file("test","default-and-legacy.cnf");
101 $configfile = srctop_file("test","default.cnf");
104 testssl($Ukey, $Ucert, $CAcert, "default", $configfile);
325 my ($key, $cert, $CAtmp, $provider, $configfile) = @_;
336 "-config", $configfile,
459 $ENV{OPENSSL_CONF} = $configfile;
  /src/crypto/external/apache2/openssl/dist/apps/
srp.c 253 char **gNrow = NULL, *configfile = NULL; local
273 configfile = opt_arg();
326 if (srpvfile != NULL && configfile != NULL) {
328 "-srpvfile and -configfile cannot be specified together.\n");
355 if (configfile == NULL)
356 configfile = default_config_file;
358 conf = app_load_config_verbose(configfile, verbose);
361 if (configfile != default_config_file && !app_load_modules(conf))
ts.c 34 static CONF *load_config_file(const char *configfile);
184 const char *configfile = default_config_file, *engine = NULL; local
221 configfile = opt_arg();
332 if ((conf = load_config_file(configfile)) == NULL)
334 if (configfile != default_config_file && !app_load_modules(conf))
390 static CONF *load_config_file(const char *configfile)
392 CONF *conf = app_load_config(configfile);
397 BIO_printf(bio_err, "Using configuration from %s\n", configfile);
  /src/crypto/external/bsd/openssl/dist/apps/
srp.c 242 char **gNrow = NULL, *configfile = NULL; local
262 configfile = opt_arg();
315 if (srpvfile != NULL && configfile != NULL) {
317 "-srpvfile and -configfile cannot be specified together.\n");
344 if (configfile == NULL)
345 configfile = default_config_file;
347 conf = app_load_config_verbose(configfile, verbose);
350 if (configfile != default_config_file && !app_load_modules(conf))
ts.c 36 static CONF *load_config_file(const char *configfile);
163 const char *configfile = default_config_file, *engine = NULL; local
199 configfile = opt_arg();
308 if ((conf = load_config_file(configfile)) == NULL)
310 if (configfile != default_config_file && !app_load_modules(conf))
366 static CONF *load_config_file(const char *configfile)
368 CONF *conf = app_load_config(configfile);
373 BIO_printf(bio_err, "Using configuration from %s\n", configfile);
  /src/external/bsd/openldap/dist/servers/slapd/
main.c 244 char *configfile = NULL; local
329 newConfigFile = (char*)lutil_getRegParam( regService, "ConfigFile" );
331 configfile = ch_strdup(newConfigFile);
332 Debug ( LDAP_DEBUG_ANY, "new config file from registry is: %s\n", configfile );
424 configfile = optarg;
662 if ( read_config( configfile, configdir ) != 0 ) {
870 lutil_LogStartedEvent( serverName, slap_debug, configfile ?
871 configfile : SLAPD_DEFAULT_CONFIGFILE , urls );
  /src/usr.sbin/ip6addrctl/
ip6addrctl.c 56 static char *configfile; variable
99 configfile = argv[2];
100 make_policy_fromfile(configfile);
455 fprintf(stderr, " ip6addrctl install <configfile>\n");
  /src/external/bsd/blocklist/bin/
blocklistd.c 77 static const char *configfile = _PATH_BLCONF; variable
448 configfile = optarg;
515 conf_parse(configfile);
567 conf_parse(configfile);
  /src/external/bsd/ntp/dist/sntp/libopts/
Makefile.am 50 compat/strdup.c compat/windows-config.h configfile.c \
  /src/external/mpl/bind/dist/bin/dnssec/
dnssec-keygen.c 88 const char *configfile; member in struct:keygen_ctx
977 ctx.configfile = isc_commandline_argument;
1199 if (ctx.configfile == NULL || ctx.configfile[0] == '\0') {
1200 ctx.configfile = NAMED_CONFFILE;
1279 if (cfg_parse_file(parser, ctx.configfile,
1285 ctx.policy, ctx.configfile);
  /src/external/bsd/openldap/dist/libraries/liblutil/
ntservice.c 392 void lutil_LogStartedEvent( char *svc, int slap_debug, char *configfile, char *urls )
402 Inserts[i++] = strdup( configfile );

Completed in 65 milliseconds

1 2