Searched refs:options (Results 76 - 100 of 893) sorted by relevance

1234567891011>>

/freebsd-11.0-release/crypto/heimdal/lib/krb5/
H A Dverify_init.c37 krb5_verify_init_creds_opt_init(krb5_verify_init_creds_opt *options) argument
39 memset (options, 0, sizeof(*options));
43 krb5_verify_init_creds_opt_set_ap_req_nofail(krb5_verify_init_creds_opt *options, argument
46 options->flags |= KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL;
47 options->ap_req_nofail = ap_req_nofail;
56 krb5_verify_init_creds_opt *options)
58 if ((options->flags & KRB5_VERIFY_INIT_CREDS_OPT_AP_REQ_NOFAIL
59 && options->ap_req_nofail != 0)
76 krb5_verify_init_creds_opt *options)
55 fail_verify_is_ok(krb5_context context, krb5_verify_init_creds_opt *options) argument
71 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-11.0-release/contrib/xz/src/liblzma/common/
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, const 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);
39 void **options, const lzma_allocator *allocator,
141 const lzma_filter *options)
144 options, (lzma_filter_find)(&decoder_find), false);
149 lzma_raw_decoder(lzma_stream *strm, const lzma_filter *options)
151 lzma_next_strm_init(lzma_raw_decoder_init, strm, options);
173 filter->options = NULL;
183 &filter->options, allocator, props, props_size);
140 lzma_raw_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter *options) argument
/freebsd-11.0-release/crypto/openssh/
H A Dauth-rh-rsa.c42 extern ServerOptions options;
59 options.ignore_user_known_hosts ? NULL : _PATH_SSH_USER_HOSTFILE);
81 chost = (char *)get_canonical_hostname(options.use_dns);
H A Dauth2-passwd.c48 extern ServerOptions options;
80 &options.password_authentication
H A Dauth.c65 #include "auth-options.h"
80 extern ServerOptions options;
113 if (!options.use_pam)
116 if (!options.use_pam && spw != NULL && auth_shadow_acctexpired(spw))
133 if (!options.use_pam && passwd && *passwd) {
163 if (options.chroot_directory == NULL ||
164 strcasecmp(options.chroot_directory, "none") == 0) {
184 if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
185 options
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/tools/lldb-server/
H A DLLDBServerUtilities.cpp36 uint32_t options = File::eOpenOptionWrite | File::eOpenOptionCanCreate | local
39 options |= File::eOpenOptionTruncate;
41 log_stream_sp.reset(new StreamFile(log_file.c_str(), options));
/freebsd-11.0-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;
H A Dlzma_encoder.c422 is_options_valid(const lzma_options_lzma *options) argument
424 // Validate some of the options. LZ encoder validates nice_len too
426 return is_lclppb_valid(options)
427 && options->nice_len >= MATCH_LEN_MIN
428 && options->nice_len <= MATCH_LEN_MAX
429 && (options->mode == LZMA_MODE_FAST
430 || options->mode == LZMA_MODE_NORMAL);
435 set_lz_options(lzma_lz_options *lz_options, const lzma_options_lzma *options) argument
440 lz_options->dict_size = options->dict_size;
443 lz_options->nice_len = options
476 lzma_lzma_encoder_reset(lzma_coder *coder, const lzma_options_lzma *options) argument
548 lzma_lzma_encoder_create(lzma_coder **coder_ptr, const lzma_allocator *allocator, const lzma_options_lzma *options, lzma_lz_options *lz_options) argument
608 lzma_encoder_init(lzma_lz_encoder *lz, const lzma_allocator *allocator, const void *options, lzma_lz_options *lz_options) argument
627 lzma_lzma_encoder_memusage(const void *options) argument
644 lzma_lzma_lclppb_encode(const lzma_options_lzma *options, uint8_t *byte) argument
658 lzma_lzma_props_encode(const void *options, uint8_t *out) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp92 getOpts().getOption(options::OPT_driver_mode).getPrefixedName();
135 // Check for unsupported options.
137 if (A->getOption().hasFlag(options::Unsupported)) {
143 if (A->getOption().matches(options::OPT_mcpu_EQ) && A->containsValue("")) {
148 for (const Arg *A : Args.filtered(options::OPT_UNKNOWN))
154 // Determine which compilation mode we are in. We look for options which
163 if (CCCIsCPP() || (PhaseArg = DAL.getLastArg(options::OPT_E)) ||
164 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) ||
165 (PhaseArg = DAL.getLastArg(options::OPT_M, options
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Language/Go/
H A DGoFormatterFunctions.cpp146 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj);
147 options.SetLocation(valobj_addr);
148 options.SetProcessSP(process_sp);
149 options.SetStream(&stream);
150 options.SetSourceSize(length);
151 options.SetNeedsZeroTermination(false);
152 options.SetLanguage(eLanguageTypeGo);
154 if (!StringPrinter::ReadStringAndDumpToStream<StringPrinter::StringElementType::UTF8>(options))
H A DGoFormatterFunctions.h36 bool GoStringSummaryProvider(ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options);
/freebsd-11.0-release/lib/libc/gen/
H A Dwaitpid.c48 __waitpid(pid_t pid, int *istat, int options) argument
52 __libc_interposing[INTERPOS_wait4])(pid, istat, options, NULL));
/freebsd-11.0-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...]
/freebsd-11.0-release/lib/libc/sys/
H A Dwait6.c45 wait6(idtype_t idtype, id_t id, int *status, int options, struct __wrusage *ru, argument
51 status, options, ru, infop));
/freebsd-11.0-release/tools/regression/atm/proto_sscfu/
H A DRunTest.sh10 $LOCALBASE/bin/ats_sscfu $options $DATA/Funcs $DATA/EST* $DATA/REL* \
/freebsd-11.0-release/contrib/tcpdump/missing/
H A Dgetopt_long.c62 #define PRINT_ERROR ((opterr) && (*options != ':'))
64 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
65 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
70 #define BADARG ((*options == ':') ? (int)':' : (int)'?')
95 static int nonopt_end = -1; /* first option after non options (for permute) */
185 * Parse long options in argc/argv argument vector.
189 parse_long_options(char * const *nargv, const char *options, argument
354 getopt_internal(int nargc, char * const *nargv, const char *options, argument
361 if (options == NULL)
365 * Disable GNU extensions if POSIXLY_CORRECT is set or options
573 getopt(int nargc, char * const *nargv, const char *options) argument
593 getopt_long(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
606 getopt_long_only(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
[all...]
/freebsd-11.0-release/sbin/dhclient/
H A Ddhclient.c685 if (!picked->options[DHO_DHCP_MESSAGE_TYPE].len) {
755 if (ip->client->new->options[DHO_DHCP_LEASE_TIME].data)
757 ip->client->new->options[DHO_DHCP_LEASE_TIME].data);
770 if (ip->client->new->options[DHO_DHCP_RENEWAL_TIME].len)
772 ip->client->new->options[DHO_DHCP_RENEWAL_TIME].data);
777 if (ip->client->new->options[DHO_DHCP_REBINDING_TIME].len)
779 ip->client->new->options[DHO_DHCP_REBINDING_TIME].data);
853 if (ip->client->active->options[DHO_DHCP_SERVER_IDENTIFIER].len == 4) {
855 options[DHO_DHCP_SERVER_IDENTIFIER].data, 4);
931 char *name = packet->options[DHO_DHCP_MESSAGE_TYP
1504 struct tree_cache *options[256]; local
1617 struct tree_cache *options[256]; local
1749 struct tree_cache *options[256], message_type_tree; local
[all...]
H A Doptions.c1 /* $OpenBSD: options.c,v 1.15 2004/12/26 03:17:07 deraadt Exp $ */
3 /* DHCP options parsing and reassembly. */
44 __FBSDID("$FreeBSD: releng/11.0/sbin/dhclient/options.c 229778 2012-01-07 16:09:33Z uqs $");
65 * Parse all available options out of the specified packet.
71 memset(packet->options, 0, sizeof(packet->options));
74 if (memcmp(packet->raw->options, DHCP_OPTIONS_COOKIE, 4)) {
80 * Go through the options field, up to the end of the packet or
83 parse_option_buffer(packet, &packet->raw->options[4],
88 * options ou
376 cons_options(struct packet *inpacket, struct dhcp_packet *outpacket, int mms, struct tree_cache **options, int overload, int terminate, int bootpp, u_int8_t *prl, int prl_len) argument
520 store_options(unsigned char *buffer, int buflen, struct tree_cache **options, unsigned char *priority_list, int priority_len, int first_cutoff, int second_cutoff, int terminate) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DGetOptInc.cpp18 #define PRINT_ERROR ((opterr) && (*options != ':'))
20 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
21 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
26 #define BADARG ((*options == ':') ? (int)':' : (int)'?')
42 static int nonopt_end = -1; /* first option after non options (for permute) */
104 * Parse long options in argc/argv argument vector.
108 parse_long_options(char * const *nargv, const char *options, argument
229 getopt_internal(int nargc, char * const *nargv, const char *options, argument
236 if (options == NULL)
247 * Disable GNU extensions if POSIXLY_CORRECT is set or options
429 getopt(int nargc, char * const *nargv, const char *options) argument
450 getopt_long(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
464 getopt_long_only(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
[all...]
/freebsd-11.0-release/crypto/openssh/openbsd-compat/
H A Dgetopt_long.c81 #define PRINT_ERROR ((opterr) && (*options != ':'))
83 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
84 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
89 #define BADARG ((*options == ':') ? (int)':' : (int)'?')
105 static int nonopt_end = -1; /* first option after non options (for permute) */
172 * Parse long options in argc/argv argument vector.
176 parse_long_options(char * const *nargv, const char *options, argument
294 getopt_internal(int nargc, char * const *nargv, const char *options, argument
301 if (options == NULL)
312 * Disable GNU extensions if POSIXLY_CORRECT is set or options
490 getopt(int nargc, char * const *nargv, const char *options) argument
[all...]
/freebsd-11.0-release/lib/libc/stdlib/
H A Dgetopt_long.c80 #define PRINT_ERROR ((opterr) && (*options != ':'))
82 #define FLAG_PERMUTE 0x01 /* permute non-options to the end of argv */
83 #define FLAG_ALLARGS 0x02 /* treat non-options as args to option "-1" */
88 #define BADARG ((*options == ':') ? (int)':' : (int)'?')
111 static int nonopt_end = -1; /* first option after non options (for permute) */
188 * Parse long options in argc/argv argument vector.
192 parse_long_options(char * const *nargv, const char *options, argument
357 getopt_internal(int nargc, char * const *nargv, const char *options, argument
364 if (options == NULL)
375 * Disable GNU extensions if POSIXLY_CORRECT is set or options
573 getopt(int nargc, char * const *nargv, const char *options) argument
593 getopt_long(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
606 getopt_long_only(int nargc, char * const *nargv, const char *options, const struct option *long_options, int *idx) argument
[all...]
/freebsd-11.0-release/usr.sbin/autofs/
H A Dautomountd.c179 char *key, *options, *fstype, *nobrowse, *retrycnt, *tmp; local
184 "key \"%s\", options \"%s\"", adr->adr_id, adr->adr_from,
246 options = node_options(node);
249 * Append options from auto_master.
251 options = concat(options, ',', adr->adr_options);
254 * Prepend options passed via automountd(8) command line.
256 options = concat(cmdline_options, ',', options);
262 nobrowse = pick_option("nobrowse", &options);
439 char *options = NULL; local
[all...]
/freebsd-11.0-release/contrib/xz/src/liblzma/api/lzma/
H A Dstream_flags.h111 * \param options Stream Header options to be encoded.
112 * options->backward_size is ignored and doesn't
118 * - LZMA_OPTIONS_ERROR: options->version is not supported by
120 * - LZMA_PROG_ERROR: Invalid options.
123 const lzma_stream_flags *options, uint8_t *out)
130 * \param options Stream Footer options to be encoded.
135 * - LZMA_OPTIONS_ERROR: options->version is not supported by
137 * - LZMA_PROG_ERROR: Invalid options
[all...]

Completed in 120 milliseconds

1234567891011>>