Searched refs:options (Results 101 - 125 of 865) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/mips/conf/
H A DSWARM6421 options MAXMEM=0x400000
/freebsd-9.3-release/tools/regression/atm/proto_cc/
H A DRunTest.sh10 $LOCALBASE/bin/ats_cc $options $DATA/CC_Funcs $DATA/CC_??_??
/freebsd-9.3-release/contrib/cvs/lib/
H A Dgetopt1.c63 getopt_long (argc, argv, options, long_options, opt_index)
66 const char *options;
70 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
79 getopt_long_only (argc, argv, options, long_options, opt_index)
82 const char *options;
86 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
/freebsd-9.3-release/sbin/atm/atmconfig/
H A Datmconfig.help39 atmconfig [common-options] command [subcommand] [options]
48 atmconfig help options
49 gives you help on common command line options
57 ^0 options
58 ^^ help options list common options
59 Common command line options can be specified for all commands. They
60 are written immediately before the command. The following options are
78 atmconfig [common-options] dia
[all...]
/freebsd-9.3-release/crypto/openssh/
H A Dsshd.c156 /* Server configuration options. */
157 ServerOptions options; variable
253 /* options.max_startup sized array of fd ints */
300 for (i = 0; i < options.max_startups; i++)
405 sensitive_data.server_key ? "new " : "", options.server_key_bits);
409 options.server_key_bits);
437 if ((options.protocol & SSH_PROTO_1) &&
438 (options.protocol & SSH_PROTO_2)) {
441 } else if (options.protocol & SSH_PROTO_2) {
452 options
[all...]
H A Dsshconnect.c77 extern Options options;
95 "r", options.user, (char *)NULL);
120 command_string = expand_proxy_command(proxy_command, options.user,
199 command_string = expand_proxy_command(proxy_command, options.user,
276 void *buf = (void *)&options.tcp_rcv_buf;
277 int socksize, sz = sizeof(options.tcp_rcv_buf);
281 options.tcp_rcv_buf);
288 options.tcp_rcv_buf, strerror(errno));
307 if (options.tcp_rcv_buf > 0)
311 if (options
[all...]
H A Dplatform.c38 extern ServerOptions options;
125 if (options.use_pam) {
153 if (options.use_pam) {
177 if (options.chroot_directory != NULL &&
178 strcasecmp(options.chroot_directory, "none") != 0)
H A Dauth-rh-rsa.c39 extern ServerOptions options;
56 options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
78 chost = (char *)get_canonical_hostname(options.use_dns);
/freebsd-9.3-release/contrib/xz/src/xz/
H A Doptions.c3 /// \file options.c
4 /// \brief Parser for filter-specific options
50 /// options structure.
52 /// \param str String containing the options from the command line
55 /// \param filter_options Pointer to filter-specific options structure
152 set_delta(void *options, uint32_t key, uint64_t value, argument
155 lzma_options_delta *opt = options;
173 lzma_options_delta *options = xmalloc(sizeof(lzma_options_delta)); local
174 *options = (lzma_options_delta){
180 parse_options(str, opts, &set_delta, options);
196 set_bcj(void *options, uint32_t key, uint64_t value, const char *valuestr lzma_attribute((__unused__))) argument
216 lzma_options_bcj *options = xmalloc(sizeof(lzma_options_bcj)); local
252 set_lzma(void *options, uint32_t key, uint64_t value, const char *valuestr) argument
348 lzma_options_lzma *options = xmalloc(sizeof(lzma_options_lzma)); local
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/common/
H A Dfilter_common.c20 /// Size of the filter-specific options structure
143 if (src[i].options == NULL) {
144 dest[i].options = NULL;
147 // options is not NULL. This might be convenient
151 // When options is not NULL, the Filter ID must be
153 // how big the options are.
162 // Allocate and copy the options.
163 dest[i].options = lzma_alloc(features[j].options_size,
165 if (dest[i].options == NULL) {
170 memcpy(dest[i].options, sr
242 lzma_raw_coder_init(lzma_next_coder *next, lzma_allocator *allocator, const lzma_filter *options, lzma_filter_find coder_find, bool is_encoder) argument
[all...]
H A Dalone_decoder.c48 lzma_options_lzma options; member in struct:lzma_coder_s
64 if (lzma_lzma_lclppb_decode(&coder->options, in[*in_pos]))
72 coder->options.dict_size
76 if (coder->picky && coder->options.dict_size
83 uint32_t d = coder->options.dict_size - 1;
91 if (d != coder->options.dict_size)
120 coder->memusage = lzma_lzma_decoder_memusage(&coder->options)
135 .options = &coder->options,
218 next->coder->options
[all...]
H A Dalone_encoder.c79 const lzma_options_lzma *options)
99 if (lzma_lzma_lclppb_encode(options, next->coder->header))
103 if (options->dict_size < LZMA_DICT_SIZE_MIN)
110 uint32_t d = options->dict_size - 1;
128 .options = (void *)(options),
141 const lzma_options_alone *options)
143 lzma_next_coder_init(&alone_encoder_init, next, allocator, options);
149 lzma_alone_encoder(lzma_stream *strm, const lzma_options_lzma *options)
151 lzma_next_strm_init(alone_encoder_init, strm, options);
78 alone_encoder_init(lzma_next_coder *next, lzma_allocator *allocator, const lzma_options_lzma *options) argument
[all...]
H A Dfilter_decoder.c29 /// Calculates memory usage of the encoder. If the options are
31 uint64_t (*memusage)(const void *options);
38 lzma_ret (*props_decode)(void **options, lzma_allocator *allocator,
140 const lzma_filter *options)
143 options, (lzma_filter_find)(&decoder_find), false);
148 lzma_raw_decoder(lzma_stream *strm, const lzma_filter *options)
150 lzma_next_strm_init(lzma_raw_decoder_init, strm, options);
172 filter->options = NULL;
182 &filter->options, allocator, props, props_size);
139 lzma_raw_decoder_init(lzma_next_coder *next, lzma_allocator *allocator, const lzma_filter *options) argument
/freebsd-9.3-release/contrib/telnet/telnetd/
H A Ddefs.h179 #define TD_OPTIONS 0x10 /* Report just telnet options */
195 #define my_state_is_do(opt) (options[opt]&MY_STATE_DO)
196 #define my_state_is_will(opt) (options[opt]&MY_STATE_WILL)
197 #define my_want_state_is_do(opt) (options[opt]&MY_WANT_STATE_DO)
198 #define my_want_state_is_will(opt) (options[opt]&MY_WANT_STATE_WILL)
205 #define set_my_state_do(opt) (options[opt] |= MY_STATE_DO)
206 #define set_my_state_will(opt) (options[opt] |= MY_STATE_WILL)
207 #define set_my_want_state_do(opt) (options[opt] |= MY_WANT_STATE_DO)
208 #define set_my_want_state_will(opt) (options[opt] |= MY_WANT_STATE_WILL)
210 #define set_my_state_dont(opt) (options[op
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dallow.py134 def args_to_perms(parser, options, who, perms):
171 if options.set:
173 elif options.create:
177 if options.user:
181 elif options.group:
198 if options.local:
200 if options.descend:
340 (options, args) = parser.parse_args(sys.argv[2:])
342 if sum((bool(options.everyone), bool(options
[all...]
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dcommandline.c95 isc_commandline_parse(int argc, char * const *argv, const char *options) { argument
97 char *option; /* Index into *options of option. */
99 REQUIRE(argc >= 0 && argv != NULL && options != NULL);
125 * Found '--' to signal end of options. Advance
135 option = strchr(options, isc_commandline_option);
138 * Ensure valid option has been passed as specified by options string.
140 * distinguish ':' from the argument specifier in the options string.
146 if (isc_commandline_errprint && *options != ':')
194 * when ':' starts options string, per historical spec.
196 if (*options
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dcommandline.c99 isc_commandline_parse(int argc, char * const *argv, const char *options) { argument
101 char *option; /* Index into *options of option. */
103 REQUIRE(argc >= 0 && argv != NULL && options != NULL);
129 * Found '--' to signal end of options. Advance
139 option = strchr(options, isc_commandline_option);
142 * Ensure valid option has been passed as specified by options string.
144 * distinguish ':' from the argument specifier in the options string.
150 if (isc_commandline_errprint && *options != ':')
198 * when ':' starts options string, per historical spec.
200 if (*options
[all...]
/freebsd-9.3-release/lib/libpam/modules/pam_exec/
H A Dpam_exec.c71 struct pe_opts *options)
76 * Parse options:
80 * stop options parsing; what follows is the command to execute
82 options->return_prog_exit_status = 0;
89 options->return_prog_exit_status = 1;
109 struct pe_opts *options)
122 /* Check there's a program name left after parsing options. */
140 nitems_rv = options->return_prog_exit_status ? PAM_RV_COUNT : 0;
173 if (options->return_prog_exit_status) {
251 if (options
70 parse_options(const char *func, int *argc, const char **argv[], struct pe_opts *options) argument
107 _pam_exec(pam_handle_t *pamh __unused, const char *func, int flags __unused, int argc, const char *argv[], struct pe_opts *options) argument
267 struct pe_opts options; local
308 struct pe_opts options; local
348 struct pe_opts options; local
388 struct pe_opts options; local
425 struct pe_opts options; local
462 struct pe_opts options; local
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Dmaster.h36 * Flags to be passed in the 'options' argument in the functions below.
116 unsigned int options,
125 unsigned int options,
135 unsigned int options,
146 unsigned int options,
155 unsigned int options,
164 unsigned int options,
173 unsigned int options,
184 unsigned int options,
196 unsigned int options,
[all...]
H A Drequest.h165 isc_sockaddr_t *address, unsigned int options,
202 unsigned int options, dns_tsigkey_t *key,
211 unsigned int options, dns_tsigkey_t *key,
219 unsigned int options, dns_tsigkey_t *key,
261 unsigned int options, unsigned int timeout,
269 unsigned int options, unsigned int timeout,
277 unsigned int options, unsigned int timeout,
328 unsigned int options);
332 * 'options' is passed to dns_message_parse(). See dns_message_parse()
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dget_in_tkt_with_skey.c50 krb5_flags options,
61 options,
71 options,
49 krb5_get_in_tkt_with_skey(krb5_context context, krb5_flags options, krb5_addresses *addrs, const krb5_enctype *etypes, const krb5_preauthtype *pre_auth_types, const krb5_keyblock *key, krb5_ccache ccache, krb5_creds *creds, krb5_kdc_rep *ret_as_reply) argument
H A Dverify_init.c39 krb5_verify_init_creds_opt_init(krb5_verify_init_creds_opt *options) argument
41 memset (options, 0, sizeof(*options));
45 krb5_verify_init_creds_opt_set_ap_req_nofail(krb5_verify_init_creds_opt *options, argument
48 options->flags |= KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL;
49 options->ap_req_nofail = ap_req_nofail;
58 krb5_verify_init_creds_opt *options)
60 if ((options->flags & KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL
61 && options->ap_req_nofail != 0)
78 krb5_verify_init_creds_opt *options)
57 fail_verify_is_ok(krb5_context context, krb5_verify_init_creds_opt *options) argument
73 krb5_verify_init_creds(krb5_context context, krb5_creds *creds, krb5_principal ap_req_server, krb5_keytab ap_req_keytab, krb5_ccache *ccache, krb5_verify_init_creds_opt *options) argument
[all...]
/freebsd-9.3-release/contrib/cvs/src/
H A Dvers_ts.c26 Version_TS (finfo, options, tag, date, force_tag_match, set_time)
29 /* Keyword expansion options, I think generally from the command
32 char *options;
106 (vers_ts->entdata), we want to pick up options which could
108 if (!options || *options == '\0')
111 vers_ts->options = xstrdup (entdata->options);
116 * will either be needed as a default or to avoid allowing the -k options
123 * -k options specifie
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_common.h33 is_lclppb_valid(const lzma_options_lzma *options) argument
35 return options->lc <= LZMA_LCLP_MAX && options->lp <= LZMA_LCLP_MAX
36 && options->lc + options->lp <= LZMA_LCLP_MAX
37 && options->pb <= LZMA_PB_MAX;
/freebsd-9.3-release/contrib/gcc/
H A Dopts-common.c32 enough because some options can be suffixed with an argument, and
129 /* Filter out options canceled by the ones after them. */
135 int *options = xmalloc (argc * sizeof (*options)); local
170 options [i] = 0;
187 options [i] = (int) opt_index;
188 need_prune |= options [i];
201 opt_idx = options [i];
207 next_opt_idx = options [j];
236 free (options);
[all...]

Completed in 162 milliseconds

1234567891011>>