Home
last modified time | relevance | path

Searched refs:setting (Results 1 – 25 of 767) sorted by relevance

12345678910>>...31

/openbsd-src/usr.sbin/npppd/npppd/
H A Dradius_req.c68 radius_req_setting *setting; member
115 * setting->server[setting->curr_server].sock is not initialized, address
119 radius_prepare_nas_address(radius_req_setting *setting, in radius_prepare_nas_address() argument
128 RADIUS_REQ_ASSERT(setting != NULL); in radius_prepare_nas_address()
130 af = setting->server[setting->curr_server].peer.sin6.sin6_family; in radius_prepare_nas_address()
133 sin4 = &setting->server[setting->curr_server].sock.sin4; in radius_prepare_nas_address()
134 sin6 = &setting in radius_prepare_nas_address()
179 radius_req_setting *setting; radius_request_can_failover() local
222 radius_req_setting *setting; radius_prepare_socket() local
266 radius_prepare(radius_req_setting * setting,void * context,RADIUS_REQUEST_CTX * pctx,radius_response response_fn) radius_prepare() argument
542 radius_req_setting_has_server(radius_req_setting * setting) radius_req_setting_has_server() argument
548 radius_req_setting_destroy(radius_req_setting * setting) radius_req_setting_destroy() argument
557 radius_req_setting_ref(radius_req_setting * setting) radius_req_setting_ref() argument
563 radius_req_setting_unref(radius_req_setting * setting) radius_req_setting_unref() argument
[all...]
/openbsd-src/lib/libc/crypt/
H A Dcrypt.c8 crypt(const char *key, const char *setting) in crypt() argument
10 if (setting[0] == '$') { in crypt()
11 switch (setting[1]) { in crypt()
13 return bcrypt(key, setting); in crypt()
/openbsd-src/gnu/gcc/gcc/
H A Dintegrate.c165 set_block_abstract_flags (tree stmt, int setting) in set_block_abstract_flags() argument
170 BLOCK_ABSTRACT (stmt) = setting; in set_block_abstract_flags()
175 set_decl_abstract_flags (local_decl, setting); in set_block_abstract_flags()
180 set_block_abstract_flags (subblock, setting); in set_block_abstract_flags()
190 set_decl_abstract_flags (tree decl, int setting) in set_decl_abstract_flags() argument
192 DECL_ABSTRACT (decl) = setting; in set_decl_abstract_flags()
198 DECL_ABSTRACT (arg) = setting; in set_decl_abstract_flags()
201 set_block_abstract_flags (DECL_INITIAL (decl), setting); in set_decl_abstract_flags()
H A Dopts.c1094 set_Wextra (int setting) in set_Wextra() argument
1096 extra_warnings = setting; in set_Wextra()
1097 warn_unused_value = setting; in set_Wextra()
1098 warn_unused_parameter = (setting && maybe_warn_unused_parameter); in set_Wextra()
1103 if (setting == 0) in set_Wextra()
1111 set_Wunused (int setting) in set_Wunused() argument
1113 warn_unused_function = setting; in set_Wunused()
1114 warn_unused_label = setting; in set_Wunused()
1120 maybe_warn_unused_parameter = setting; in set_Wunused()
1121 warn_unused_parameter = (setting && extra_warnings); in set_Wunused()
[all …]
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Ddisassembly_mode.py17 def get_string_value(self, setting): argument
19 self.interp.HandleCommand("settings show " + setting, result)
23 def set_value(self, setting, value): argument
25 self.interp.HandleCommand("settings set " + setting + " " + value, result)
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DUserSettingsController.cpp113 bool Properties::IsSettingExperimental(llvm::StringRef setting) { in IsSettingExperimental() argument
114 if (setting.empty()) in IsSettingExperimental()
118 size_t dot_pos = setting.find_first_of('.'); in IsSettingExperimental()
119 return setting.take_front(dot_pos) == experimental; in IsSettingExperimental()
/openbsd-src/sys/dev/fdt/
H A Dpinctrl.c109 pinctrl_set2(int node, char *setting, uint32_t val) in pinctrl_set2() argument
113 if (OF_getpropintarray(node, setting, values, sizeof(values)) != in pinctrl_set2()
123 pinctrl_set4(int node, char *setting, uint32_t val) in pinctrl_set4() argument
127 if (OF_getpropintarray(node, setting, values, sizeof(values)) != in pinctrl_set4()
/openbsd-src/gnu/usr.bin/perl/cpan/Math-BigInt/t/
H A Dconfig.t120 # Try setting the new value.
130 # Verify that setting it in class $class didn't affect other classes.
136 qq|$other->config("$key") isn't affected by setting | .
152 # Verify that setting via a hash doesn't modify the hash.
186 # Special testing of setting both accuracy and precision simultaneouly with
/openbsd-src/gnu/usr.bin/gcc/gcc/config/sh/
H A Dt-netbsd-sh58 # has support for setting/setting the rounding mode, exception
H A Dt-netbsd9 # has support for setting/setting the rounding mode, exception
/openbsd-src/gnu/gcc/gcc/config/sh/
H A Dt-netbsd9 # has support for setting/setting the rounding mode, exception
/openbsd-src/gnu/llvm/llvm/docs/
H A DPackaging.rst31 by setting ``DISABLE_ASSERTIONS=0|1`` in ``make``'s environment. This
32 defaults to enabled regardless of the optimization setting, but it slows
36 Builds LLVM with ``-g``. Also available by setting ``DEBUG_SYMBOLS=0|1`` in
42 debug symbols. Also available by setting ``ENABLE_OPTIMIZED=0|1`` in
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Ddecorators.py181 setting=None): argument
219 skip_for_setting = (setting is None) or (
220 setting in configuration.settings)
236 (setting, skip_for_setting, "setting")]
281 setting=None): argument
291 setting=setting)
308 setting=None): argument
318 setting=setting)
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ExtUtils/
H A DParseXS.pm1467 my ($self, $setting) = @_;
1472 trim_whitespace($setting);
1473 $setting = uc($setting);
1482 $self->death("Error: FALLBACK: TRUE/FALSE/UNDEF") unless exists $map{$setting};
1484 $self->{Fallback}->{$self->{Package}} = $map{$setting};
1508 my ($self, $setting) = @_;
1510 trim_whitespace($setting);
1514 unless $setting =~ /^(ENABLE|DISABLE)/i;
1557 my ($self, $setting) = @_;
1562 trim_whitespace($setting);
[all …]
/openbsd-src/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-env/
H A Dmixed.txt1 # Check for setting and removing one environment variable
6 # Check for setting/unsetting multiple environment variables
/openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/t/
H A Dcore_bools.t22 is $json->get_core_bools, !!1, 'core_bools true when setting bools to core bools';
26 is $json->get_core_bools, !!0, 'core_bools false when setting bools to anything other than correct …
36 is $json->get_core_bools, !!1, 'core_bools true when setting core_bools';
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVInstrFormatsC.td49 // is responsible for setting the appropriate bits in the Inst field.
65 // is responsible for setting the appropriate bits in the Inst field.
91 // is responsible for setting the appropriate bits in the Inst field.
106 // is responsible for setting the appropriate bits in the Inst field.
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTargetProperties.td36 Desc<"Skip function prologues when setting breakpoints by name.">;
93 Desc<"Consult the platform module avoid list when setting non-module specific breakpoints.">;
136setting breakpoints is slow, then you can change this setting to headers. This setting allows you …
162setting helps users control how much information gets loaded when loading modules from memory.'com…
165 … the host system supports executable specific crash log strings and this setting is set to true.">;
245 …Desc<"If true, stepping operations will run all threads. This is equivalent to setting the run-mo…
/openbsd-src/gnu/usr.bin/perl/cpan/Memoize/t/
H A Dexpmod.t12 is $h{foo}, 1, 'setting and getting a plain scalar value works';
20 is ref($h{bar}), ref($bar), 'setting and getting a reference value works';
/openbsd-src/regress/sys/netinet/mcast/
H A DREADME4 setting up the socket, the receiver forks and execs the sender to
24 mcsend ... after setting up receive, fork and exec send command
/openbsd-src/gnu/usr.bin/cvs/doc/
H A Dcvs.info-960 * .bashrc, setting CVSROOT in: Specifying a repository.
61 * .cshrc, setting CVSROOT in: Specifying a repository.
63 * .profile, setting CVSROOT in: Specifying a repository.
64 * .tcshrc, setting CVSROOT in: Specifying a repository.
66 * :ext:, setting up: Connecting via rsh.
68 * :fork:, setting up: Connecting via fork.
69 * :gserver:, setting up: GSSAPI authenticated.
70 * :kserver:, setting up: Kerberos authenticated.
71 * :local:, setting up: Repository.
72 * :pserver:, setting up: Password authentication client.
[all …]
/openbsd-src/sys/dev/pci/drm/amd/pm/powerplay/smumgr/
H A Dfiji_smumgr.c1764 smu_data->smc_state_table.CKS_LOOKUPTable.CKS_LOOKUPTableEntry[0].setting = in fiji_populate_clock_stretcher_data_table()
1766 smu_data->smc_state_table.CKS_LOOKUPTable.CKS_LOOKUPTableEntry[0].setting |= in fiji_populate_clock_stretcher_data_table()
1803 ClockStretcherDataTableEntry[i].setting |= cks_setting << (j * 2); in fiji_populate_clock_stretcher_data_table()
1807 ClockStretcherDataTableEntry[i].setting); in fiji_populate_clock_stretcher_data_table()
2554 struct profile_mode_setting *setting; in fiji_update_dpm_settings() local
2570 setting = (struct profile_mode_setting *)profile_setting; in fiji_update_dpm_settings()
2572 if (setting->bupdate_sclk) { in fiji_update_dpm_settings()
2577 cpu_to_be16(setting->sclk_activity)) { in fiji_update_dpm_settings()
2578 levels[i].ActivityLevel = cpu_to_be16(setting->sclk_activity); in fiji_update_dpm_settings()
2588 if (levels[i].UpHyst != setting->sclk_up_hyst || in fiji_update_dpm_settings()
[all …]
/openbsd-src/gnu/gcc/gcc/config/mmix/
H A Dcrti.asm28 % This is the crt0 equivalent for mmix-knuth-mmixware, for setting up
29 % things for compiler-generated assembly-code and for setting up things
/openbsd-src/gnu/usr.bin/gcc/gcc/config/mmix/
H A Dcrti.asm28 % This is the crt0 equivalent for mmix-knuth-mmixware, for setting up
29 % things for compiler-generated assembly-code and for setting up things
/openbsd-src/regress/sbin/pfctl/
H A Dpf52.in1 # test setting all optimizations to avoid future keyword clashes

12345678910>>...31