Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 879) sorted by relevance

12345678910>>...36

/dragonfly/crypto/openssh/
HDssh.c143 Options options; variable
269 hints.ai_family = options.address_family == -1 ? in resolve_host()
270 AF_UNSPEC : options.address_family; in resolve_host()
315 hints.ai_family = options.address_family == -1 ? in is_addr()
316 AF_UNSPEC : options.address_family; in is_addr()
346 hints.ai_family = options.address_family == -1 ? in resolve_addr()
347 AF_UNSPEC : options.address_family; in resolve_addr()
392 if (*cname == '\0' || !config_has_permitted_cnames(&options) || in check_follow_cname()
395 if (options.canonicalize_hostname == SSH_CANONICALISE_NO) in check_follow_cname()
402 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS) in check_follow_cname()
[all …]
HDservconf.c80 static void parse_server_config_depth(ServerOptions *options,
89 initialize_server_options(ServerOptions *options) in initialize_server_options() argument
91 memset(options, 0, sizeof(*options)); in initialize_server_options()
94 options->use_pam = -1; in initialize_server_options()
95 options->pam_service_name = NULL; in initialize_server_options()
98 options->num_ports = 0; in initialize_server_options()
99 options->ports_from_cmdline = 0; in initialize_server_options()
100 options->queued_listen_addrs = NULL; in initialize_server_options()
101 options->num_queued_listens = 0; in initialize_server_options()
102 options->listen_addrs = NULL; in initialize_server_options()
[all …]
HDreadconf.c136 const char *host, const char *original_host, Options *options,
138 static int process_config_line_depth(Options *options, struct passwd *pw,
378 add_local_forward(Options *options, const struct Forward *newfwd) in add_local_forward() argument
384 for (i = 0; i < options->num_local_forwards; i++) { in add_local_forward()
385 if (forward_equals(newfwd, options->local_forwards + i)) in add_local_forward()
388 options->local_forwards = xreallocarray(options->local_forwards, in add_local_forward()
389 options->num_local_forwards + 1, in add_local_forward()
390 sizeof(*options->local_forwards)); in add_local_forward()
391 fwd = &options->local_forwards[options->num_local_forwards++]; in add_local_forward()
407 add_remote_forward(Options *options, const struct Forward *newfwd) in add_remote_forward() argument
[all …]
HDsshd.c104 ServerOptions options; variable
222 children = xcalloc(options.max_startups, sizeof(*children)); in child_alloc()
223 for (i = 0; i < options.max_startups; i++) { in child_alloc()
240 for (i = 0; i < options.max_startups; i++) { in child_register()
248 " slots full", options.max_startups); in child_register()
269 if (++children_active > options.max_startups) in child_register()
318 for (i = 0; i < options.max_startups; i++) { in child_exit()
427 for (i = 0; i < options.max_startups; i++) { in child_reap_all_exited()
441 for (i = 0; i < options.max_startups; i++) { in close_startup_pipes()
457 for (i = 0; i < options.max_startups; i++) { in show_info()
[all …]
HDsshconnect.c81 extern Options options;
93 const char *keyalias = options.host_key_alias ? in expand_proxy_command()
94 options.host_key_alias : host_arg; in expand_proxy_command()
103 "r", options.user, in expand_proxy_command()
129 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
154 if (!debug_flag && options.control_path != NULL && in ssh_proxy_fdpass_connect()
155 options.control_persist && stdfd_devnull(0, 0, 1) == -1) in ssh_proxy_fdpass_connect()
212 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
237 if (!debug_flag && options.control_path != NULL && in ssh_proxy_connect()
238 options.control_persist && stdfd_devnull(0, 0, 1) == -1) in ssh_proxy_connect()
[all …]
HDauth.c80 extern ServerOptions options;
110 if (!options.use_pam && platform_locked_account(pw)) { in allowed_user()
120 if (options.chroot_directory == NULL || in allowed_user()
121 strcasecmp(options.chroot_directory, "none") == 0) { in allowed_user()
141 if (options.num_deny_users > 0 || options.num_allow_users > 0 || in allowed_user()
142 options.num_deny_groups > 0 || options.num_allow_groups > 0) { in allowed_user()
143 hostname = auth_get_canonical_hostname(ssh, options.use_dns); in allowed_user()
148 if (options.num_deny_users > 0) { in allowed_user()
149 for (i = 0; i < options.num_deny_users; i++) { in allowed_user()
151 options.deny_users[i]); in allowed_user()
[all …]
HDsshd-session.c122 ServerOptions options; variable
230 for (i = 0; i < options.num_host_key_files; i++) { in destroy_sensitive_data()
250 for (i = 0; i < options.num_host_key_files; i++) { in demote_sensitive_data()
451 if (match_pattern_list(s, options.hostkeyalgorithms, 0) != 1) { in append_hostkey_type()
469 for (i = 0; i < options.num_host_key_files; i++) { in list_hostkey_types()
525 for (i = 0; i < options.num_host_key_files; i++) { in get_hostkey_by_type()
575 if (ind < 0 || (u_int)ind >= options.num_host_key_files) in get_hostkey_by_index()
583 if (ind < 0 || (u_int)ind >= options.num_host_key_files) in get_hostkey_public_by_index()
593 for (i = 0; i < options.num_host_key_files; i++) { in get_hostkey_index()
630 for (i = nkeys = 0; i < options.num_host_key_files; i++) { in notify_hostkeys()
[all …]
/dragonfly/contrib/binutils-2.34/gold/
HDoptions.h82 namespace options
227 Command_line* cmdline, General_options* options) = 0;
248 Command_line* cmdline, General_options* options) in parse_to_value()
249 { (options->*(this->parse))(option, arg, cmdline); } in parse_to_value()
289 struct Struct_##varname__ : public options::Struct_var \
305 options::One_option option; \
323 false, bool, bool, options::parse_bool, default_value__) \
324 struct Struct_no_##varname__ : public options::Struct_var \
326 Struct_no_##varname__() : option((dashes__ == options::DASH_Z \
337 Command_line*, General_options* options) \
[all …]
HDgold.cc67 && parameters->options().has_plugins()) in gold_exit()
68 parameters->options().plugins()->cleanup(); in gold_exit()
70 unlink_if_ordinary(parameters->options().output_file_name()); in gold_exit()
111 Middle_runner(const General_options& options, in Middle_runner() argument
115 : options_(options), input_objects_(input_objects), symtab_(symtab), in Middle_runner()
142 Gc_runner(const General_options& options, in Gc_runner() argument
146 : options_(options), input_objects_(input_objects), symtab_(symtab), in Gc_runner()
172 queue_initial_tasks(const General_options& options, in queue_initial_tasks() argument
181 if (options.printed_version()) in queue_initial_tasks()
183 if (options.print_output_format()) in queue_initial_tasks()
[all …]
/dragonfly/contrib/binutils-2.27/gold/
HDoptions.h82 namespace options
222 Command_line* cmdline, General_options* options) = 0;
242 Command_line* cmdline, General_options* options) in parse_to_value()
243 { (options->*(this->parse))(option, arg, cmdline); } in parse_to_value()
280 struct Struct_##varname__ : public options::Struct_var \
296 options::One_option option; \
314 false, bool, bool, options::parse_bool) \
315 struct Struct_no_##varname__ : public options::Struct_var \
317 Struct_no_##varname__() : option((dashes__ == options::DASH_Z \
327 Command_line*, General_options* options) \
[all …]
HDgold.cc67 && parameters->options().has_plugins()) in gold_exit()
68 parameters->options().plugins()->cleanup(); in gold_exit()
70 unlink_if_ordinary(parameters->options().output_file_name()); in gold_exit()
111 Middle_runner(const General_options& options, in Middle_runner() argument
115 : options_(options), input_objects_(input_objects), symtab_(symtab), in Middle_runner()
142 Gc_runner(const General_options& options, in Gc_runner() argument
146 : options_(options), input_objects_(input_objects), symtab_(symtab), in Gc_runner()
172 queue_initial_tasks(const General_options& options, in queue_initial_tasks() argument
181 if (options.printed_version()) in queue_initial_tasks()
183 if (options.print_output_format()) in queue_initial_tasks()
[all …]
/dragonfly/sys/config/
HDVKERNEL6413 options DEBUG_PCTRACK
15 ##options KTR
16 ##options KTR_SPIN_CONTENTION
17 #options DEBUG_CRIT_SECTIONS
19 options QUOTA
20 options DUMMYNET
21 options IPFIREWALL #firewall
22 options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default
25 options ALTQ #alternate queueing
26 options ALTQ_CBQ #class based queueing
[all …]
HDLINT6411 # file. Instead, you should start from X86_64_GENERIC, and add options
72 # that DragonFly initially imposes. Below are some options to
81 options MAXDSIZ="(256*1024*1024)"
82 options MAXSSIZ="(256*1024*1024)"
83 options DFLDSIZ="(256*1024*1024)"
91 options BLKDEV_IOSIZE=8192
97 options INCLUDE_CONFIG_FILE # Include this file in kernel
105 options ROOTDEVNAME=\"ufs:da0s2e\"
119 options CPU_DISABLE_AVX
122 # These three options provide support for System V Interface
[all …]
/dragonfly/contrib/xz/src/liblzma/lzma/
HDlzma_encoder_presets.c18 lzma_lzma_preset(lzma_options_lzma *options, uint32_t preset) in lzma_lzma_preset() argument
27 options->preset_dict = NULL; in lzma_lzma_preset()
28 options->preset_dict_size = 0; in lzma_lzma_preset()
30 options->lc = LZMA_LC_DEFAULT; in lzma_lzma_preset()
31 options->lp = LZMA_LP_DEFAULT; in lzma_lzma_preset()
32 options->pb = LZMA_PB_DEFAULT; in lzma_lzma_preset()
36 options->dict_size = UINT32_C(1) << dict_pow2[level]; in lzma_lzma_preset()
39 options->mode = LZMA_MODE_FAST; in lzma_lzma_preset()
40 options->mf = level == 0 ? LZMA_MF_HC3 : LZMA_MF_HC4; in lzma_lzma_preset()
41 options->nice_len = level <= 1 ? 128 : 273; in lzma_lzma_preset()
[all …]
HDlzma_encoder.c422 is_options_valid(const lzma_options_lzma *options) in is_options_valid() argument
426 return is_lclppb_valid(options) in is_options_valid()
427 && options->nice_len >= MATCH_LEN_MIN in is_options_valid()
428 && options->nice_len <= MATCH_LEN_MAX in is_options_valid()
429 && (options->mode == LZMA_MODE_FAST in is_options_valid()
430 || options->mode == LZMA_MODE_NORMAL); in is_options_valid()
435 set_lz_options(lzma_lz_options *lz_options, const lzma_options_lzma *options) in set_lz_options() argument
440 lz_options->dict_size = options->dict_size; in set_lz_options()
443 lz_options->nice_len = options->nice_len; in set_lz_options()
444 lz_options->match_finder = options->mf; in set_lz_options()
[all …]
/dragonfly/contrib/grep/lib/
HDexclude.c78 int options; member
105 int options; /* common options for this segment */ member
143 fnmatch_pattern_has_wildcards (const char *str, int options) in fnmatch_pattern_has_wildcards() argument
154 if (options & EXCLUDE_REGEX) in fnmatch_pattern_has_wildcards()
159 if (options & EXCLUDE_REGEX) in fnmatch_pattern_has_wildcards()
162 str += ! (options & FNM_NOESCAPE) && *str; in fnmatch_pattern_has_wildcards()
166 if (options & FNM_EXTMATCH && *str == '(') in fnmatch_pattern_has_wildcards()
255 new_exclude_segment (struct exclude *ex, enum exclude_type type, int options) in new_exclude_segment() argument
259 sp->options = options; in new_exclude_segment()
267 (options & FNM_CASEFOLD) ? in new_exclude_segment()
[all …]
/dragonfly/contrib/dhcpcd/src/
HDdhcpcd.c202 if (!(ctx->options & DHCPCD_MANAGER)) { in handle_exit_timeout()
212 ctx->options |= DHCPCD_NOWAITIP; in handle_exit_timeout()
242 opts = ifp->options->options; in dhcpcd_ifafwaiting()
280 if (!(ctx->options & DHCPCD_WAITOPTS)) in dhcpcd_afwaiting()
283 opts = ctx->options; in dhcpcd_afwaiting()
354 ctx->options |= DHCPCD_DAEMONISED; in dhcpcd_daemonised()
369 if (ctx->options & DHCPCD_DAEMONISE && in dhcpcd_daemonise()
370 !(ctx->options & (DHCPCD_DAEMONISED | DHCPCD_NOWAITIP))) in dhcpcd_daemonise()
376 if (ctx->options & DHCPCD_ONESHOT) { in dhcpcd_daemonise()
383 if (ctx->options & DHCPCD_DAEMONISED || in dhcpcd_daemonise()
[all …]
/dragonfly/contrib/gdb-7/gdb/
HDc-valprint.c138 const struct value_print_options *options) in c_val_print() argument
164 if (options->prettyprint_arrays) in c_val_print()
172 options->format) in c_val_print()
183 if (options->stop_print_at_null) in c_val_print()
189 && temp_len < options->print_max in c_val_print()
199 if (temp_len == options->print_max && temp_len < len) in c_val_print()
214 NULL, force_ellipses, options); in c_val_print()
235 recurse, original_value, options, i); in c_val_print()
250 if (options->format && options->format != 's') in c_val_print()
253 original_value, options, 0, stream); in c_val_print()
[all …]
HDm2-valprint.c34 const struct value_print_options *options,
41 const struct value_print_options *options,
163 const struct value_print_options *options) in m2_print_unbounded_array() argument
185 recurse, val, options, len); in m2_print_unbounded_array()
192 const struct value_print_options *options, in print_unpacked_pointer() argument
202 print_function_pointer_address (options, gdbarch, addr, stream); in print_unpacked_pointer()
207 if (options->addressprint && options->format != 's') in print_unpacked_pointer()
218 && (options->format == 0 || options->format == 's') in print_unpacked_pointer()
224 stream, options); in print_unpacked_pointer()
235 const struct value_print_options *options) in print_variable_at_address() argument
[all …]
HDf-valprint.c167 const struct value_print_options *options, in f77_print_array_1() argument
175 (i < F77_DIM_SIZE (nss) && (*elts) < options->print_max); in f77_print_array_1()
183 stream, recurse, val, options, elts); in f77_print_array_1()
186 if (*elts >= options->print_max && i < F77_DIM_SIZE (nss)) in f77_print_array_1()
191 for (i = 0; i < F77_DIM_SIZE (nss) && (*elts) < options->print_max; in f77_print_array_1()
198 val, options, current_language); in f77_print_array_1()
203 if ((*elts == options->print_max - 1) in f77_print_array_1()
219 const struct value_print_options *options) in f77_print_array() argument
238 address, stream, recurse, val, options, &elts); in f77_print_array()
261 const struct value_print_options *options) in f_val_print() argument
[all …]
HDp-valprint.c63 const struct value_print_options *options) in pascal_val_print() argument
86 if (options->prettyprint_arrays) in pascal_val_print()
93 if (options->format == 's' in pascal_val_print()
96 && options->format == 0)) in pascal_val_print()
100 if (options->stop_print_at_null) in pascal_val_print()
109 && temp_len < len && temp_len < options->print_max; in pascal_val_print()
116 options); in pascal_val_print()
135 original_value, options, i); in pascal_val_print()
145 if (options->format && options->format != 's') in pascal_val_print()
148 original_value, options, 0, stream); in pascal_val_print()
[all …]
HDada-valprint.c74 const struct value_print_options *options) in print_optional_low_bound() argument
80 if (options->print_array_indexes) in print_optional_low_bound()
140 const struct value_print_options *options) in val_print_packed_array_elements() argument
167 while (i < len && things_printed < options->print_max) in val_print_packed_array_elements()
174 if (options->prettyprint_arrays) in val_print_packed_array_elements()
185 maybe_print_array_index (index_type, i + low, stream, options); in val_print_packed_array_elements()
207 if (i - i0 > options->repeat_count_threshold) in val_print_packed_array_elements()
209 struct value_print_options opts = *options; in val_print_packed_array_elements()
223 struct value_print_options opts = *options; in val_print_packed_array_elements()
230 if (options->prettyprint_arrays) in val_print_packed_array_elements()
[all …]
/dragonfly/sbin/dhclient/
HDoptions.c55 parse_option_buffer(struct option_data *options, unsigned char *buffer, in parse_option_buffer() argument
108 if (!options[code].data) { in parse_option_buffer()
118 options[code].len = len; in parse_option_buffer()
119 options[code].data = t; in parse_option_buffer()
126 t = calloc(1, len + options[code].len + 1); in parse_option_buffer()
130 memcpy(t, options[code].data, options[code].len); in parse_option_buffer()
131 memcpy(t + options[code].len, &s[2], len); in parse_option_buffer()
132 options[code].len += len; in parse_option_buffer()
133 t[options[code].len] = 0; in parse_option_buffer()
134 free(options[code].data); in parse_option_buffer()
[all …]
/dragonfly/contrib/xz/src/xz/
HDoptions.c152 set_delta(void *options, unsigned key, uint64_t value, in set_delta() argument
155 lzma_options_delta *opt = options; in set_delta()
173 lzma_options_delta *options = xmalloc(sizeof(lzma_options_delta)); in options_delta() local
174 *options = (lzma_options_delta){ in options_delta()
180 parse_options(str, opts, &set_delta, options); in options_delta()
182 return options; in options_delta()
196 set_bcj(void *options, unsigned key, uint64_t value, in set_bcj() argument
199 lzma_options_bcj *opt = options; in set_bcj()
216 lzma_options_bcj *options = xmalloc(sizeof(lzma_options_bcj)); in options_bcj() local
217 *options = (lzma_options_bcj){ in options_bcj()
[all …]
/dragonfly/contrib/cryptsetup/src/
HDcryptsetup.c204 struct crypt_options options = { in action_create() local
225 if (options.hash && strcmp(options.hash, "plain") == 0) in action_create()
226 options.hash = NULL; in action_create()
228 options.flags |= CRYPT_FLAG_VERIFY; in action_create()
230 options.flags |= CRYPT_FLAG_READONLY; in action_create()
233 r = crypt_update_device(&options); in action_create()
235 r = crypt_create_device(&options); in action_create()
242 struct crypt_options options = { in action_remove() local
247 return crypt_remove_device(&options); in action_remove()
252 struct crypt_options options = { in action_resize() local
[all …]

12345678910>>...36