Searched refs:options (Results 1 - 25 of 893) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/xz/src/liblzma/common/
H A Dstream_flags_common.h26 is_backward_size_valid(const lzma_stream_flags *options) argument
28 return options->backward_size >= LZMA_BACKWARD_SIZE_MIN
29 && options->backward_size <= LZMA_BACKWARD_SIZE_MAX
30 && (options->backward_size & 3) == 0;
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-11.0-release/contrib/xz/src/liblzma/delta/
H A Ddelta_common.h18 extern uint64_t lzma_delta_coder_memusage(const void *options);
/freebsd-11.0-release/gnu/usr.bin/grep/tests/
H A Dempty.sh9 for options in '-E' '-E -w' '-F -x' '-G -w -x'; do
12 echo "" | ${GREP} $options -e '' > /dev/null 2>&1
14 echo "Status: Wrong status code, test \#1 failed ($options)"
19 echo "abcd" | ${GREP} $options -f /dev/null > /dev/null 2>&1
21 echo "Status: Wrong status code, test \#2 failed ($options)"
26 echo "abcd" | ${GREP} $options -f /dev/null -e "abcd" > /dev/null 2>&1
28 echo "Status: Wrong status code, test \#3 failed ($options)"
/freebsd-11.0-release/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_presets.c17 lzma_lzma_preset(lzma_options_lzma *options, uint32_t preset)
26 options->preset_dict = NULL;
27 options->preset_dict_size = 0;
29 options->lc = LZMA_LC_DEFAULT;
30 options->lp = LZMA_LP_DEFAULT;
31 options->pb = LZMA_PB_DEFAULT;
35 options->dict_size = UINT32_C(1) << dict_pow2[level];
38 options->mode = LZMA_MODE_FAST;
39 options->mf = level == 0 ? LZMA_MF_HC3 : LZMA_MF_HC4;
40 options
[all...]
H A Dlzma_decoder.h25 extern uint64_t lzma_lzma_decoder_memusage(const void *options);
28 void **options, const lzma_allocator *allocator,
37 lzma_options_lzma *options, uint8_t byte);
49 extern uint64_t lzma_lzma_decoder_memusage_nocheck(const void *options);
H A Dlzma2_encoder.h37 extern uint64_t lzma_lzma2_encoder_memusage(const void *options);
39 extern lzma_ret lzma_lzma2_props_encode(const void *options, uint8_t *out);
41 extern uint64_t lzma_lzma2_block_size(const void *options);
H A Dlzma_encoder.h25 extern uint64_t lzma_lzma_encoder_memusage(const void *options);
27 extern lzma_ret lzma_lzma_props_encode(const void *options, uint8_t *out);
32 const lzma_options_lzma *options, uint8_t *byte);
40 const lzma_options_lzma *options, lzma_lz_options *lz_options);
45 lzma_coder *coder, const lzma_options_lzma *options);
/freebsd-11.0-release/tools/regression/atm/
H A DRunTest.sh7 # Just check the legality of the options and pass them along
23 options=""
31 -b) options="$options $i $2" ; shift; shift;;
32 -q) options="$options $i" ; shift;;
37 (cd proto_sscop ; sh ./RunTest.sh -u $options)
38 (cd proto_sscfu ; sh ./RunTest.sh -u $options)
39 (cd proto_uni ; sh ./RunTest.sh -u $options)
40 (cd proto_cc ; sh ./RunTest.sh -u $options)
[all...]
/freebsd-11.0-release/contrib/xz/src/liblzma/simple/
H A Dsimple_encoder.h19 extern lzma_ret lzma_simple_props_size(uint32_t *size, const void *options);
21 extern lzma_ret lzma_simple_props_encode(const void *options, uint8_t *out);
H A Dsimple_encoder.c17 lzma_simple_props_size(uint32_t *size, const void *options) argument
19 const lzma_options_bcj *const opt = options;
26 lzma_simple_props_encode(const void *options, uint8_t *out) argument
28 const lzma_options_bcj *const opt = options;
31 // options unless the start offset is non-zero.
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/
H A DCxxStringTypes.h21 Char16StringSummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options); // char16_t* and unichar*
24 Char32StringSummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options); // char32_t*
27 WCharStringSummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options); // wchar_t*
30 Char16SummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options); // char16_t and unichar
33 Char32SummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options); // char32_t
36 WCharSummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options); // wchar_t
H A DCxxStringTypes.cpp52 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj);
53 options.SetLocation(valobj_addr);
54 options.SetProcessSP(process_sp);
55 options.SetStream(&stream);
56 options.SetPrefixToken("u");
58 if (!StringPrinter::ReadStringAndDumpToStream<StringPrinter::StringElementType::UTF16>(options))
78 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj);
79 options.SetLocation(valobj_addr);
80 options.SetProcessSP(process_sp);
81 options
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/
H A DCF.h21 CFBagSummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options);
24 CFBinaryHeapSummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options);
27 CFBitVectorSummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options);
30 CFAbsoluteTimeSummaryProvider (ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options);
H A DNSString.cpp160 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj);
161 options.SetPrefixToken(prefix);
162 options.SetSuffixToken(suffix);
172 options.SetLocation(location);
173 options.SetProcessSP(process_sp);
174 options.SetStream(&stream);
175 options.SetQuote('"');
176 options.SetSourceSize(explicit_length);
177 options.SetNeedsZeroTermination(false);
178 options
303 NSAttributedStringSummaryProvider(ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options) argument
331 NSMutableAttributedStringSummaryProvider(ValueObject& valobj, Stream& stream, const TypeSummaryOptions& options) argument
[all...]
/freebsd-11.0-release/contrib/mdocml/
H A Dtest-getsubopt.c28 char *options = buf; local
32 return ! (getsubopt(&options, tokens, &value) == 0
33 && value == buf+2 && options == buf+3);
/freebsd-11.0-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-11.0-release/crypto/openssh/
H A Dservconf.c71 /* Initializes the server options to their default values. */
74 initialize_server_options(ServerOptions *options) argument
76 memset(options, 0, sizeof(*options));
78 /* Portable-specific options */
79 options->use_pam = -1;
82 options->num_ports = 0;
83 options->ports_from_cmdline = 0;
84 options->queued_listen_addrs = NULL;
85 options
199 fill_default_server_options(ServerOptions *options) argument
639 add_listen_addr(ServerOptions *options, char *addr, int port) argument
651 add_one_listen_addr(ServerOptions *options, char *addr, int port) argument
677 queue_listen_addr(ServerOptions *options, char *addr, int port) argument
695 process_queued_listen_addrs(ServerOptions *options) argument
976 process_server_config_line(ServerOptions *options, char *line, const char *filename, int linenum, int *activep, struct connection_info *connectinfo) argument
1924 parse_server_match_config(ServerOptions *options, struct connection_info *connectinfo) argument
2064 parse_server_config(ServerOptions *options, const char *filename, Buffer *conf, struct connection_info *connectinfo) argument
[all...]
H A Dreadconf.c71 # 1. command line options
116 # Defaults for various options
300 * Adds a local TCP/IP port forward to options. Never returns if there is an
305 add_local_forward(Options *options, const struct Forward *newfwd) argument
327 options->local_forwards = xreallocarray(options->local_forwards,
328 options->num_local_forwards + 1,
329 sizeof(*options->local_forwards));
330 fwd = &options->local_forwards[options
346 add_remote_forward(Options *options, const struct Forward *newfwd) argument
366 clear_forwardings(Options *options) argument
396 add_certificate_file(Options *options, const char *path, int userprovided) argument
420 add_identity_file(Options *options, const char *dir, const char *filename, int userprovided) argument
534 match_cfg_line(Options *options, char **condition, struct passwd *pw, const char *host_arg, const char *original_host, int post_canon, const char *filename, int linenum) argument
801 process_config_line(Options *options, struct passwd *pw, const char *host, const char *original_host, char *line, const char *filename, int linenum, int *activep, int flags) argument
1616 read_config_file(const char *filename, struct passwd *pw, const char *host, const char *original_host, Options *options, int flags) argument
1674 initialize_options(Options * options) argument
1776 fill_default_options_for_canonicalization(Options *options) argument
1791 fill_default_options(Options * options) argument
[all...]
H A Dssh.c160 * General data structure for command line options and options configurable
163 Options options; variable
241 * NB. this function must operate with a options having undefined members.
255 hints.ai_family = options.address_family == -1 ?
256 AF_UNSPEC : options.address_family;
282 * NB. this function must operate with a options having undefined members.
295 hints.ai_family = options.address_family == -1 ?
296 AF_UNSPEC : options.address_family;
335 * NB. this function must operate with a options havin
[all...]
H A Dauth2-kbdint.c43 extern ServerOptions options;
57 if (options.challenge_response_authentication)
68 &options.kbd_interactive_authentication
/freebsd-11.0-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-11.0-release/libexec/tftpd/
H A Dtftp-options.c27 __FBSDID("$FreeBSD: releng/11.0/libexec/tftpd/tftp-options.c 246139 2013-01-31 00:02:36Z marius $");
45 #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_TIMEOU
[all...]

Completed in 165 milliseconds

1234567891011>>