Searched refs:options (Results 51 - 75 of 865) sorted by relevance

1234567891011>>

/freebsd-9.3-release/crypto/openssh/
H A Dreadconf.c66 # 1. command line options
111 # Defaults for various options
288 * Adds a local TCP/IP port forward to options. Never returns if there is an
293 add_local_forward(Options *options, const Forward *newfwd) argument
313 options->local_forwards = xrealloc(options->local_forwards,
314 options->num_local_forwards + 1,
315 sizeof(*options->local_forwards));
316 fwd = &options->local_forwards[options
330 add_remote_forward(Options *options, const Forward *newfwd) argument
348 clear_forwardings(Options *options) argument
374 add_identity_file(Options *options, const char *dir, const char *filename, int userprovided) argument
484 match_cfg_line(Options *options, char **condition, struct passwd *pw, const char *host_arg, const char *filename, int linenum) argument
727 process_config_line(Options *options, struct passwd *pw, const char *host, char *line, const char *filename, int linenum, int *activep, int userconfig) argument
1514 read_config_file(const char *filename, struct passwd *pw, const char *host, Options *options, int flags) argument
1572 initialize_options(Options * options) argument
1674 fill_default_options_for_canonicalization(Options *options) argument
1689 fill_default_options(Options * options) argument
[all...]
H A Dservconf.c68 /* Initializes the server options to their default values. */
71 initialize_server_options(ServerOptions *options) argument
73 memset(options, 0, sizeof(*options));
75 /* Portable-specific options */
76 options->use_pam = -1;
79 options->num_ports = 0;
80 options->ports_from_cmdline = 0;
81 options->listen_addrs = NULL;
82 options
168 fill_default_server_options(ServerOptions *options) argument
579 add_listen_addr(ServerOptions *options, char *addr, int port) argument
595 add_one_listen_addr(ServerOptions *options, char *addr, int port) argument
876 process_server_config_line(ServerOptions *options, char *line, const char *filename, int linenum, int *activep, struct connection_info *connectinfo) argument
1752 parse_server_match_config(ServerOptions *options, struct connection_info *connectinfo) argument
1878 parse_server_config(ServerOptions *options, const char *filename, Buffer *conf, struct connection_info *connectinfo) argument
[all...]
H A Dssh.c157 * General data structure for command line options and options configurable
160 Options options; variable
240 * NB. this function must operate with a options having undefined members.
254 hints.ai_family = options.address_family == -1 ?
255 AF_UNSPEC : options.address_family;
280 * NB. this function must operate with a options having undefined members.
288 if (*cname == '\0' || options.num_permitted_cnames == 0 ||
291 if (options.canonicalize_hostname == SSH_CANONICALISE_NO)
297 if (!option_clear_or_none(options
[all...]
H A Dauth2-kbdint.c42 extern ServerOptions options;
56 if (options.challenge_response_authentication)
67 &options.kbd_interactive_authentication
H A Dauth2-none.c54 extern ServerOptions options;
64 if (options.permit_empty_passwd && options.password_authentication)
/freebsd-9.3-release/gnu/usr.bin/cvs/cvs/
H A Dprepend_args.c29 /* Find the white-space-separated options specified by OPTIONS, and
30 using BUF to store copies of these options, set ARGV[0], ARGV[1],
31 etc. to the option copies. Return the number N of options found.
35 prepend_args (options, buf, argv)
36 char const *options;
40 char const *o = options;
63 /* Prepend the whitespace-separated options in OPTIONS to the argument
67 prepend_default_options (options, pargc, pargv)
68 char const *options;
72 if (options)
[all...]
/freebsd-9.3-release/sys/mips/conf/
H A DSWARM64_SMP9 options SMP
10 options PRINTF_BUFR_SIZE=128
24 options MAXMEM=0x400000
/freebsd-9.3-release/sys/sparc64/conf/
H A DGENERIC14 # An exhaustive list of options and more detailed explanations of the
29 options SCHED_ULE # ULE scheduler
30 options PREEMPTION # Enable kernel thread preemption
31 options INET # InterNETworking
32 options INET6 # IPv6 communications protocols
33 options SCTP # Stream Control Transmission Protocol
34 options FFS # Berkeley Fast Filesystem
35 options SOFTUPDATES # Enable FFS soft updates support
36 options UFS_ACL # Support for access control lists
37 options UFS_DIRHAS
[all...]
/freebsd-9.3-release/contrib/cvs/contrib/
H A Ddescend.sh26 # Scan for options
31 options=$options" "-$option
35 options=$options" "-$option
40 options=$options" "-$option
44 options=$options" "-$option
49 options
[all...]
H A Dpvcs2rcs.in165 [-v none|locks|exists] [options] [path...]
258 # set up the default options
259 my %options = (
358 if ($options{errorfiles})
371 if ($options{debug});
463 if (!$options{'pvcs-dirs-flat'} and $fn =~ /^vcs$/i)
465 if ($options{verify} =~ /^locks$/ ) {
468 . ( ($options{mode} =~ /^convert$/) ? " Skipping directory." : "" )
469 . "\n" if ($options{verbose});
471 } elsif ( $options{mod
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/common/
H A Dfilter_decoder.h21 const lzma_filter *options);
H A Dstream_flags_decoder.c17 stream_flags_decode(lzma_stream_flags *options, const uint8_t *in) argument
23 options->version = 0;
24 options->check = in[1] & 0x0F;
31 lzma_stream_header_decode(lzma_stream_flags *options, const uint8_t *in)
46 if (stream_flags_decode(options, in + sizeof(lzma_header_magic)))
53 options->backward_size = LZMA_VLI_UNKNOWN;
60 lzma_stream_footer_decode(lzma_stream_flags *options, const uint8_t *in)
74 if (stream_flags_decode(options, in + sizeof(uint32_t) * 2))
78 options->backward_size = unaligned_read32le(in + sizeof(uint32_t));
79 options
[all...]
H A Dstream_flags_encoder.c17 stream_flags_encode(const lzma_stream_flags *options, uint8_t *out) argument
19 if ((unsigned int)(options->check) > LZMA_CHECK_ID_MAX)
23 out[1] = options->check;
30 lzma_stream_header_encode(const lzma_stream_flags *options, uint8_t *out)
35 if (options->version != 0)
42 if (stream_flags_encode(options, out + sizeof(lzma_header_magic)))
57 lzma_stream_footer_encode(const lzma_stream_flags *options, uint8_t *out)
62 if (options->version != 0)
66 if (!is_backward_size_valid(options))
69 unaligned_write32le(out + 4, options
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_decoder.h24 extern uint64_t lzma_lzma_decoder_memusage(const void *options);
27 void **options, lzma_allocator *allocator,
36 lzma_options_lzma *options, uint8_t byte);
48 extern uint64_t lzma_lzma_decoder_memusage_nocheck(const void *options);
H A Dlzma_encoder.h24 extern uint64_t lzma_lzma_encoder_memusage(const void *options);
26 extern lzma_ret lzma_lzma_props_encode(const void *options, uint8_t *out);
31 const lzma_options_lzma *options, uint8_t *byte);
39 const lzma_options_lzma *options, lzma_lz_options *lz_options);
44 lzma_coder *coder, const lzma_options_lzma *options);
H A Dlzma2_decoder.h22 extern uint64_t lzma_lzma2_decoder_memusage(const void *options);
25 void **options, lzma_allocator *allocator,
/freebsd-9.3-release/sys/amd64/conf/
H A DGENERIC14 # An exhaustive list of options and more detailed explanations of the
27 options SCHED_ULE # ULE scheduler
28 options PREEMPTION # Enable kernel thread preemption
29 options INET # InterNETworking
30 options INET6 # IPv6 communications protocols
31 options TCP_OFFLOAD # TCP offload
32 options SCTP # Stream Control Transmission Protocol
33 options FFS # Berkeley Fast Filesystem
34 options SOFTUPDATES # Enable FFS soft updates support
35 options UFS_AC
[all...]
/freebsd-9.3-release/usr.bin/vgrind/
H A Dvgrind.sh36 options=""
49 options="$options -f"
65 options="$options $1 $2"
85 options="$options $1"
104 $vf $options -h "$head" $files
106 $vf $options $files
110 $vf $options
[all...]
/freebsd-9.3-release/sys/i386/conf/
H A DGENERIC14 # An exhaustive list of options and more detailed explanations of the
29 options SCHED_ULE # ULE scheduler
30 options PREEMPTION # Enable kernel thread preemption
31 options INET # InterNETworking
32 options INET6 # IPv6 communications protocols
33 options TCP_OFFLOAD # TCP offload
34 options SCTP # Stream Control Transmission Protocol
35 options FFS # Berkeley Fast Filesystem
36 options SOFTUPDATES # Enable FFS soft updates support
37 options UFS_AC
[all...]
/freebsd-9.3-release/contrib/amd/scripts/
H A Dautomount2amd.in11 # dir [ -options ] machine:/path [ # optional comment ]
52 ($dir, $options, $machine, $path, $rest) = ($1, $2, $3, $4, $5);
55 if ($options =~ m/-/) {
56 $options =~ s/\s//g;
57 $options =~ s/^-//g;
58 printf( " -addopts:=$options \\\n");
/freebsd-9.3-release/libexec/tftpd/
H A Dtftp-options.c45 #include "tftp-options.h"
51 struct options options[] = { variable in typeref:struct:options
86 if (options[OPT_TSIZE].o_request == NULL)
90 asprintf(&options[OPT_TSIZE].o_reply,
94 options[OPT_TSIZE].o_reply =
95 strdup(options[OPT_TSIZE].o_request);
104 if (options[OPT_TIMEOUT].o_request == NULL)
107 to = atoi(options[OPT_TIMEOUT].o_request);
119 options[OPT_TIMEOU
[all...]
/freebsd-9.3-release/lib/libc/gen/
H A Dwait3.c44 wait3(istat, options, rup)
46 int options;
49 return (_wait4(WAIT_ANY, istat, options, rup));
/freebsd-9.3-release/lib/libkse/thread/
H A Dthr_waitpid.c39 pid_t _waitpid(pid_t wpid, int *status, int options);
44 _waitpid(pid_t wpid, int *status, int options) argument
50 ret = __waitpid(wpid, status, options);
/freebsd-9.3-release/contrib/xz/src/liblzma/simple/
H A Dsimple_decoder.h19 void **options, lzma_allocator *allocator,
/freebsd-9.3-release/contrib/cvs/src/
H A Dno_diff.c32 char *ts, *options; local
52 if (vers->entdata && vers->entdata->options)
53 options = xstrdup (vers->entdata->options);
55 options = xstrdup ("");
59 (char *)NULL, options,
67 options, vers->tag, vers->date, (char *) 0);
99 free (options);

Completed in 245 milliseconds

1234567891011>>