Home
last modified time | relevance | path

Searched refs:settings (Results 1 – 25 of 534) sorted by relevance

12345678910>>...22

/src/crypto/openssl/crypto/conf/
H A Dconf_sap.c34 OPENSSL_INIT_SETTINGS settings; in OPENSSL_config() local
36 memset(&settings, 0, sizeof(settings)); in OPENSSL_config()
38 settings.appname = strdup(appname); in OPENSSL_config()
39 settings.flags = DEFAULT_CONF_MFLAGS; in OPENSSL_config()
40 OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, &settings); in OPENSSL_config()
42 free(settings.appname); in OPENSSL_config()
46 int ossl_config_int(const OPENSSL_INIT_SETTINGS *settings) in ossl_config_int() argument
59 filename = settings ? settings->filename : NULL; in ossl_config_int()
60 appname = settings ? settings->appname : NULL; in ossl_config_int()
61 flags = settings ? settings->flags : DEFAULT_CONF_MFLAGS; in ossl_config_int()
H A Dconf_lib.c430 int OPENSSL_INIT_set_config_filename(OPENSSL_INIT_SETTINGS *settings, in OPENSSL_INIT_set_config_filename() argument
441 free(settings->filename); in OPENSSL_INIT_set_config_filename()
442 settings->filename = newfilename; in OPENSSL_INIT_set_config_filename()
447 void OPENSSL_INIT_set_config_file_flags(OPENSSL_INIT_SETTINGS *settings, in OPENSSL_INIT_set_config_file_flags() argument
450 settings->flags = flags; in OPENSSL_INIT_set_config_file_flags()
459 int OPENSSL_INIT_set_config_appname(OPENSSL_INIT_SETTINGS *settings, in OPENSSL_INIT_set_config_appname() argument
470 free(settings->appname); in OPENSSL_INIT_set_config_appname()
471 settings->appname = newappname; in OPENSSL_INIT_set_config_appname()
477 void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *settings) in OPENSSL_INIT_free() argument
479 if (settings == NULL) in OPENSSL_INIT_free()
[all …]
/src/sys/contrib/dev/broadcom/brcm80211/brcmfmac/
H A Dof.c18 struct brcmf_mp_device *settings) in brcmf_of_get_country_codes() argument
31 settings->trivial_ccode_map = in brcmf_of_get_country_codes()
64 settings->country_codes = cc; in brcmf_of_get_country_codes()
70 struct brcmf_mp_device *settings) in brcmf_of_probe() argument
72 struct brcmfmac_sdio_pd *sdio = &settings->bus.sdio; in brcmf_of_probe()
87 settings->board_type = prop; in brcmf_of_probe()
90 settings->antenna_sku = prop; in brcmf_of_probe()
95 prop = of_get_property(np, "brcm,cal-blob", &settings->cal_size); in brcmf_of_probe()
96 if (prop && settings->cal_size) in brcmf_of_probe()
97 settings->cal_blob = prop; in brcmf_of_probe()
[all …]
H A Dcommon.c266 struct brcmf_mp_device *settings = drvr->settings; in brcmf_c_process_cal_blob() local
271 if (!settings->cal_blob || !settings->cal_size) in brcmf_c_process_cal_blob()
275 err = brcmf_c_download_blob(ifp, settings->cal_blob, settings->cal_size, in brcmf_c_process_cal_blob()
552 struct brcmf_mp_device *settings; in brcmf_get_module_param() local
559 settings = kzalloc(sizeof(*settings), GFP_ATOMIC); in brcmf_get_module_param()
560 if (!settings) in brcmf_get_module_param()
564 settings->p2p_enable = !!brcmf_p2p_enable; in brcmf_get_module_param()
565 settings->feature_disable = brcmf_feature_disable; in brcmf_get_module_param()
566 settings->fcmode = brcmf_fcmode; in brcmf_get_module_param()
567 settings->roamoff = !!brcmf_roamoff; in brcmf_get_module_param()
[all …]
H A Dcommon.h76 void brcmf_dmi_probe(struct brcmf_mp_device *settings, u32 chip, u32 chiprev);
79 brcmf_dmi_probe(struct brcmf_mp_device *settings, u32 chip, u32 chiprev) {} in brcmf_dmi_probe() argument
84 struct brcmf_mp_device *settings);
88 struct brcmf_mp_device *settings) {} in brcmf_acpi_probe() argument
H A Dacpi.c12 struct brcmf_mp_device *settings) in brcmf_acpi_probe() argument
25 settings->board_type = devm_kasprintf(dev, GFP_KERNEL, in brcmf_acpi_probe()
44 settings->antenna_sku = antenna_sku; in brcmf_acpi_probe()
H A Dof.h7 struct brcmf_mp_device *settings);
10 struct brcmf_mp_device *settings) in brcmf_of_probe() argument
H A Ddmi.c200 void brcmf_dmi_probe(struct brcmf_mp_device *settings, u32 chip, u32 chiprev) in brcmf_dmi_probe() argument
216 settings->board_type = data->board_type; in brcmf_dmi_probe()
227 settings->board_type = dmi_board_type; in brcmf_dmi_probe()
/src/tools/build/options/
H A Dmakeman47 rm -f $t/settings
84 done > $t/settings.target
85 if [ -r $t/settings ] ; then
86 join -t\ $t/settings $t/settings.target > $t/settings.new
87 mv $t/settings.new $t/settings
89 mv $t/settings.target $t/settings
102 done < $t/settings
113 settings)
321 show settings SRC_ENV_CONF=$t/src.conf -D${opt} | sort > $t/config_WITH_ALL_${opt}
325 show settings SRC_ENV_CONF=$t/src.conf -D${opt} | sort > $t/config_WITHOUT_ALL_${opt}
[all …]
/src/sys/dev/sound/pci/
H A Dhdspe.c250 hdspe_settings_input_level(uint32_t settings) in hdspe_settings_input_level() argument
252 switch (settings & HDSPE_INPUT_LEVEL_MASK) { in hdspe_settings_input_level()
271 uint32_t settings; in hdspe_sysctl_input_level() local
280 settings = sc->settings_register & HDSPE_INPUT_LEVEL_MASK; in hdspe_sysctl_input_level()
281 label = hdspe_settings_input_level(settings); in hdspe_sysctl_input_level()
293 settings = HDSPE_INPUT_LEVEL_LOWGAIN; in hdspe_sysctl_input_level()
296 settings = HDSPE_INPUT_LEVEL_PLUS4DBU; in hdspe_sysctl_input_level()
299 settings = HDSPE_INPUT_LEVEL_MINUS10DBV; in hdspe_sysctl_input_level()
302 settings &= HDSPE_INPUT_LEVEL_MASK; in hdspe_sysctl_input_level()
303 if (settings != (sc->settings_register & HDSPE_INPUT_LEVEL_MASK)) { in hdspe_sysctl_input_level()
[all …]
/src/sys/dev/ath/ath_hal/ar9002/
H A Dar9285_diversity.c62 ar9285SetAntennaSwitch(struct ath_hal *ah, HAL_ANT_SETTING settings) in ar9285SetAntennaSwitch() argument
76 AH5212(ah)->ah_antControl = settings; in ar9285SetAntennaSwitch()
77 AH5212(ah)->ah_diversity = (settings == HAL_ANT_VARIABLE); in ar9285SetAntennaSwitch()
90 if (settings == HAL_ANT_VARIABLE) in ar9285SetAntennaSwitch()
93 if (settings == HAL_ANT_VARIABLE) { in ar9285SetAntennaSwitch()
101 if (settings == HAL_ANT_FIXED_A) { in ar9285SetAntennaSwitch()
110 else if (settings == HAL_ANT_FIXED_B) { in ar9285SetAntennaSwitch()
125 if (settings == HAL_ANT_VARIABLE) in ar9285SetAntennaSwitch()
/src/contrib/file/magic/Magdir/
H A Dti-8x29 >0x00003B byte 0x0F (window settings)
45 >0x00003B byte 0x0B (window settings)
46 >0x00003B byte 0x0C (window settings)
63 >0x00003B byte 0x0B (window settings)
64 >0x00003B byte 0x0C (window settings)
82 >0x00003B byte 0x0F (window settings)
112 >0x00003B byte 0x17 (window settings)
113 >0x00003B byte 0x18 (window settings)
114 >0x00003B byte 0x19 (window settings)
115 >0x00003B byte 0x1A (window settings)
[all …]
/src/crypto/openssl/doc/man3/
H A DSSL_clear.pod15 Reset B<ssl> to allow another connection. All settings (method, ciphers,
21 settings are kept, a side effect is the handling of the current SSL session.
29 settings corresponding. This explicitly means, that e.g. the special method
43 reset operation however keeps several settings of the last sessions
44 (some of these settings were made automatically during the last
46 same peer that shares these settings, and may fail if that peer
47 changes its settings between connections. Use the sequence
H A DSSL_new.pod18 data for a TLS/SSL connection. The new structure inherits the settings
20 options, verification settings, timeout settings. An B<SSL> structure is
31 the settings in I<s> into the new B<SSL> object.
41 The subset of settings in I<s> that are duplicated are:
47 =item any tmp_dh settings set via L<SSL_set_tmp_dh(3)>,
54 =item any DANE settings
60 =item any minimum or maximum protocol settings set via
87 =item any security level settings or callbacks
/src/usr.sbin/bluetooth/hccontrol/
H A Dlink_policy.c194 fprintf(stdout, "Link policy settings: %#x\n", le16toh(rp.settings)); in hci_read_link_policy_settings()
221 cp.settings = (uint16_t) (n & 0x0ffff); in hci_write_link_policy_settings()
222 cp.settings = htole16(cp.settings); in hci_write_link_policy_settings()
/src/sys/contrib/device-tree/Bindings/mfd/
H A Dda9063.txt18 modified to match the chip's OTP settings).
24 - regulators : This node defines the settings for the LDOs and BUCKs.
49 - rtc : This node defines settings for the Real-Time Clock associated with
54 - onkey : This node defines the OnKey settings for controlling the key
66 - watchdog : This node defines settings for the Watchdog timer associated
/src/contrib/sqlite3/autosetup/
H A Dcc.tcl333 proc cc-add-settings {settings} { argument
334 if {[llength $settings] % 2} {
335 autosetup-error "settings list is missing a value: $settings"
345 foreach {name value} $settings {
428 proc cc-with {settings args} {
430 cc-add-settings $settings
434 set save [cc-add-settings $settings]
/src/sys/contrib/device-tree/src/arm/intel/ixp/
H A Dintel-ixp42x-arcom-vulcan.dts54 /* Expansion bus settings */
70 /* Expansion bus settings */
89 /* Expansion bus settings */
101 /* Expansion bus settings */
108 /* Expansion bus settings */
/src/contrib/wpa/src/ap/
H A Dhostapd.c4345 struct csa_settings *settings) in hostapd_fill_csa_settings() argument
4359 switch (settings->freq_params.bandwidth) { in hostapd_fill_csa_settings()
4361 if (settings->freq_params.center_freq2) in hostapd_fill_csa_settings()
4378 settings->freq_params.freq, in hostapd_fill_csa_settings()
4379 settings->freq_params.sec_channel_offset, in hostapd_fill_csa_settings()
4385 settings->freq_params.freq, in hostapd_fill_csa_settings()
4386 settings->freq_params.sec_channel_offset, in hostapd_fill_csa_settings()
4387 settings->freq_params.vht_enabled, in hostapd_fill_csa_settings()
4388 settings->freq_params.he_enabled, in hostapd_fill_csa_settings()
4389 settings->freq_params.eht_enabled); in hostapd_fill_csa_settings()
[all …]
/src/crypto/openssl/ssl/
H A Dssl_init.c46 int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings) in OPENSSL_init_ssl() argument
70 if (!OPENSSL_init_crypto(opts, settings)) in OPENSSL_init_ssl()
/src/contrib/ncurses/progs/
H A Dtput.c155 tput_cmd(int fd, TTY * settings, int argc, char **argv, int *used) in tput_cmd() argument
167 TTY oldmode = *settings; in tput_cmd()
175 reset_tty_settings(fd, settings, FALSE); in tput_cmd()
191 set_control_chars(settings, terasechar, intrchar, tkillchar); in tput_cmd()
192 set_conversions(settings); in tput_cmd()
198 update_tty_settings(&oldmode, settings); in tput_cmd()
/src/crypto/openssl/demos/http3/
H A Dossl-nghttp3.h50 const nghttp3_settings *settings,
66 const nghttp3_settings *settings,
/src/bin/sh/tests/builtins/
H A Dset1.06 settings=$(set +o)
21 eval "$settings"
/src/sys/contrib/device-tree/Bindings/pinctrl/
H A Dfsl,imx7d-pinctrl.txt7 mux and pad control settings, it shares the input select register from main
8 iomuxc controller for daisy chain settings, the fsl,input-sel property extends
36 Reference Manual for detailed CONFIG settings.
39 daisy chain settings.
/src/crypto/openssl/doc/man1/
H A Dopenssl-version.pod.in67 ENGINESDIR settings.
71 MODULESDIR settings.
75 The random number generator source settings.
79 The OpenSSL CPU settings info.

12345678910>>...22