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

1 2 3 4

  /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/usr.sbin/wsmoused/
action.c 148 struct block *conf; local in function:run_action
152 conf = config_get_mode("action");
153 cmd = block_get_propval(conf, buf, NULL);
  /src/sys/arch/x86/pci/
amdpcib_hpet.c 133 pcireg_t conf; local in function:amdpcib_hpet_addr
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 in function:dcb_gpio_match
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 in function:dcb_outp_parse
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/sys/dev/fdt/
pwm_fan.c 116 struct pwm_config conf; local in function:pwm_fan_set
124 pwm_get_config(sc->sc_pwm, &conf);
125 conf.duty_cycle = (conf.period * level) / 255;
126 pwm_set_config(sc->sc_pwm, &conf);
dwc2_fdt.c 117 const struct dwc2_fdt_config *conf = local in function:dwc2_fdt_attach
161 if (conf->params) {
162 conf->params(sc, &sc->sc_params);
pinctrl_single.c 153 const struct pinctrl_single_config *conf; local in function:pinctrl_single_attach
163 conf = of_compatible_lookup(phandle, compat_data)->data;
172 sc->sc_flags = conf->flags;
pwm_backlight.c 149 struct pwm_config conf; local in function:pwm_backlight_set
159 pwm_get_config(sc->sc_pwm, &conf);
160 conf.duty_cycle = (conf.period * sc->sc_levels[index]) / sc->sc_levels[sc->sc_nlevels - 1];
161 pwm_set_config(sc->sc_pwm, &conf);
171 struct pwm_config conf; local in function:pwm_backlight_get
174 pwm_get_config(sc->sc_pwm, &conf);
176 raw_val = (conf.duty_cycle * sc->sc_levels[sc->sc_nlevels - 1]) / conf.period;
  /src/usr.sbin/altq/libaltq/
qop_fifoq.c 173 struct fifoq_conf conf; local in function:fifoq_attach
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)
qop_blue.c 202 struct blue_conf conf; local in function:blue_attach
220 memset(&conf, 0, sizeof(conf));
221 strncpy(conf.iface.blue_ifname, ifinfo->ifname, IFNAMSIZ);
222 conf.blue_max_pmark = blue_ifinfo->max_pmark;
223 conf.blue_hold_time = blue_ifinfo->hold_time;
224 conf.blue_limit = blue_ifinfo->qlimit;
225 conf.blue_pkttime = blue_ifinfo->pkttime;
226 conf.blue_flags = blue_ifinfo->flags;
227 if (ioctl(blue_fd, BLUE_CONFIG, &conf) < 0
    [all...]
qop_wfq.c 206 struct wfq_conf conf; local in function:wfq_attach
226 memset(&conf, 0, sizeof(conf));
227 strncpy(conf.iface.wfq_ifacename, ifinfo->ifname, IFNAMSIZ);
228 conf.hash_policy = wfq_ifinfo->hash_policy;
229 conf.nqueues = wfq_ifinfo->nqueues;
230 conf.qlimit = wfq_ifinfo->qsize;
231 if (ioctl(wfq_fd, WFQ_CONFIG, &conf) < 0) {
  /src/sbin/fsck_msdos/
fat.c 381 int conf; local in function:checkfat
445 conf = tryclear(boot, fat, head, &fat[p].next);
447 if (conf == FSERROR) {
465 conf |= FSFATMOD;
467 ret |= conf;
  /src/sys/arch/arm/imx/
imxpwm.c 85 imxpwm_get_config(pwm_tag_t pwm, struct pwm_config *conf)
100 conf->polarity = polarity ? PWM_ACTIVE_HIGH : PWM_ACTIVE_LOW;
101 conf->period = (u_int)(((uint64_t)cycles * 1000000000) / rate);
102 conf->duty_cycle = (u_int)(((uint64_t)act_cycles * 1000000000) / rate);
108 imxpwm_set_config(pwm_tag_t pwm, const struct pwm_config *conf)
113 if (conf->period == 0)
121 cycles = (u_int)((conf->period * rate) / 1000000000);
129 if (conf->polarity == PWM_ACTIVE_LOW)
132 u_int act_cycles = (u_int)((conf->duty_cycle * rate) / 1000000000);
139 sc->sc_conf = *conf;
174 struct pwm_config conf = { local in function:imxpwm_attach_common
    [all...]
  /src/sys/arch/arm/sunxi/
sunxi_de2_ccu.c 127 const struct sunxi_de2_ccu_config *conf; local in function:sunxi_de2_ccu_attach
135 conf = of_compatible_lookup(phandle, compat_data)->data;
137 sc->sc_resets = conf->resets;
138 sc->sc_nresets = conf->nresets;
139 sc->sc_clks = conf->clks;
140 sc->sc_nclks = conf->nclks;
  /src/sys/arch/i386/pci/
gscpcib.c 234 uint32_t conf; local in function:gscpcib_gpio_pin_ctl
237 conf = bus_space_read_4(sc->sc_gpio_iot, sc->sc_gpio_ioh,
240 conf &= ~(GSCGPIO_CONF_OUTPUTEN | GSCGPIO_CONF_PUSHPULL |
243 conf |= GSCGPIO_CONF_OUTPUTEN;
245 conf |= GSCGPIO_CONF_PUSHPULL;
247 conf |= GSCGPIO_CONF_PULLUP;
249 GSCGPIO_CONF, conf);
  /src/sys/arch/newsmips/apbus/
dmac3.c 135 reg->conf = sc->sc_conf;
175 int intr, conf, rv = 1; local in function:dmac3_intr
182 conf = reg->conf;
183 reg->conf = conf;
191 if (conf & (DMAC3_CONF_IPER | DMAC3_CONF_MPER | DMAC3_CONF_DERR)) {
192 printf("%s: conf = 0x%x\n", device_xname(sc->sc_dev), conf);
193 if (conf & DMAC3_CONF_DERR)
207 int conf; local in function:dmac3_misc
    [all...]
  /src/usr.sbin/faithd/
prefix.c 191 struct config *conf; local in function:config_load1
231 conf = (struct config *)malloc(sizeof(*conf));
232 if (conf == NULL)
234 memset(conf, 0, sizeof(*conf));
237 conf->permit = 1;
239 conf->permit = 0;
242 conf->permit = 0;
245 if (prefix_set(token[0], &conf->match, 1) < 0
266 struct config *conf, *p; local in function:config_load
325 static struct config conf; local in function:config_match
    [all...]
  /src/usr.sbin/mlxctl/
config.c 125 struct conf_config conf; local in function:cmd_config
133 memset(&conf.cc_cfg, 0, sizeof(conf.cc_cfg));
134 mlx_configuration(&conf.cc_cfg, 0);
142 print_phys_drive(&conf, i, j);
145 for (i = 0; i < conf.cc_cfg.cc_num_sys_drives; i++)
146 print_sys_drive(&conf, i);
175 print_sys_drive(struct conf_config *conf, int drvno)
180 drv = &conf->cc_cfg.cc_sys_drives[drvno];
222 print_phys_drive(struct conf_config *conf, int chn, int targ
    [all...]
  /src/sys/dev/isapnp/
isapnpres.c 118 struct isapnp_attach_args *ipa, *conf = ISAPNP_MALLOC(sizeof(*conf)); local in function:isapnp_newconf
120 memset(conf, 0, sizeof(*conf));
122 memcpy(conf->ipa_devident, dev->ipa_devident,
123 sizeof(conf->ipa_devident));
124 memcpy(conf->ipa_devlogic, dev->ipa_devlogic,
125 sizeof(conf->ipa_devlogic));
126 memcpy(conf->ipa_devcompat, dev->ipa_devcompat,
127 sizeof(conf->ipa_devcompat))
175 struct isapnp_attach_args *dev, *conf, *d, *c, *pa; local in function:isapnp_flatten
    [all...]
  /src/sys/arch/arm/amlogic/
mesongxbb_clkc.c 239 const struct mesongxbb_clkc_config *conf; local in function:mesongxbb_clkc_attach
255 conf = of_compatible_lookup(phandle, compat_data)->data;
258 aprint_normal(": %s clock controller\n", conf->name);
  /src/sys/arch/evbarm/netwalker/
netwalker_backlight.c 281 struct pwm_config conf; local in function:netwalker_set_pwm
284 pwm_get_config(pwm, &conf);
285 conf.duty_cycle = (conf.period * val) / BRIGHTNESS_MAX;
286 pwm_set_config(pwm, &conf);
  /src/sys/dev/mii/
mvphy.c 317 /*const struct mvPhyConfig *conf = &routerConfig[port];*/
318 /*const struct mvPhyConfig *conf = &bridgeConfig[port];*/
319 const struct mvPhyConfig *conf = &dumbConfig[port]; local in function:mvphy_switchconfig
321 MV_WRITE(sc, conf->switchPortAddr, MV_PORT_BASED_VLAN_MAP,
322 conf->vlanSetting);
324 MV_WRITE(sc, conf->switchPortAddr, MV_PORT_CONTROL, conf->portControl);
325 MV_WRITE(sc, conf->switchPortAddr, MV_PORT_ASSOCIATION_VECTOR,

Completed in 45 milliseconds

1 2 3 4