/freebsd/crypto/openssl/crypto/conf/ |
H A D | conf_sap.c | 34 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 D | conf_lib.c | 431 int OPENSSL_INIT_set_config_filename(OPENSSL_INIT_SETTINGS *settings, in OPENSSL_INIT_set_config_filename() argument 442 free(settings->filename); in OPENSSL_INIT_set_config_filename() 443 settings->filename = newfilename; in OPENSSL_INIT_set_config_filename() 448 void OPENSSL_INIT_set_config_file_flags(OPENSSL_INIT_SETTINGS *settings, in OPENSSL_INIT_set_config_file_flags() argument 451 settings->flags = flags; in OPENSSL_INIT_set_config_file_flags() 460 int OPENSSL_INIT_set_config_appname(OPENSSL_INIT_SETTINGS *settings, in OPENSSL_INIT_set_config_appname() argument 471 free(settings->appname); in OPENSSL_INIT_set_config_appname() 472 settings->appname = newappname; in OPENSSL_INIT_set_config_appname() 478 void OPENSSL_INIT_free(OPENSSL_INIT_SETTINGS *settings) in OPENSSL_INIT_free() argument 480 if (settings == NULL) in OPENSSL_INIT_free() [all …]
|
/freebsd/usr.sbin/bhyve/ |
H A D | bhyve_config.5 | 35 per-device settings. 101 .Sh GLOBAL SETTINGS 102 .Ss Architecture Neutral Settings 229 .Ss x86-Specific Settings 258 .Sh DEVICE SETTINGS 259 Device settings are stored under a device node. 261 .Ss PCI Device Settings 315 .Ss USB Device Settings 318 Each USB device stores its settings in a node named 333 .Ss Block Device Settings [all …]
|
/freebsd/sys/dev/sound/pci/ |
H A D | hdspe.c | 250 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 279 /* Extract current input level from settings register. */ in hdspe_sysctl_input_level() 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() 301 /* Set input level in settings register. */ in hdspe_sysctl_input_level() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectSettings.cpp | 30 : CommandObjectRaw(interpreter, "settings set", in CommandObjectSettingsSet() 62 (lldb) settings set target.run-args value1 value2 value3 in CommandObjectSettingsSet() 63 (lldb) settings set target.env-vars MYPATH=~/.:/usr/bin SOME_ENV_VAR=12345 in CommandObjectSettingsSet() 65 (lldb) settings show target.run-args in CommandObjectSettingsSet() 69 (lldb) settings show target.env-vars in CommandObjectSettingsSet() 76 the end), use one of the other settings sub-commands: append, replace, \ in CommandObjectSettingsSet() 184 result.AppendError("'settings set' takes more arguments"); in DoExecute() 191 "'settings set' command requires a valid variable name"); in DoExecute() 219 // settings set target.process.python-os-plugin-path) and cause a crash in DoExecute() 244 : CommandObjectParsed(interpreter, "settings show", in CommandObjectSettingsShow() [all …]
|
/freebsd/contrib/sqlite3/autosetup/ |
H A D | cc.tcl | 330 # Adds the given settings to $::autosetup(ccsettings) and 331 # returns the old settings. 333 proc cc-add-settings {settings} { argument 334 if {[llength $settings] % 2} { 335 autosetup-error "settings list is missing a value: $settings" 338 set prev [cc-get-settings] 345 foreach {name value} $settings { 371 cc-store-settings [array get new] 376 proc cc-store-settings {new} { 380 proc cc-get-settings {} { [all …]
|
/freebsd/share/man/man4/ |
H A D | cpufreq.4 | 58 It combines multiple drivers offering different settings into a single 64 that it should switch settings when the AC line state changes via 67 These settings may be overridden by kernel drivers requesting alternate 68 settings. 98 Currently available settings for the driver (frequency/power usage). 100 This is helpful for understanding which settings are offered by which 210 whether to override previous settings while activating this level. 233 their individual settings through the 249 method returns an array of currently available settings, each of type 266 contains the number of settings that can be returned. [all …]
|
/freebsd/sys/dev/ath/ath_hal/ar9002/ |
H A D | ar9285_diversity.c | 48 * settings are fixed and the antenna diversity scanning routine 56 * software diversity combining settings will be lost and won't 62 ar9285SetAntennaSwitch(struct ath_hal *ah, HAL_ANT_SETTING settings) in ar9285SetAntennaSwitch() argument 75 /* Store settings */ in ar9285SetAntennaSwitch() 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() [all …]
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | SSL_new.3 | 77 data for a TLS/SSL connection. The new structure inherits the settings 79 options, verification settings, timeout settings. An \fBSSL\fR structure is 90 the settings in \fIs\fR into the new \fBSSL\fR object. 100 The subset of settings in \fIs\fR that are duplicated are: 104 .IP "any tmp_dh settings set via \fBSSL_set_tmp_dh\fR\|(3), \fBSSL_set_tmp_dh_callback\fR\|(3), or … 105 .IX Item "any tmp_dh settings set via SSL_set_tmp_dh, SSL_set_tmp_dh_callback, or SSL_set_dh_auto" 110 .IP "any DANE settings" 4 111 .IX Item "any DANE settings" 116 .IP "any minimum or maximum protocol settings set via \fBSSL_set_min_proto_version\fR\|(3) or \fBSS… 117 .IX Item "any minimum or maximum protocol settings set via SSL_set_min_proto_version or SSL_set_max… [all …]
|
H A D | SSL_clear.3 | 74 Reset \fBssl\fR to allow another connection. All settings (method, ciphers, 79 settings are kept, a side effect is the handling of the current SSL session. 87 settings corresponding. This explicitly means, that e.g. the special method 100 reset operation however keeps several settings of the last sessions 101 (some of these settings were made automatically during the last 103 same peer that shares these settings, and may fail if that peer 104 changes its settings between connections. Use the sequence
|
/freebsd/tools/build/options/ |
H A D | makeman | 47 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 106 # usage: show { settings | with | without } ... 113 settings) 236 may be necessary if the system-wide settings are not suitable [all …]
|
/freebsd/stand/defaults/ |
H A D | loader.conf.5 | 46 some settings are treated in a special fashion. 48 behavior of some settings is defined by the setting's suffix; 61 All settings have the following format: 65 Unless it belongs to one of the classes of settings that receive special 69 The settings that receive special 71 Settings beginning with 75 All such settings sharing a common 295 .Sh DEFAULT SETTINGS 298 default settings can be ignored. 306 can always be used to override settings from files found in [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_new.pod | 18 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
|
H A D | SSL_clear.pod | 15 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
|
/freebsd/usr.bin/limits/ |
H A D | limits.1 | 65 This usage determines values of resource settings according to 69 By default, this will output the current kernel resource settings 75 options, you may also display the current resource settings modified 81 This usage determines values of resource settings according to 107 resource limit settings, and provides the benefit of allowing 109 central database of settings in the login class database. 148 If specific limits settings follow this switch, only soft limits are 158 If specific limits settings follow this switch, only hard limits are 171 If specific limits settings follow this switch, both soft and hard 342 Force all resource settings to be displayed even if [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | ti-8x | 29 >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 …]
|
/freebsd/usr.sbin/bluetooth/hccontrol/ |
H A D | link_policy.c | 194 fprintf(stdout, "Link policy settings: %#x\n", le16toh(rp.settings)); in hci_read_link_policy_settings() 217 /* link policy settings */ in hci_write_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() 271 "handle. The link policy settings parameter determines the behavior of the\n" \ 276 "request itself, depending on the value of the link policy settings parameter\n"\ 283 "write_link_policy_settings <connection_handle> <settings>", 285 "handle. The link policy settings parameter determines the behavior of the\n" \ 290 "request itself, depending on the value of the link policy settings parameter\n"\ 293 "be specified for the link policy settings parameter by performing a bitwise\n"\ [all …]
|
/freebsd/sys/dev/ath/ath_hal/ar5211/ |
H A D | ar5211reg.h | 111 #define AR_Q0_MISC 0x09c0 /* Miscellaneous QCU settings */ 112 #define AR_Q1_MISC 0x09c4 /* Miscellaneous QCU settings */ 113 #define AR_Q2_MISC 0x09c8 /* Miscellaneous QCU settings */ 114 #define AR_Q3_MISC 0x09cc /* Miscellaneous QCU settings */ 115 #define AR_Q4_MISC 0x09d0 /* Miscellaneous QCU settings */ 116 #define AR_Q5_MISC 0x09d4 /* Miscellaneous QCU settings */ 117 #define AR_Q6_MISC 0x09d8 /* Miscellaneous QCU settings */ 118 #define AR_Q7_MISC 0x09dc /* Miscellaneous QCU settings */ 119 #define AR_Q8_MISC 0x09e0 /* Miscellaneous QCU settings */ 120 #define AR_Q9_MISC 0x09e4 /* Miscellaneous QCU settings */ [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/soc/xilinx/ |
H A D | xlnx,vcu-settings.yaml | 4 $id: http://devicetree.org/schemas/soc/xilinx/xlnx,vcu-settings.yaml# 7 title: Xilinx VCU Settings 13 The Xilinx VCU Settings provides information about the configuration of the 19 - const: xlnx,vcu-settings 38 compatible = "xlnx,vcu-settings", "syscon";
|
/freebsd/sys/dev/ath/ath_hal/ar5212/ |
H A D | ar5212reg.h | 128 #define AR_Q0_MISC 0x09c0 /* MAC Miscellaneous QCU settings */ 129 #define AR_Q1_MISC 0x09c4 /* MAC Miscellaneous QCU settings */ 130 #define AR_Q2_MISC 0x09c8 /* MAC Miscellaneous QCU settings */ 131 #define AR_Q3_MISC 0x09cc /* MAC Miscellaneous QCU settings */ 132 #define AR_Q4_MISC 0x09d0 /* MAC Miscellaneous QCU settings */ 133 #define AR_Q5_MISC 0x09d4 /* MAC Miscellaneous QCU settings */ 134 #define AR_Q6_MISC 0x09d8 /* MAC Miscellaneous QCU settings */ 135 #define AR_Q7_MISC 0x09dc /* MAC Miscellaneous QCU settings */ 136 #define AR_Q8_MISC 0x09e0 /* MAC Miscellaneous QCU settings */ 137 #define AR_Q9_MISC 0x09e4 /* MAC Miscellaneous QCU settings */ [all …]
|
/freebsd/sys/dev/ath/ath_hal/ |
H A D | ah_eeprom_v1.h | 29 * PCI/Cardbus default configuration settings 40 * settings, and phy-related configuration settings. 48 #define AR_EEPROM_ATHEROS_MAX 64 /* 64x2=128 bytes of EEPROM settings */ 51 #define AR_EEPROM_ATHEROS_TP_SETTINGS 0x09 /* Transmit power settings */ 70 * Transmit power and channel calibration settings. 87 uint16_t ee_antenna; /* Antenna Settings */
|
/freebsd/crypto/krb5/src/windows/installer/wix/ |
H A D | msi-deployment-guide.txt | 22 3. Network Identity Manager Settings 23 3.1 Common Settings for NetIDMgr 24 3.1.1 General Settings 25 3.1.2 Common Plug-in Settings 26 3.1.3 Settings for the Kerberos 5 Credentials Provider Plug-in 27 3.1.4 Settings for the kerberos 4 Credentials Provider Plug-in 43 many settings can be deployed via transforms, in an Active 44 Directory environment it is advisable to deploy registry settings 121 The logic necessary to implement all of the settings described in 124 value. Some settings may require modifying existing registry [all …]
|
/freebsd/crypto/krb5/src/windows/leash/htmlhelp/html/ |
H A D | Ticket_Settings.htm | 11 <title>Ticket Settings</title></head> 14 <a name="top"><h1>Ticket Settings and Flags</h1></a> 16 the ticket's settings and flags in the Get Ticket window. You cannot 17 change settings or flags on an existing ticket.</p> 31 <li> <a href="#choose"> Choose settings and flags for new tickets </a> </li> 32 <li><a href="#view">View settings and flags for existing tickets</a></li> 41 <h2><a name="choose">Choose Settings and Flags</a></h2> 43 To adjust settings for a new ticket:</p> 46 <li>In the Get Ticket window, click the Show Advanced button if the settings are not already visib… 52 <h2><a name="view">View Settings and Flags</a></h2> [all …]
|
/freebsd/usr.sbin/fdcontrol/ |
H A D | fdcontrol.8 | 48 Commands are implemented to query the current device density settings 51 density settings. 53 settings are restricted to the superuser (by the device driver), while 86 will report the device's density settings in a form that is suitable 93 density settings in kilobytes. 98 density settings. 104 commonly used device density settings for that drive, and if a match 105 is found, those settings will be used. 256 Inquiry about the density settings:
|
/freebsd/share/man/man5/ |
H A D | sysctl.conf.5 | 35 settings for the kernel. 56 additional module-specific settings can be applied 72 Initial settings for 75 Machine-specific settings for sites with a common 78 Module specific settings for kernel modules loaded via
|