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

1 2 3 4 5 6

  /src/lib/librefuse/refuse/
v30.c 62 struct fuse_loop_config config = { local
64 .max_idle_threads = 10 /* The default value when "config" is NULL. */
66 return __fuse_loop_mt(fuse, &config);
  /src/usr.sbin/fstyp/
zfs.c 57 nvlist_t *config = NULL; local
73 &config, 0)) == 0 &&
74 (nvlist_lookup_string(config, "name", &zpool_name) == 0)) {
79 nvlist_free(config);
  /src/usr.sbin/faithd/
prefix.h 38 struct config { struct
39 struct config *next;
52 extern const struct config *config_match(struct sockaddr *, struct sockaddr *);
  /src/sys/arch/evbmips/sbmips/
cpu.c 91 uint32_t config; local
97 config = mips3_cp0_config_read();
98 __USE(config);
99 KASSERT((config & MIPS3_CONFIG_K0_MASK) == 5);
machdep.c 161 uint32_t config; local
164 config = mips3_cp0_config_read();
165 config &= ~MIPS3_CONFIG_K0_MASK;
166 config |= 0x05; /* XXX. cacheable coherent */
167 mips3_cp0_config_write(config);
270 /* XXX hardwire to 32MB; should be kernel config option */
  /src/sys/arch/sbmips/sbmips/
cpu.c 90 uint32_t config; local
96 config = mips3_cp0_config_read();
97 __USE(config);
98 KASSERT((config & MIPS3_CONFIG_K0_MASK) == 5);
machdep.c 147 uint32_t config; local
150 config = mips3_cp0_config_read();
151 config &= ~MIPS3_CONFIG_K0_MASK;
152 config |= 0x05; /* XXX. cacheable coherent */
153 mips3_cp0_config_write(config);
255 /* XXX hardwire to 32MB; should be kernel config option */
  /src/sys/dev/isa/
sb.c 289 const char *config; local
299 config = names[sc->sc_model];
301 config = "??";
302 strlcpy(retp->config, config, sizeof(retp->config));
uha_isa.c 196 u_int16_t model, config; local
205 config = (bus_space_read_1(iot, ioh, U14_CONFIG + 0) << 8) |
210 switch (config & U14_DMA_MASK) {
222 config & U14_DMA_MASK);
235 switch (config & U14_IRQ_MASK) {
250 config & U14_IRQ_MASK);
270 sc->sc_scsi_dev = config & U14_HOSTID_MASK;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn21/
amdgpu_dcn21_hwseq.c 54 static void mmhub_update_page_table_config(struct dcn_hubbub_phys_addr_config *config,
65 config->gart_config.page_table_base_addr = ((uint64_t)page_table_base_hi << 32) | page_table_base_lo;
71 struct dcn_hubbub_phys_addr_config config; local
73 config.system_aperture.fb_top = pa_config->system_aperture.fb_top;
74 config.system_aperture.fb_offset = pa_config->system_aperture.fb_offset;
75 config.system_aperture.fb_base = pa_config->system_aperture.fb_base;
76 config.system_aperture.agp_top = pa_config->system_aperture.agp_top;
77 config.system_aperture.agp_bot = pa_config->system_aperture.agp_bot;
78 config.system_aperture.agp_base = pa_config->system_aperture.agp_base;
79 config.gart_config.page_table_start_addr = pa_config->gart_config.page_table_start_addr
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_scdc_helper.c 162 * Writes the TMDS config register over SCDC channel, and:
171 u8 config; local
174 ret = drm_scdc_readb(adapter, SCDC_TMDS_CONFIG, &config);
176 DRM_DEBUG_KMS("Failed to read TMDS config: %d\n", ret);
181 config |= SCDC_SCRAMBLING_ENABLE;
183 config &= ~SCDC_SCRAMBLING_ENABLE;
185 ret = drm_scdc_writeb(adapter, SCDC_TMDS_CONFIG, config);
216 * Writes to the TMDS config register over SCDC channel, and:
226 u8 config; local
229 ret = drm_scdc_readb(adapter, SCDC_TMDS_CONFIG, &config);
    [all...]
drm_damage_helper.c 104 struct drm_mode_config *config = &dev->mode_config; local
106 drm_object_attach_property(&plane->base, config->prop_fb_damage_clips,
drm_modeset_lock.c 102 struct drm_mode_config *config = &dev->mode_config; local
110 mutex_lock(&config->mutex);
128 WARN_ON(config->acquire_ctx);
134 config->acquire_ctx = ctx;
156 struct drm_mode_config *config = &dev->mode_config; local
157 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
162 config->acquire_ctx = NULL;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
iccsense.h 16 u16 config; member in struct:pwr_rail_t
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/iccsense/
priv.h 16 u16 config; member in struct:nvkm_iccsense_sensor
  /src/usr.bin/man/
manconf.c 46 static char sccsid[] = "@(#)config.c 8.8 (Berkeley) 1/31/95";
88 * config --
100 config(const char *fname) function
  /src/sys/dev/i2c/
tvpllvar.h 50 uint8_t config; member in struct:tvpll_data::tvpll_entry
  /src/sys/net/npf/
npf_conf.c 81 KASSERT(npf->config != NULL);
125 npf_config_destroy(npf->config);
131 * Performs the necessary synchronization and destroys the old config.
147 if ((onc = atomic_load_relaxed(&npf->config)) != NULL) {
154 * Set the new config and release the lock.
156 atomic_store_release(&npf->config, nc);
187 /* Finally, it is safe to destroy the old config. */
202 return npf->config;
249 npf_config_t *config = atomic_load_consume(&npf->config); local
257 npf_config_t *config = atomic_load_consume(&npf->config); local
265 npf_config_t *config = atomic_load_consume(&npf->config); local
273 npf_config_t *config = atomic_load_consume(&npf->config); local
    [all...]
  /src/usr.sbin/hdaudioctl/
graph.c 57 uint32_t cap, config; local
100 prop_dictionary_get_uint32(response, "config", &config);
126 pin_devices[COP_CFG_DEFAULT_DEVICE(config)]);
  /src/usr.sbin/mailwrapper/
mailwrapper.c 86 FILE *config; local
95 if ((config = fopen(_PATH_MAILERCONF, "r")) == NULL)
99 if ((line = fparseln(config, &len, &lineno, NULL, 0)) == NULL) {
100 if (feof(config))
135 (void)fclose(config);
  /src/sys/arch/arm/nvidia/
tegra_platform.c 175 const char *config = get_bootconf_string(boot_args, local
176 "nouveau.config");
177 if (config)
178 prop_dictionary_set_string(dict, "config", config);
  /src/sys/arch/arm/nxp/
imx6_spi.c 141 const struct imx_spi_config *config = local
143 sc->sc_enhanced = config->enhanced;
144 sc->sc_type = config->type;
imx6_iomux.c 74 u_int config = be32toh(pins[5]); local
76 if (config & CONFIG_SION)
78 config &= ~CONFIG_SION;
86 if (!(config & CONFIG_NO_PAD_CTL)) {
88 bus_space_write_4(sc->sc_iot, sc->sc_ioh, conf_reg, config);
90 "config offset 0x%08x, val 0x%08x -> 0x%08x\n",
91 conf_reg, reg, config);
  /src/usr.sbin/fssconfig/
fssconfig.c 54 static void config(int, char **);
73 action = config;
100 action = config;
111 config(int argc, char **argv) function
  /src/sys/arch/arm/imx/
imxspi.c 183 uint32_t config = 0; local
198 config = bus_space_read_4(sc->sc_iot, sc->sc_ioh, ECSPI_CONFIGREG);
199 config &= ~(__SHIFTIN(__BIT(slave), ECSPI_CONFIG_SCLK_POL) |
208 config |= __SHIFTIN(__BIT(slave), ECSPI_CONFIG_SCLK_PHA);
212 config |= __SHIFTIN(__BIT(slave), ECSPI_CONFIG_SCLK_POL);
213 config |= __SHIFTIN(__BIT(slave), ECSPI_CONFIG_SCLK_CTL);
217 config |= __SHIFTIN(__BIT(slave), ECSPI_CONFIG_SCLK_PHA);
218 config |= __SHIFTIN(__BIT(slave), ECSPI_CONFIG_SCLK_POL);
219 config |= __SHIFTIN(__BIT(slave), ECSPI_CONFIG_SCLK_CTL);
224 config |= __SHIFTIN(__BIT(slave), ECSPI_CONFIG_SSB_CTL)
    [all...]

Completed in 37 milliseconds

1 2 3 4 5 6