Searched refs:cfg (Results 251 - 275 of 497) sorted by relevance

<<11121314151617181920

/freebsd-11-stable/usr.sbin/ppp/
H A Ddatalink.h92 } cfg; /* All our config data is in here */ member in struct:datalink
95 char list[SCRIPT_LEN]; /* copy of cfg.list for strsep() */
H A Dipcp.h72 } cfg; member in struct:ipcp
H A Dauth.c410 authp->cfg.fsm.timeout = DEF_FSMRETRY;
411 authp->cfg.fsm.maxreq = DEF_FSMAUTHTRIES;
412 authp->cfg.fsm.maxtrm = 0; /* not used */
425 authp->authtimer.load = authp->cfg.fsm.timeout * SECTICKS;
427 authp->retry = authp->cfg.fsm.maxreq;
H A Ddeflate.c446 const struct ccp_config *cfg)
449 o->data[0] = ((cfg->deflate.out.winsize - 8) << 4) + 8;
455 const struct ccp_config *cfg __unused)
470 const struct ccp_config *cfg)
478 if (cfg->deflate.in.winsize == 0) {
482 } else if (want != cfg->deflate.in.winsize) {
483 o->data[0] = ((cfg->deflate.in.winsize - 8) << 4) + 8;
445 DeflateInitOptsOutput(struct bundle *bundle __unused, struct fsm_opt *o, const struct ccp_config *cfg) argument
469 DeflateSetOptsInput(struct bundle *bundle __unused, struct fsm_opt *o, const struct ccp_config *cfg) argument
/freebsd-11-stable/contrib/wpa/src/fst/
H A Dfst.h230 * @cfg: FST-related interface configuration read from the configuration file
236 const struct fst_iface_cfg *cfg);
/freebsd-11-stable/contrib/unbound/dnscrypt/
H A Ddnscrypt.h104 * \param[in] cfg the config_file struct with dnscrypt options.
107 int dnsc_apply_cfg(struct dnsc_env *env, struct config_file *cfg);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h85 PostOrderCFGView(const CFG *cfg);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp299 CFG *cfg = mgr.getCFG(D); local
300 if (!cfg)
306 for (CFG::iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DCFGDiff.h104 GraphDiff(ArrayRef<cfg::Update<NodePtr>> Updates) {
105 SmallVector<cfg::Update<NodePtr>, 4> LegalizedUpdates;
106 cfg::LegalizeUpdates<NodePtr>(Updates, LegalizedUpdates, InverseGraph);
108 if (U.getKind() == cfg::UpdateKind::Insert) {
/freebsd-11-stable/contrib/subversion/subversion/svnserve/
H A Dserver.h123 svn_config_t *cfg;
122 svn_config_t *cfg; member in struct:serve_params_t
/freebsd-11-stable/contrib/unbound/iterator/
H A Diter_utils.c111 caps_white_apply_cfg(rbtree_type* ntree, struct config_file* cfg) argument
114 for(p=cfg->caps_whitelist; p; p=p->next) {
144 iter_apply_cfg(struct iter_env* iter_env, struct config_file* cfg) argument
148 if(!read_fetch_policy(iter_env, cfg->target_fetch_policy))
156 if(!iter_env->donotq || !donotq_apply_cfg(iter_env->donotq, cfg)) {
162 if(!iter_env->priv || !priv_apply_cfg(iter_env->priv, cfg)) {
166 if(cfg->caps_whitelist) {
170 iter_env->caps_white, cfg)) {
176 iter_env->supports_ipv6 = cfg->do_ip6;
177 iter_env->supports_ipv4 = cfg
[all...]
/freebsd-11-stable/contrib/unbound/validator/
H A Dval_anchor.h138 * @param cfg: config options.
141 int anchors_apply_cfg(struct val_anchors* anchors, struct config_file* cfg);
H A Dvalidator.c114 struct config_file* cfg)
117 val_env->bogus_ttl = (uint32_t)cfg->bogus_ttl;
127 val_env->kcache = key_cache_create(cfg);
133 if(!anchors_apply_cfg(env->anchors, cfg)) {
137 val_env->date_override = cfg->val_date_override;
138 val_env->skew_min = cfg->val_sig_skew_min;
139 val_env->skew_max = cfg->val_sig_skew_max;
140 c = cfg_count_numbers(cfg->val_nsec3_key_iterations);
143 "iterations: %s", cfg->val_nsec3_key_iterations);
147 if(!fill_nsec3_iter(val_env, cfg
113 val_apply_cfg(struct module_env* env, struct val_env* val_env, struct config_file* cfg) argument
[all...]
/freebsd-11-stable/contrib/unbound/dnstap/
H A Ddtstream.h289 * @param cfg: config file struct.
293 struct config_file *cfg);
/freebsd-11-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dbufferevent.h759 /** Free all storage held in 'cfg'.
761 Note: 'cfg' is not currently reference-counted; it is not safe to free it
765 void ev_token_bucket_cfg_free(struct ev_token_bucket_cfg *cfg);
769 'cfg'. If 'cfg' is NULL, disable any per-bufferevent rate-limiting on
780 struct ev_token_bucket_cfg *cfg);
790 @param cfg The rate-limit for this group.
802 const struct ev_token_bucket_cfg *cfg);
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwn_pci.c131 bwn_pci_find_devcfg(device_t dev, const struct bwn_pci_devcfg **cfg, argument
142 if (cfg != NULL)
143 *cfg = dvc;
/freebsd-11-stable/usr.sbin/mlxcontrol/
H A Dinterface.c210 mlx_read_configuration(int unit, struct mlx_core_cfg *cfg) argument
215 cmd.mu_datasize = sizeof(*cfg);
216 cmd.mu_buf = cfg;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp37 DataflowWorklist(const CFG &cfg, AnalysisDeclContext &Ctx) argument
38 : enqueuedBlocks(cfg.getNumBlockIDs()),
529 const CFG *cfg = getImpl(impl).analysisContext.getCFG(); local
530 for (CFG::const_iterator it = cfg->begin(), ei = cfg->end(); it != ei; ++it)
545 CFG *cfg = AC.getCFG(); local
546 if (!cfg)
551 if (cfg->getNumBlockIDs() > 300000)
558 DataflowWorklist worklist(*cfg, AC);
559 llvm::BitVector everAnalyzedBlock(cfg
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_subr_private.h636 svn_config__set_read_only(svn_config_t *cfg,
641 svn_config__is_read_only(svn_config_t *cfg);
647 svn_config__is_expanded(svn_config_t *cfg,
/freebsd-11-stable/contrib/unbound/daemon/
H A Dremote.c147 remote_setup_ctx(struct daemon_remote* rc, struct config_file* cfg) argument
160 s_cert = fname_after_chroot(cfg->server_cert_file, cfg, 1);
161 s_key = fname_after_chroot(cfg->server_key_file, cfg, 1);
198 daemon_remote_create(struct config_file* cfg) argument
208 if(!cfg->remote_control_enable) {
212 if(options_remote_is_address(cfg) && cfg->control_use_cert) {
213 if(!remote_setup_ctx(rc, cfg)) {
273 add_open(const char* ip, int nr, struct listen_port** list, int noproto_is_err, struct config_file* cfg) argument
362 daemon_remote_open_ports(struct config_file* cfg) argument
2499 struct config_file* cfg = worker->env.cfg; local
[all...]
/freebsd-11-stable/sys/compat/linsysfs/
H A Dlinsysfs.c289 dinfo->cfg.bus,
290 dinfo->cfg.slot,
291 dinfo->cfg.func);
331 if (dinfo->cfg.baseclass == PCIC_STORAGE) {
375 if (dinfo != NULL && dinfo->cfg.baseclass == PCIC_DISPLAY) {
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dwps_er.c1037 struct wps_config cfg; local
1042 os_memset(&cfg, 0, sizeof(cfg));
1043 cfg.wps = sta->ap->er->wps;
1044 cfg.registrar = 1;
1045 cfg.peer_addr = sta->addr;
1047 sta->wps = wps_init(&cfg);
1790 struct wps_config cfg; local
1798 os_memset(&cfg, 0, sizeof(cfg));
1973 struct wps_config cfg; local
[all...]
/freebsd-11-stable/sys/dev/mpt/
H A Dmpt.h593 #define mpt_port_page0 cfg.spi._port_page0
594 #define mpt_port_page1 cfg.spi._port_page1
595 #define mpt_port_page2 cfg.spi._port_page2
596 #define mpt_dev_page0 cfg.spi._dev_page0
597 #define mpt_dev_page1 cfg.spi._dev_page1
598 #define mpt_ini_id cfg.spi._ini_id
599 #define mpt_tag_enable cfg.spi._tag_enable
600 #define mpt_disc_enable cfg.spi._disc_enable
604 #define mpt_fcport_page0 cfg.fc._port_page0
605 #define mpt_fcport_speed cfg
607 } cfg; member in struct:mpt_softc
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_thread.c457 struct event_config *cfg = NULL; local
462 cfg = event_config_new();
463 tt_assert(cfg);
464 event_config_set_max_dispatch_interval(cfg, NULL, 16, 0);
466 base = event_base_new_with_config(cfg);
494 if (cfg)
495 event_config_free(cfg);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_repos/
H A Dhooks.c395 svn_config_t *cfg;
409 (void)svn_config_enumerate2(b->cfg, name, parse_hooks_env_option, &bo, pool);
430 svn_config_t *cfg;
431 SVN_ERR(svn_config_read3(&cfg, local_abspath, FALSE,
433 b.cfg = cfg;
435 (void)svn_config_enumerate_sections2(cfg, parse_hooks_env_section,
394 svn_config_t *cfg; member in struct:parse_hooks_env_section_baton
429 svn_config_t *cfg; local

Completed in 386 milliseconds

<<11121314151617181920