Home
last modified time | relevance | path

Searched full:conf (Results 1 – 25 of 3532) sorted by relevance

12345678910>>...142

/freebsd-src/crypto/openssl/crypto/conf/
H A Dconf_lib.c13 #include "internal/conf.h"
17 #include <openssl/conf.h>
24 /* Init a 'CONF' structure from an old LHASH */
26 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash) in CONF_set_nconf() argument
31 default_CONF_method->init(conf); in CONF_set_nconf()
32 conf->data = hash; in CONF_set_nconf()
36 * The following section contains the "CONF classic" functions, rewritten in
37 * terms of the new CONF interface.
46 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, cons
111 CONF_get_string(LHASH_OF (CONF_VALUE)* conf,const char * group,const char * name) CONF_get_string() argument
124 CONF_get_number(LHASH_OF (CONF_VALUE)* conf,const char * group,const char * name) CONF_get_number() argument
143 CONF_free(LHASH_OF (CONF_VALUE)* conf) CONF_free() argument
151 CONF_dump_fp(LHASH_OF (CONF_VALUE)* conf,FILE * out) CONF_dump_fp() argument
166 CONF_dump_bio(LHASH_OF (CONF_VALUE)* conf,BIO * out) CONF_dump_bio() argument
204 NCONF_free(CONF * conf) NCONF_free() argument
211 NCONF_free_data(CONF * conf) NCONF_free_data() argument
218 NCONF_get0_libctx(const CONF * conf) NCONF_get0_libctx() argument
250 NCONF_load(CONF * conf,const char * file,long * eline) NCONF_load() argument
261 NCONF_load_fp(CONF * conf,FILE * fp,long * eline) NCONF_load_fp() argument
275 NCONF_load_bio(CONF * conf,BIO * bp,long * eline) NCONF_load_bio() argument
300 NCONF_get_string(const CONF * conf,const char * group,const char * name) NCONF_get_string() argument
320 default_is_number(const CONF * conf,char c) default_is_number() argument
325 default_to_int(const CONF * conf,char c) default_to_int() argument
330 NCONF_get_number_e(const CONF * conf,const char * group,const char * name,long * result) NCONF_get_number_e() argument
368 _CONF_get_number(const CONF * conf,const char * section,const char * name) _CONF_get_number() argument
381 NCONF_dump_fp(const CONF * conf,FILE * out) NCONF_dump_fp() argument
395 NCONF_dump_bio(const CONF * conf,BIO * out) NCONF_dump_bio() argument
[all...]
H A Dconf_def.c10 /* Part of the code in here was originally in conf.c, which is now removed */
22 #include <openssl/conf.h>
45 static int is_keytype(const CONF *conf, char c, unsigned short type);
46 static char *eat_ws(CONF *conf, char *p);
47 static void trim_ws(CONF *conf, char *start);
48 static char *eat_alpha_numeric(CONF *conf, cha
53 scan_esc(conf,p) global() argument
124 def_init_default(CONF * conf) def_init_default() argument
137 def_init_WIN32(CONF * conf) def_init_WIN32() argument
150 def_destroy(CONF * conf) def_destroy() argument
159 def_destroy_data(CONF * conf) def_destroy_data() argument
167 def_load(CONF * conf,const char * name,long * line) def_load() argument
208 def_load_bio(CONF * conf,BIO * in,long * line) def_load_bio() argument
614 clear_comments(CONF * conf,char * p) clear_comments() argument
651 str_copy(CONF * conf,char * section,char ** pto,char * from) str_copy() argument
904 is_keytype(const CONF * conf,char c,unsigned short type) is_keytype() argument
928 eat_ws(CONF * conf,char * p) eat_ws() argument
935 trim_ws(CONF * conf,char * start) trim_ws() argument
948 eat_alpha_numeric(CONF * conf,char * p) eat_alpha_numeric() argument
962 scan_quote(CONF * conf,char * p) scan_quote() argument
980 scan_dquote(CONF * conf,char * p) scan_dquote() argument
1010 def_dump(const CONF * conf,BIO * out) def_dump() argument
1016 def_is_number(const CONF * conf,char c) def_is_number() argument
1021 def_to_int(const CONF * conf,char c) def_to_int() argument
[all...]
H A Dconf_api.c10 /* Part of the code in here was originally in conf.c, which is now removed */
16 #include <openssl/conf.h>
20 static void value_free_hash(const CONF_VALUE *a, LHASH_OF(CONF_VALUE) *conf);
23 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section) in _CONF_get_section() argument
27 if (conf == NULL || section == NULL) in _CONF_get_section()
31 return conf->data != NULL ? lh_CONF_VALUE_retrieve(conf->data, &vv) : NULL; in _CONF_get_section()
34 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf, in STACK_OF()
39 v = _CONF_get_section(conf, section); in STACK_OF()
45 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value) in _CONF_add_string() argument
56 v = lh_CONF_VALUE_insert(conf->data, value); in _CONF_add_string()
[all …]
/freebsd-src/contrib/wpa/src/ap/
H A Dap_config.c187 struct hostapd_config *conf; in hostapd_config_defaults()
210 conf = os_zalloc(sizeof(*conf)); in hostapd_config_defaults()
212 if (conf == NULL || bss == NULL) { in hostapd_config_defaults()
215 os_free(conf); in hostapd_config_defaults()
219 conf->bss = os_calloc(1, sizeof(struct hostapd_bss_config *)); in hostapd_config_defaults()
220 if (conf->bss == NULL) { in hostapd_config_defaults()
221 os_free(conf); in hostapd_config_defaults()
225 conf->bss[0] = bss; in hostapd_config_defaults()
229 os_free(conf in hostapd_config_defaults()
180 struct hostapd_config *conf; hostapd_config_defaults() local
473 hostapd_setup_sae_pt(struct hostapd_bss_config * conf) hostapd_setup_sae_pt() argument
513 hostapd_setup_wpa_psk(struct hostapd_bss_config * conf) hostapd_setup_wpa_psk() argument
689 hostapd_config_free_anqp_elem(struct hostapd_bss_config * conf) hostapd_config_free_anqp_elem() argument
702 hostapd_config_free_fils_realms(struct hostapd_bss_config * conf) hostapd_config_free_fils_realms() argument
716 hostapd_config_free_sae_passwords(struct hostapd_bss_config * conf) hostapd_config_free_sae_passwords() argument
739 hostapd_dpp_controller_conf_free(struct dpp_controller_conf * conf) hostapd_dpp_controller_conf_free() argument
752 hostapd_config_free_bss(struct hostapd_bss_config * conf) hostapd_config_free_bss() argument
982 hostapd_config_free(struct hostapd_config * conf) hostapd_config_free() argument
1097 hostapd_get_psk(const struct hostapd_bss_config * conf,const u8 * addr,const u8 * p2p_dev_addr,const u8 * prev_psk,int * vlan_id) hostapd_get_psk() argument
1210 hostapd_config_check_bss(struct hostapd_bss_config * bss,struct hostapd_config * conf,int full_config) hostapd_config_check_bss() argument
1439 hostapd_config_check_cw(struct hostapd_config * conf,int queue) hostapd_config_check_cw() argument
1462 hostapd_config_check(struct hostapd_config * conf,int full_config) hostapd_config_check() argument
1593 hostapd_sae_pw_id_in_use(struct hostapd_bss_config * conf) hostapd_sae_pw_id_in_use() argument
1616 hostapd_sae_pk_in_use(struct hostapd_bss_config * conf) hostapd_sae_pk_in_use() argument
1632 hostapd_sae_pk_exclusively(struct hostapd_bss_config * conf) hostapd_sae_pk_exclusively() argument
[all...]
H A Dauthsrv.c108 struct hostapd_bss_config *conf = hapd->conf; in hostapd_setup_radius_srv()
126 srv.client_file = conf->radius_server_clients; in hostapd_setup_radius_srv()
127 srv.auth_port = conf->radius_server_auth_port; in hostapd_setup_radius_srv()
128 srv.acct_port = conf->radius_server_acct_port; in hostapd_setup_radius_srv()
130 srv.ipv6 = conf->radius_server_ipv6; in hostapd_setup_radius_srv()
132 srv.eap_req_id_text = conf->eap_req_id_text; in hostapd_setup_radius_srv()
133 srv.eap_req_id_text_len = conf->eap_req_id_text_len; in hostapd_setup_radius_srv()
134 srv.sqlite_file = conf->eap_user_sqlite; in hostapd_setup_radius_srv()
136 srv.dump_msk_file = conf in hostapd_setup_radius_srv()
107 struct hostapd_bss_config *conf = hapd->conf; hostapd_setup_radius_srv() local
237 struct tls_config conf; authsrv_init() local
[all...]
H A Dwpa_auth_ie.c28 static int wpa_write_wpa_ie(struct wpa_auth_config *conf, u8 *buf, size_t len) in wpa_write_wpa_ie()
41 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, conf->wpa_group); in wpa_write_wpa_ie()
44 conf->wpa_group); in wpa_write_wpa_ie()
53 num_suites = wpa_cipher_put_suites(pos, conf->wpa_pairwise); in wpa_write_wpa_ie()
56 conf->wpa_pairwise); in wpa_write_wpa_ie()
66 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_IEEE8021X) { in wpa_write_wpa_ie()
71 if (conf->wpa_key_mgmt & WPA_KEY_MGMT_PSK) { in wpa_write_wpa_ie()
79 conf->wpa_key_mgmt); in wpa_write_wpa_ie()
92 static u16 wpa_own_rsn_capab(struct wpa_auth_config *conf) in wpa_own_rsn_capab()
96 if (conf in wpa_own_rsn_capab()
27 wpa_write_wpa_ie(struct wpa_auth_config * conf,u8 * buf,size_t len) wpa_write_wpa_ie() argument
91 wpa_own_rsn_capab(struct wpa_auth_config * conf) wpa_own_rsn_capab() argument
121 wpa_write_rsn_ie(struct wpa_auth_config * conf,u8 * buf,size_t len,const u8 * pmkid) wpa_write_rsn_ie() argument
391 wpa_write_rsnxe(struct wpa_auth_config * conf,u8 * buf,size_t len) wpa_write_rsnxe() argument
431 wpa_write_osen(struct wpa_auth_config * conf,u8 * eid) wpa_write_osen() argument
593 struct wpa_auth_config *conf = &wpa_auth->conf; wpa_validate_wpa_ie() local
1100 struct wpa_auth_config *conf; wpa_auth_write_assoc_resp_owe() local
1150 struct wpa_auth_config *conf; wpa_auth_write_fd_rsn_info() local
[all...]
H A Dhostapd.c126 hostapd_setup_encryption(hapd->conf->iface, hapd); in hostapd_reload_bss()
138 if (hapd->conf->wmm_enabled < 0) in hostapd_reload_bss()
139 hapd->conf->wmm_enabled = hapd->iconf->ieee80211n | in hostapd_reload_bss()
143 radius_client_reconfig(hapd->radius, hapd->conf->radius); in hostapd_reload_bss()
146 ssid = &hapd->conf->ssid; in hostapd_reload_bss()
153 hostapd_config_clear_wpa_psk(&hapd->conf->ssid.wpa_psk); in hostapd_reload_bss()
155 if (hostapd_setup_wpa_psk(hapd->conf)) { in hostapd_reload_bss()
160 if (hapd->conf->ieee802_1x || hapd->conf->wpa) in hostapd_reload_bss()
161 hostapd_set_drv_ieee8021x(hapd, hapd->conf in hostapd_reload_bss()
742 mac_in_conf(struct hostapd_config * conf,const void * a) mac_in_conf() argument
1112 struct hostapd_bss_config *conf = hapd->conf; hostapd_setup_bss() local
1463 struct hostapd_config *conf = hapd->iconf; hostapd_set_acl() local
2378 hostapd_alloc_bss_data(struct hostapd_iface * hapd_iface,struct hostapd_config * conf,struct hostapd_bss_config * bss) hostapd_alloc_bss_data() argument
2502 struct hostapd_config *conf = NULL; hostapd_init() local
2602 struct hostapd_config *conf; hostapd_interface_init_bss() local
2878 struct hostapd_config *conf; hostapd_config_alloc() local
2929 hostapd_data_alloc(struct hostapd_iface * hapd_iface,struct hostapd_config * conf) hostapd_data_alloc() argument
2964 struct hostapd_config *conf = NULL; hostapd_add_iface() local
3444 hostapd_change_config_freq(struct hostapd_data * hapd,struct hostapd_config * conf,struct hostapd_freq_params * params,struct hostapd_freq_params * old_params) hostapd_change_config_freq() argument
[all...]
/freebsd-src/contrib/bsddialog/lib/
H A Dbsddialog.366 .Fn bsddialog_backtitle "struct bsddialog_conf *conf" "const char *backtitle"
69 .Fa "struct bsddialog_conf *conf"
79 .Fa "struct bsddialog_conf *conf"
92 .Fa "struct bsddialog_conf *conf"
104 .Fa "struct bsddialog_conf *conf"
115 .Fa "struct bsddialog_conf *conf"
128 .Fa "struct bsddialog_conf *conf"
140 .Fn bsddialog_initconf "struct bsddialog_conf *conf"
143 .Fa "struct bsddialog_conf *conf"
154 .Fa "struct bsddialog_conf *conf"
[all …]
H A Dlib_util.c65 * [static] widget_max_height(conf);
66 * [static] widget_max_width(struct bsddialog_conf *conf)
71 * [static] widget_min_height(conf, htext, hnotext, bool buttons);
72 * [static] widget_min_width(conf, wtext, minw, buttons);
83 * f1help_dialog(conf);
84 * draw_borders(conf, win, elev);
85 * update_box(conf, win, y, x, h, w, elev);
311 if (d->conf->button.left1_label != NULL) { in set_buttons()
312 d->bs.label[d->bs.nbuttons] = d->conf->button.left1_label; in set_buttons()
317 if (d->conf->button.left2_label != NULL) { in set_buttons()
[all …]
/freebsd-src/contrib/wpa/wpa_supplicant/
H A Dmesh.c85 struct mesh_conf *conf; in mesh_config_create() local
88 conf = os_zalloc(sizeof(struct mesh_conf)); in mesh_config_create()
89 if (!conf) in mesh_config_create()
92 os_memcpy(conf->meshid, ssid->ssid, ssid->ssid_len); in mesh_config_create()
93 conf->meshid_len = ssid->ssid_len; in mesh_config_create()
96 conf->security |= MESH_CONF_SEC_AUTH | in mesh_config_create()
99 conf->security |= MESH_CONF_SEC_NONE; in mesh_config_create()
100 conf->ieee80211w = ssid->ieee80211w; in mesh_config_create()
101 if (conf->ieee80211w == MGMT_FRAME_PROTECTION_DEFAULT) { in mesh_config_create()
103 conf in mesh_config_create()
386 struct hostapd_config *conf; wpa_supplicant_mesh_init() local
[all...]
H A Dap.c49 struct hostapd_config *conf) in is_chanwidth160_supported() argument
52 if (conf->ieee80211ax) { in is_chanwidth160_supported()
72 struct hostapd_config *conf, in wpas_conf_ap_vht() argument
77 u8 channel = conf->channel; in wpas_conf_ap_vht()
81 if (!conf->secondary_channel) in wpas_conf_ap_vht()
86 hostapd_set_oper_chwidth(conf, ssid->max_oper_chwidth); in wpas_conf_ap_vht()
87 if (hostapd_get_oper_chwidth(conf)) in wpas_conf_ap_vht()
89 hostapd_get_oper_chwidth(conf), in wpas_conf_ap_vht()
90 &conf->op_class, in wpas_conf_ap_vht()
91 &conf in wpas_conf_ap_vht()
222 wpas_conf_ap_he_6ghz(struct wpa_supplicant * wpa_s,struct hostapd_hw_modes * mode,struct wpa_ssid * ssid,struct hostapd_config * conf) wpas_conf_ap_he_6ghz() argument
266 wpa_supplicant_conf_ap_ht(struct wpa_supplicant * wpa_s,struct wpa_ssid * ssid,struct hostapd_config * conf) wpa_supplicant_conf_ap_ht() argument
442 wpa_supplicant_conf_ap(struct wpa_supplicant * wpa_s,struct wpa_ssid * ssid,struct hostapd_config * conf) wpa_supplicant_conf_ap() argument
926 struct hostapd_config *conf; wpa_supplicant_create_ap() local
1537 struct hostapd_bss_config *conf; ap_ctrl_iface_wpa_get_status() local
1648 struct hostapd_bss_config *conf; wpa_supplicant_ap_mac_addr_filter() local
[all...]
/freebsd-src/contrib/ofed/opensm/opensm/
H A Dosm_prtn_config.c128 static inline boolean_t ip_mgroup_pkey_ok(struct part_conf *conf, in ip_mgroup_pkey_ok() argument
138 || mpkey == (conf->p_prtn->pkey | cl_hton16(0x8000))) in ip_mgroup_pkey_ok()
141 OSM_LOG(conf->p_log, OSM_LOG_ERROR, in ip_mgroup_pkey_ok()
145 cl_ntoh16(mpkey), cl_ntoh16(conf->p_prtn->pkey), conf->p_prtn->name); in ip_mgroup_pkey_ok()
149 static inline boolean_t ip_mgroup_rate_ok(struct part_conf *conf, in ip_mgroup_rate_ok() argument
154 if (group->flags.rate == conf->flags.rate) in ip_mgroup_rate_ok()
157 OSM_LOG(conf->p_log, OSM_LOG_ERROR, in ip_mgroup_rate_ok()
162 group->flags.rate, cl_ntoh16(conf->p_prtn->pkey), in ip_mgroup_rate_ok()
163 conf->p_prtn->name, conf->flags.rate); in ip_mgroup_rate_ok()
167 static inline boolean_t ip_mgroup_mtu_ok(struct part_conf *conf, in ip_mgroup_mtu_ok() argument
[all …]
/freebsd-src/crypto/openssl/include/openssl/
H A Dconf.h.in63 typedef int conf_init_func (CONF_IMODULE *md, const CONF *cnf);
74 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash);
75 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
78 LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
81 LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,
83 STACK_OF(CONF_VALUE) *CONF_get_section(LHASH_OF(CONF_VALUE) *conf,
85 char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf, const char *group,
87 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group,
89 void CONF_free(LHASH_OF(CONF_VALUE) *conf);
91 int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out);
[all …]
H A Dconf.h3 * Generated by Makefile from include/openssl/conf.h.in
100 typedef int conf_init_func (CONF_IMODULE *md, const CONF *cnf);
111 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash);
112 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
115 LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
118 LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,
120 STACK_OF(CONF_VALUE) *CONF_get_section(LHASH_OF(CONF_VALUE) *conf,
122 char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf, const char *group,
124 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group,
126 void CONF_free(LHASH_OF(CONF_VALUE) *conf);
[all …]
H A Dconftypes.h15 # include <openssl/conf.h>
23 CONF *(*create) (CONF_METHOD *meth);
24 int (*init) (CONF *conf);
25 int (*destroy) (CONF *conf);
26 int (*destroy_data) (CONF *conf);
27 int (*load_bio) (CONF *conf, BIO *bp, long *eline);
28 int (*dump) (const CONF *conf, BIO *bp);
29 int (*is_number) (const CONF *conf, char c);
30 int (*to_int) (const CONF *conf, char c);
31 int (*load) (CONF *conf, const char *name, long *eline);
/freebsd-src/sys/netgraph/
H A Dng_patch.c53 struct ng_patch_config *conf; member
71 const struct ng_patch_config *conf; in ng_patch_config_getlen() local
73 conf = (const struct ng_patch_config *)(buf - in ng_patch_config_getlen()
76 return (conf->count); in ng_patch_config_getlen()
209 struct ng_patch_config *conf, *newconf; in ng_patch_rcvmsg() local
222 if (privp->conf == NULL) in ng_patch_rcvmsg()
226 NG_PATCH_CONF_SIZE(privp->conf->count), M_WAITOK); in ng_patch_rcvmsg()
231 bcopy(privp->conf, resp->data, in ng_patch_rcvmsg()
232 NG_PATCH_CONF_SIZE(privp->conf->count)); in ng_patch_rcvmsg()
234 conf = (struct ng_patch_config *) resp->data; in ng_patch_rcvmsg()
[all …]
/freebsd-src/contrib/ntp/ntpd/
H A DMakefile.am86 man5_MANS= ntp.conf.5 ntp.keys.5
112 compsave.conf \
113 compsave.conf+ \
115 psl0save.conf \
116 psl0save.conf+ \
117 psl1save.conf \
118 psl1save.conf+ \
119 psl2save.conf \
120 psl2save.conf+ \
129 complete.conf.in \
[all …]
/freebsd-src/contrib/mandoc/
H A Dmanpath.c40 manconf_parse(struct manconf *conf, const char *file, char *pend, char *pbeg) in manconf_parse() argument
45 manpath_parseline(&conf->manpath, pbeg, 'm'); in manconf_parse()
49 manpath_parseline(&conf->manpath, pend, 'M'); in manconf_parse()
53 /* No MANPATH; use man.conf(5) only. */ in manconf_parse()
56 /* Prepend man.conf(5) to MANPATH. */ in manconf_parse()
60 /* Insert man.conf(5) into MANPATH. */ in manconf_parse()
64 /* Append man.conf(5) to MANPATH. */ in manconf_parse()
67 /* MANPATH overrides man.conf(5) completely. */ in manconf_parse()
72 manpath_parseline(&conf->manpath, pbeg, '\0'); in manconf_parse()
76 manconf_file(conf, fil in manconf_parse()
149 manconf_free(struct manconf * conf) manconf_free() argument
164 manconf_file(struct manconf * conf,const char * file) manconf_file() argument
223 manconf_output(struct manoutput * conf,const char * cp,int fromfile) manconf_output() argument
[all...]
/freebsd-src/usr.sbin/ctld/
H A Dctld.h43 #define DEFAULT_CONFIG_PATH "/etc/ctl.conf"
83 struct conf *ag_conf;
116 struct conf *pg_conf;
148 struct conf *p_conf;
169 struct conf *l_conf;
186 struct conf *t_conf;
199 struct conf *i_conf;
204 struct conf {
256 int parse_conf(struct conf *newconf, const char *path);
257 int uclparse_conf(struct conf *con
202 struct conf { global() struct
203 conf_pidfile_pathconf global() argument
211 conf_isns_periodconf global() argument
212 conf_isns_timeoutconf global() argument
213 conf_debugconf global() argument
214 conf_timeoutconf global() argument
215 conf_maxprocconf global() argument
218 conf_portal_idconf global() argument
220 conf_pidfhconf global() argument
222 conf_default_pg_definedconf global() argument
223 conf_default_ag_definedconf global() argument
224 conf_kernel_port_onconf global() argument
[all...]
/freebsd-src/crypto/openssl/doc/man3/
H A DNCONF_new_ex.pod11 #include <openssl/conf.h>
19 CONF *NCONF_new_ex(OSSL_LIB_CTX *libctx, CONF_METHOD *meth);
20 CONF *NCONF_new(CONF_METHOD *meth);
21 void NCONF_free(CONF *conf);
23 int NCONF_load(CONF *conf, const char *file, long *eline);
24 OSSL_LIB_CTX *NCONF_get0_libctx(const CONF *conf);
26 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *con
[all...]
/freebsd-src/tools/regression/geom/ConfCmp/
H A DMakefile22 ./${PROG} a1.conf a1.conf
23 ./${PROG} a1.conf a1a.conf
24 if ./${PROG} a1.conf a1b.conf > /dev/null 2>&1 ; then exit 1 ; fi
25 if ./${PROG} a1.conf a1c.conf > /dev/null 2>&1 ; then exit 1 ; fi
26 if ./${PROG} a1.conf a1d.conf > /de
[all...]
/freebsd-src/share/examples/jails/
H A DREADME5 $ cp VIMAGE /usr/src/sys/amd64/conf/
20 Sample 1: jail.conf(5)
23 $ cat jail.xxx.conf >> /etc/jail.conf
24 $ vi /etc/jail.conf
27 # NB: Assumes jail_list="" (meaning ``all jails in jail.conf'')
28 # NB: Assumes rc_conf_files="" (``below rc.conf(5) samples not used'')
31 Sample 2: rc.conf(5)
34 $ cp rc.conf.jails /etc/
35 $ vi /etc/rc.conf.jails
37 $ sysrc rc_conf_files+=/etc/rc.conf.jails
[all …]
/freebsd-src/share/man/man5/
H A DMakefile9 devfs.conf.5 \
26 libmap.conf.5 \
28 mailer.conf.5 \
29 make.conf.5 \
32 mount.conf.5 \
34 nsmb.conf.5 \
35 nsswitch.conf.5 \
39 periodic.conf.5 \
44 rc.conf.5 \
45 rctl.conf
[all...]
/freebsd-src/crypto/openssl/crypto/ts/
H A Dts_conf.c123 const char *TS_CONF_get_tsa_section(CONF *conf, const char *section) in TS_CONF_get_tsa_section() argument
126 section = NCONF_get_string(conf, BASE_SECTION, ENV_DEFAULT_TSA); in TS_CONF_get_tsa_section()
133 int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb, in TS_CONF_set_serial() argument
137 char *serial = NCONF_get_string(conf, section, ENV_SERIAL); in TS_CONF_set_serial()
151 int TS_CONF_set_crypto_device(CONF *conf, const char *section, in TS_CONF_set_crypto_device() argument
157 device = NCONF_get_string(conf, section, ENV_CRYPTO_DEVICE); in TS_CONF_set_crypto_device()
194 int TS_CONF_set_signer_cert(CONF *conf, const char *section, in TS_CONF_set_signer_cert() argument
201 cert = NCONF_get_string(conf, section, ENV_SIGNER_CERT); in TS_CONF_set_signer_cert()
218 int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs, in TS_CONF_set_certs() argument
226 if ((certs = NCONF_get_string(conf, section, ENV_CERTS)) == NULL) in TS_CONF_set_certs()
[all …]
/freebsd-src/sys/contrib/alpine-hal/
H A Dal_hal_udma_config.c301 struct al_udma_m2s_pkt_len_conf *conf) in al_udma_m2s_packet_size_cfg_set() argument
308 if (conf->encode_64k_as_zero == AL_TRUE) in al_udma_m2s_packet_size_cfg_set()
311 if (conf->max_pkt_size > max_supported_size) { in al_udma_m2s_packet_size_cfg_set()
314 conf->max_pkt_size, max_supported_size); in al_udma_m2s_packet_size_cfg_set()
319 if (conf->encode_64k_as_zero == AL_TRUE) in al_udma_m2s_packet_size_cfg_set()
325 reg |= conf->max_pkt_size; in al_udma_m2s_packet_size_cfg_set()
345 struct al_udma_m2s_desc_pref_conf *conf) in al_udma_m2s_pref_set() argument
351 reg |= conf->desc_fifo_depth; in al_udma_m2s_pref_set()
356 if (conf->sch_mode == SRR) in al_udma_m2s_pref_set()
358 else if (conf->sch_mode == STRICT) in al_udma_m2s_pref_set()
[all …]

12345678910>>...142