HomeSort by: relevance | last modified time | path
    Searched defs:conf (Results 1 - 25 of 229) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/usr.sbin/certctl/
Makefile 7 # XXX This is a hack to install certs.conf both in /etc/openssl (in the
11 etc-certs.conf base-certs.conf: certs.conf
15 CONFIGFILES+= etc-certs.conf
16 FILESBUILD_etc-certs.conf= yes
17 FILESDIR_etc-certs.conf= /etc/openssl
18 FILESNAME_etc-certs.conf= certs.conf
19 FILESMODE_etc-certs.conf= 64
    [all...]
  /src/usr.sbin/pf/etc/
Makefile 7 FILESMODE_pf.conf= 644
11 CONFIGFILES+= pf.conf
  /src/crypto/external/apache2/openssl/dist/fuzz/
conf.c 15 #include <openssl/conf.h>
28 CONF *conf; local
35 conf = NCONF_new(NULL);
38 NCONF_load_bio(conf, in, &eline);
39 NCONF_free(conf);
  /src/crypto/external/apache2/openssl/dist/test/
confdump.c 13 #include <openssl/conf.h>
17 static void dump_section(const char *name, const CONF *cnf)
33 CONF *conf = NCONF_new(NCONF_default()); local
37 if (conf != NULL && NCONF_load(conf, argv[1], &eline)) {
40 section_names = NCONF_get_section_names(conf);
42 dump_section(sk_OPENSSL_CSTRING_value(section_names, i), conf); local
49 NCONF_free(conf);
  /src/crypto/external/bsd/openssl/dist/fuzz/
conf.c 15 #include <openssl/conf.h>
28 CONF *conf; local
35 conf = NCONF_new(NULL);
38 NCONF_load_bio(conf, in, &eline);
39 NCONF_free(conf);
  /src/crypto/external/bsd/openssl/dist/test/
confdump.c 13 #include <openssl/conf.h>
17 static void dump_section(const char *name, const CONF *cnf)
33 CONF *conf = NCONF_new(NCONF_default()); local
37 if (conf != NULL && NCONF_load(conf, argv[1], &eline)) {
40 section_names = NCONF_get_section_names(conf);
42 dump_section(sk_OPENSSL_CSTRING_value(section_names, i), conf); local
49 NCONF_free(conf);
  /src/crypto/external/bsd/openssl.old/dist/fuzz/
conf.c 15 #include <openssl/conf.h>
28 CONF *conf; local
35 conf = NCONF_new(NULL);
38 NCONF_load_bio(conf, in, &eline);
39 NCONF_free(conf);
  /src/external/bsd/nsd/etc/
Makefile 7 FILES= nsd.conf
8 FILESBUILD_nsd.conf=yes
10 nsd.conf: nsd.conf.sample.in __subst
11 CLEANFILES+= nsd.conf
  /src/external/bsd/unbound/etc/
Makefile 7 FILES= unbound.conf
8 FILESBUILD_unbound.conf=yes
10 unbound.conf: example.conf.in __subst
11 CLEANFILES+= unbound.conf
  /src/external/bsd/dhcpcd/sbin/dhcpcd/
Makefile 73 CONFIGFILES= dhcpcd.conf
74 FILESDIR_dhcpcd.conf= /etc
75 FILESMODE_dhcpcd.conf= 644 # -rw-r--r--
77 MAN= dhcpcd.conf.5 dhcpcd.8
  /src/usr.sbin/wsmoused/
action.c 148 struct block *conf; local
152 conf = config_get_mode("action");
153 cmd = block_get_propval(conf, buf, NULL);
  /src/external/bsd/wpa/dist/src/ap/
x_snoop.c 20 struct hostapd_bss_config *conf = hapd->conf; local
22 if (!conf->isolate) {
28 if (conf->bridge[0] == '\0') {
74 struct hostapd_bss_config *conf = hapd->conf; local
77 l2 = l2_packet_init(conf->bridge, NULL, ETH_P_ALL, handler, hapd, 1);
hs20.c 24 u8 conf; local
25 if (!hapd->conf->hs20)
28 *eid++ = hapd->conf->hs20_release < 2 ? 5 : 7;
32 conf = (hapd->conf->hs20_release - 1) << 4; /* Release Number */
33 if (hapd->conf->hs20_release >= 2)
34 conf |= HS20_ANQP_DOMAIN_ID_PRESENT;
35 if (hapd->conf->disable_dgaf)
36 conf |= HS20_DGAF_DISABLED;
37 *eid++ = conf;
    [all...]
  /src/sys/arch/x86/pci/
amdpcib_hpet.c 133 pcireg_t conf; local
135 conf = pci_conf_read(pa->pa_pc, pa->pa_tag, 0xa0);
137 if ((conf & 1) == 0)
140 return conf & 0xfffffc00;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/
nouveau_nvkm_subdev_bios_gpio.c 139 u8 conf = nvbios_rd08(bios, data - 5); local
141 if (conf & 0x01) {
145 .log[0] = !!(conf & 0x02),
146 .log[1] = !(conf & 0x02),
nouveau_nvkm_subdev_bios_dcb.c 147 u32 conf = nvbios_rd32(bios, dcb + 0x04); local
150 switch (conf & 0x00e00000) {
166 switch ((conf & 0x0f000000) >> 24) {
184 outp->link = (conf & 0x00000030) >> 4;
188 outp->extdev = (conf & 0x0000ff00) >> 8;
  /src/usr.sbin/mrouted/
cfparse.y 97 %start conf
101 conf : stmts label
  /src/crypto/external/apache2/openssl/dist/demos/bio/
client-conf.c 13 #include <openssl/conf.h>
23 CONF *conf = NULL; local
30 conf = NCONF_new(NULL);
32 if (NCONF_load(conf, "connect.cnf", &errline) <= 0) {
40 sect = NCONF_get_section(conf, "default");
118 NCONF_free(conf);
server-conf.c 22 #include <openssl/conf.h>
32 CONF *conf = NULL; local
41 conf = NCONF_new(NULL);
43 if (NCONF_load(conf, "accept.cnf", &errline) <= 0) {
51 sect = NCONF_get_section(conf, "default");
  /src/crypto/external/bsd/openssl/dist/demos/bio/
client-conf.c 13 #include <openssl/conf.h>
23 CONF *conf = NULL; local
29 conf = NCONF_new(NULL);
31 if (NCONF_load(conf, "connect.cnf", &errline) <= 0) {
39 sect = NCONF_get_section(conf, "default");
115 NCONF_free(conf);
server-conf.c 22 #include <openssl/conf.h>
31 CONF *conf = NULL; local
40 conf = NCONF_new(NULL);
42 if (NCONF_load(conf, "accept.cnf", &errline) <= 0) {
50 sect = NCONF_get_section(conf, "default");
  /src/crypto/external/bsd/openssl.old/dist/demos/bio/
client-conf.c 13 #include <openssl/conf.h>
23 CONF *conf = NULL; local
29 conf = NCONF_new(NULL);
31 if (NCONF_load(conf, "connect.cnf", &errline) <= 0) {
39 sect = NCONF_get_section(conf, "default");
118 NCONF_free(conf);
server-conf.c 22 #include <openssl/conf.h>
31 CONF *conf = NULL; local
40 conf = NCONF_new(NULL);
42 if (NCONF_load(conf, "accept.cnf", &errline) <= 0) {
50 sect = NCONF_get_section(conf, "default");
  /src/sys/dev/fdt/
pwm_fan.c 116 struct pwm_config conf; local
124 pwm_get_config(sc->sc_pwm, &conf);
125 conf.duty_cycle = (conf.period * level) / 255;
126 pwm_set_config(sc->sc_pwm, &conf);
  /src/usr.sbin/altq/libaltq/
qop_fifoq.c 173 struct fifoq_conf conf; local
192 memset(&conf, 0, sizeof(conf));
193 strncpy(conf.iface.fifoq_ifname, ifinfo->ifname, IFNAMSIZ);
194 conf.fifoq_limit = fifoq_ifinfo->qlimit;
195 if (ioctl(fifoq_fd, FIFOQ_CONFIG, &conf) < 0)

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 910