Searched refs:cfg (Results 276 - 300 of 497) sorted by relevance

<<11121314151617181920

/freebsd-11-stable/contrib/gcc/
H A Dcfgloop.c74 if (loops->cfg.dfs_order)
78 fprintf (file, "%d ", loops->cfg.dfs_order[i]);
84 if (loops->cfg.rc_order)
88 fprintf (file, "%d ", loops->cfg.rc_order[i]);
213 if (loops->cfg.dfs_order)
214 free (loops->cfg.dfs_order);
215 if (loops->cfg.rc_order)
216 free (loops->cfg.rc_order);
702 loops->cfg.dfs_order = dfs_order;
703 loops->cfg
[all...]
/freebsd-11-stable/contrib/unbound/dns64/
H A Ddns64.c359 * file \a cfg to this instance of the dns64 module. Currently only the DNS64
363 * \param cfg Parsed configuration file.
366 dns64_apply_cfg(struct dns64_env* dns64_env, struct config_file* cfg) argument
369 verbose(VERB_ALGO, "dns64-prefix: %s", cfg->dns64_prefix);
370 if (!netblockstrtoaddr(cfg->dns64_prefix ? cfg->dns64_prefix :
373 log_err("cannot parse dns64-prefix netblock: %s", cfg->dns64_prefix);
377 log_err("dns64_prefix is not IPv6: %s", cfg->dns64_prefix);
384 cfg->dns64_prefix);
387 for(s = cfg
[all...]
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dwps_hostapd.c1015 struct wps_registrar_config cfg; local
1032 os_memset(&cfg, 0, sizeof(cfg));
1177 cfg.multi_ap_backhaul_ssid_len =
1179 cfg.multi_ap_backhaul_ssid =
1183 cfg.multi_ap_backhaul_network_key = (const u8 *)
1185 cfg.multi_ap_backhaul_network_key_len =
1195 cfg.multi_ap_backhaul_network_key = multi_ap_netw_key;
1196 cfg.multi_ap_backhaul_network_key_len = 2 * PMK_LEN;
1203 cfg
[all...]
/freebsd-11-stable/contrib/openbsm/bin/auditdistd/
H A Dauditdistd.c580 adist_config_dump(struct adist_config *cfg) argument
587 pjdlog_debug(2, " pidfile: %s", cfg->adc_pidfile);
588 pjdlog_debug(2, " timeout: %d", cfg->adc_timeout);
589 if (TAILQ_EMPTY(&cfg->adc_listen)) {
593 TAILQ_FOREACH(lst, &cfg->adc_listen, adl_next) {
599 TAILQ_FOREACH(adhost, &cfg->adc_hosts, adh_next) {
/freebsd-11-stable/sys/netgraph/
H A Dng_pred1.c71 struct ng_pred1_config cfg; /* configuration */ member in struct:ng_pred1_private
242 struct ng_pred1_config *const cfg = local
246 if (msg->header.arglen != sizeof(*cfg))
250 priv->cfg = *cfg;
304 if (!priv->cfg.enable) {
/freebsd-11-stable/sys/dev/patm/
H A Dif_patm.c86 uint32_t cfg; local
97 cfg = IDT_CFG_TXFIFO9 | IDT_CFG_RXQ512 | PATM_CFG_VPI |
100 cfg |= IDT_CFG_IDLECLP;
101 patm_nor_write(sc, IDT_NOR_CFG, cfg);
211 cfg |= IDT_CFG_RXPTH | IDT_CFG_RXIIMM | IDT_CFG_RAWIE | IDT_CFG_RQFIE |
214 patm_nor_write(sc, IDT_NOR_CFG, cfg);
/freebsd-11-stable/sys/mips/beri/
H A Dberi_pic.c148 #define BP_CFG_ENABLED(cfg) (((cfg) & BP_CFG_MASK_E) >> BP_CFG_SHIFT_E)
149 #define BP_CFG_TID(cfg) (((cfg) & BP_CFG_MASK_TID) >> BP_CFG_SHIFT_TID)
150 #define BP_CFG_IRQ(cfg) (((cfg) & BP_CFG_MASK_IRQ) >> BP_CFG_SHIFT_IRQ)
/freebsd-11-stable/sys/powerpc/ofw/
H A Dofw_pcibus.c218 if (dinfo->opd_dinfo.cfg.intpin == 0)
275 if (dinfo->opd_dinfo.cfg.intline == 0) {
276 dinfo->opd_dinfo.cfg.intline = PCI_INVALID_IRQ;
/freebsd-11-stable/usr.sbin/ppp/
H A Dudp.c318 if (p->link.lcp.cfg.openmode != OPEN_PASSIVE) {
321 p->link.lcp.cfg.openmode = OPEN_PASSIVE;
331 if (p->cfg.cd.necessity != CD_DEFAULT)
H A Dccp.h120 struct ccp_config cfg; member in struct:ccp
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw_nat.c172 /* Del spool cfg if any. */
926 struct cfg_nat_legacy *cfg; local
947 cfg = (struct cfg_nat_legacy *)buf;
948 if (cfg->id < 0) {
954 snprintf(ucfg->name, sizeof(ucfg->name), "%d", cfg->id);
955 strlcpy(ucfg->if_name, cfg->if_name, sizeof(ucfg->if_name));
956 ucfg->ip = cfg->ip;
957 ucfg->mode = cfg->mode;
958 ucfg->redir_cnt = cfg->redir_cnt;
960 if (len < sizeof(*cfg)
[all...]
H A Ddn_sched_fq_codel.h72 struct dn_sch_fq_codel_parms cfg; member in struct:fq_codel_schk
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dcmdline.c601 svn_config_t *cfg,
617 cfg, pool));
670 SVN_ERR(svn_config_get_bool(cfg, &ssl_client_cert_file_prompt,
749 SVN_ERR(svn_config_get_bool(cfg, &store_password_val,
761 SVN_ERR(svn_config_get_bool(cfg, &store_auth_creds_val,
1009 svn_config_t *cfg; local
1014 cfg = svn_hash_gets(config, arg->file);
1016 if (cfg)
1018 svn_config_set(cfg, arg->section, arg->option, arg->value);
1257 struct svn_config_t *cfg; local
590 svn_cmdline_create_auth_baton2(svn_auth_baton_t **ab, svn_boolean_t non_interactive, const char *auth_username, const char *auth_password, const char *config_dir, svn_boolean_t no_auth_cache, svn_boolean_t trust_server_cert_unknown_ca, svn_boolean_t trust_server_cert_cn_mismatch, svn_boolean_t trust_server_cert_expired, svn_boolean_t trust_server_cert_not_yet_valid, svn_boolean_t trust_server_cert_other_failure, svn_config_t *cfg, svn_cancel_func_t cancel_func, void *cancel_baton, apr_pool_t *pool) argument
[all...]
H A Dsimple_providers.c144 svn_config_t *cfg = svn_hash_gets(parameters,
271 username = svn_config_get_server_setting(cfg, server_group,
612 svn_config_t *cfg = svn_hash_gets(parameters,
617 svn_config_get_server_setting(cfg, server_group,
141 svn_config_t *cfg = svn_hash_gets(parameters, local
607 svn_config_t *cfg = svn_hash_gets(parameters, local
/freebsd-11-stable/contrib/unbound/ipset/
H A Dipset.c159 for (p = env->cfg->local_zones_ipset; p; p = p->next) {
239 ipset_env->name_v4 = env->cfg->ipset_name_v4;
240 ipset_env->name_v6 = env->cfg->ipset_name_v6;
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dregress.c2394 struct event_config *cfg = NULL; local
2408 cfg = event_config_new();
2409 assert(cfg != NULL);
2411 tt_int_op(event_config_avoid_method(cfg, backend), ==, 0);
2412 event_config_set_flag(cfg, EVENT_BASE_FLAG_IGNORE_ENV);
2414 base = event_base_new_with_config(cfg);
2425 if (cfg)
2426 event_config_free(cfg);
2456 struct event_config *cfg = NULL; local
2458 cfg
2518 struct event_config *cfg = NULL; local
2859 struct event_config *cfg = NULL; local
3086 struct event_config *cfg = NULL; local
[all...]
/freebsd-11-stable/sys/dev/cxgb/common/
H A Dcxgb_mc5.c482 u32 cfg = t3_read_reg(adapter, A_MC5_DB_CONFIG); local
487 mc5->part_type = (unsigned char) G_TMTYPE(cfg);
488 if (cfg & F_TMTYPEHI)
491 mc5->tcam_size = tcam_part_size[G_TMPARTSIZE(cfg)];
/freebsd-11-stable/sys/dev/bhnd/siba/
H A Dsibavar.h147 struct bhnd_resource *cfg[SIBA_MAX_CFG]; /**< SIBA_CFG_* registers */ member in struct:siba_devinfo
/freebsd-11-stable/usr.sbin/pw/
H A Dpw.h72 struct userconf *get_userconfig(const char *cfg);
/freebsd-11-stable/contrib/unbound/iterator/
H A Diter_utils.h67 * @param cfg: config options.
70 int iter_apply_cfg(struct iter_env* iter_env, struct config_file* cfg);
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_pci.c166 pdev->device = dinfo->cfg.device;
167 pdev->vendor = dinfo->cfg.vendor;
168 pdev->subsystem_vendor = dinfo->cfg.subvendor;
169 pdev->subsystem_device = dinfo->cfg.subdevice;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowValues.h81 void InitializeValues(const CFG& cfg) {} argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCFGUpdate.h25 namespace cfg { namespace in namespace:llvm
114 } // end namespace cfg
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dutil.c125 struct svn_config_t *cfg;
127 cfg = config ? svn_hash_gets(config, SVN_CONFIG_CATEGORY_CONFIG) : NULL;
129 svn_config_get(cfg, (const char **)&merge_tool,
241 svn_config_t *cfg = svn_hash_gets(config, SVN_CONFIG_CATEGORY_CONFIG);
242 svn_config_get(cfg, &(lmb->message_encoding),
419 svn_config_t *cfg;
422 cfg = lmb->config ? svn_hash_gets(lmb->config, SVN_CONFIG_CATEGORY_CONFIG) : NULL;
434 svn_config_get(cfg, &mfc_after, SVN_CONFIG_SECTION_MISCELLANY, "freebsd-mfc-after", NULL);
442 svn_config_get(cfg, &sponsored_by, SVN_CONFIG_SECTION_MISCELLANY, "freebsd-sponsored-by",
123 struct svn_config_t *cfg; local
239 svn_config_t *cfg = svn_hash_gets(config, SVN_CONFIG_CATEGORY_CONFIG); local
417 svn_config_t *cfg; local
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_repos_private.h224 svn_repos__config_pool_get(svn_config_t **cfg,

Completed in 246 milliseconds

<<11121314151617181920