Searched refs:opts (Results 1 - 25 of 452) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dsignalbar.cpp30 QStyleOptionProgressBar opts; local
43 opts.minimum = -95;
44 opts.maximum = -35;
45 if (signal < opts.minimum)
46 opts.progress = opts.minimum;
47 else if (signal > opts.maximum)
48 opts.progress = opts.maximum;
50 opts
[all...]
/external/ltp/scripts/
H A Dsafe_rm.sh31 opts=
44 opts="$opts $1"
67 rm ${opts:--f} "$abspath_file"
/external/ppp/pppd/
H A Dmppe.h43 /* unsupported opts */
67 /* Build a CI from mppe opts (see RFC 3078) */
68 #define MPPE_OPTS_TO_CI(opts, ci) \
73 if (opts & MPPE_OPT_STATEFUL) \
82 if (opts & MPPE_OPT_128) \
84 if (opts & MPPE_OPT_40) \
90 #define MPPE_CI_TO_OPTS(ci, opts) \
94 opts = 0; \
98 opts |= MPPE_OPT_STATEFUL; \
102 opts |
[all...]
/external/clang/tools/scan-build-py/libscanbuild/
H A Drunner.py77 def run(opts):
91 command = opts.pop('command')
94 opts.update(classify_parameters(command))
96 return arch_check(opts)
104 def report_failure(opts):
111 def extension(opts):
115 return mapping.get(opts['language'], '.i')
117 def destination(opts):
120 name = os.path.join(opts['output_dir'], 'failures')
125 error = opts['error_typ
[all...]
/external/jcommander/src/test/java/com/beust/jcommander/
H A DDefaultValueTest.java37 MyOptsWithEmptyDefaults opts = new MyOptsWithEmptyDefaults();
38 JCommander cmd = new JCommander(opts);
40 Assert.assertEquals(opts.list.size(), 1);
41 Assert.assertEquals(opts.list.get(0), "anotherValue");
42 Assert.assertEquals(opts.set.size(), 0);
47 MyOptsWithDefaultValues opts = new MyOptsWithDefaultValues();
48 JCommander cmd = new JCommander(opts);
50 Assert.assertEquals(opts.list.size(), 1);
51 Assert.assertEquals(opts.list.get(0), "anotherValue");
52 Assert.assertEquals(opts
68 testSettingMultipleValuesToListTypeParameters(MyOpts opts) argument
[all...]
/external/openssh/
H A Dauth-options.c95 auth_parse_options(struct passwd *pw, char *opts, char *file, u_long linenum) argument
103 if (!opts)
106 while (*opts && *opts != ' ' && *opts != '\t') {
108 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
110 opts += strlen(cp);
114 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
117 opts += strlen(cp);
121 if (strncasecmp(opts, c
[all...]
/external/mesa3d/
H A Dcommon.py77 def AddOptions(opts):
86 opts.Add(EnumOption('build', 'build type', 'debug',
88 opts.Add(BoolOption('verbose', 'verbose output', 'no'))
89 opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine,
91 opts.Add(EnumOption('platform', 'target platform', host_platform,
93 opts.Add(BoolOption('embedded', 'embedded build', 'no'))
94 opts.Add('toolchain', 'compiler toolchain', default_toolchain)
95 opts.Add(BoolOption('gles', 'EXPERIMENTAL: enable OpenGL ES support', 'no'))
96 opts.Add(BoolOption('llvm', 'use LLVM', default_llvm))
97 opts
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
H A DLZMAEncoderNormal.java23 private final Optimum[] opts = new Optimum[OPTS]; field in class:LZMAEncoderNormal
53 opts[i] = new Optimum();
63 * Converts the opts array from backward indexes to forward indexes.
70 int optPrev = opts[optCur].optPrev;
73 Optimum opt = opts[optCur];
76 opts[optPrev].optPrev = optCur;
77 opts[optPrev].backPrev = -1;
81 opts[optPrev].optPrev = optPrev + 1;
82 opts[optPrev].backPrev = opt.backPrev2;
88 int temp = opts[optPre
[all...]
/external/selinux/policycoreutils/secon/
H A Dsecon.c72 } opts[1] = { { variable in typeref:struct:__anon16653
132 num += opts->disp_user;
133 num += opts->disp_role;
134 num += opts->disp_type;
135 num += opts->disp_sen;
136 num += opts->disp_clr;
137 num += opts->disp_mlsr;
215 opts->disp_user = !opts->disp_user;
219 opts
[all...]
/external/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.h16 namespace opts { namespace
18 } // namespace opts
/external/skia/
H A Dpublic.bzl87 "src/opts/**/*",
98 # TODO(mtklein): Move to opts?
130 "src/opts/**/*.cpp",
131 "src/opts/**/*.h",
136 "src/opts/opts_check_x86.cpp",
137 "src/opts/*arm*",
138 "src/opts/*mips*",
139 "src/opts/*NEON*",
140 "src/opts/*neon*",
142 "src/opts/*SSE
[all...]
/external/flatbuffers/src/
H A Didl_gen_text.cpp26 int indent, const IDLOptions &opts,
31 const char *NewLine(const IDLOptions &opts) { argument
32 return opts.indent_step >= 0 ? "\n" : "";
35 int Indent(const IDLOptions &opts) { argument
36 return std::max(opts.indent_step, 0);
40 void OutputIdentifier(const std::string &name, const IDLOptions &opts, argument
43 if (opts.strict_json) text += "\"";
45 if (opts.strict_json) text += "\"";
53 const IDLOptions &opts,
56 if (type.enum_def && opts
51 Print(T val, Type type, int , StructDef * , const IDLOptions &opts, std::string *_text) argument
74 PrintVector(const Vector<T> &v, Type type, int indent, const IDLOptions &opts, std::string *_text) argument
104 EscapeString(const String &s, std::string *_text, const IDLOptions& opts) argument
170 Print(const void *val, Type type, int indent, StructDef *union_sd, const IDLOptions &opts, std::string *_text) argument
226 GenField(const FieldDef &fd, const Table *table, bool fixed, const IDLOptions &opts, int indent, std::string *_text) argument
238 GenFieldOffset(const FieldDef &fd, const Table *table, bool fixed, int indent, StructDef *union_sd, const IDLOptions &opts, std::string *_text) argument
257 GenStruct(const StructDef &struct_def, const Table *table, int indent, const IDLOptions &opts, std::string *_text) argument
[all...]
H A Dflatc.cpp116 flatbuffers::IDLOptions opts; local
150 opts.include_prefix = argv[argi];
151 if (opts.include_prefix.back() != '/' &&
152 opts.include_prefix.back() != '\\') opts.include_prefix += "/";
154 opts.strict_json = true;
156 opts.allow_non_utf8 = true;
158 opts.skip_js_exports = true;
160 opts.use_goog_js_export_format = true;
162 opts
[all...]
/external/libnl/python/
H A Dsetup.py.in5 opts = ['-O', '-nodefaultctor']
12 swig_opts = opts,
20 swig_opts = opts,
28 swig_opts = opts,
/external/syslinux/gpxe/src/util/
H A Dmakerom.pl24 use vars qw(%opts);
44 return (0) unless (my $s = $opts{'i'});
71 $pci_hdr_offset, $pnp_hdr_offset if $opts{'v'};
76 if (!defined($opts{'p'})) {
84 ($pci_vendor_id, $pci_device_id) = split(/,/, $opts{'p'});
115 printf "UNDI header at %#x\n", $undi_hdr_offset if $opts{'v'};
143 } elsif ($opts{'v'}) {
151 getopts('3xni:p:s:v', \%opts);
158 print "$filesize bytes read\n" if $opts{'v'};
160 if ($opts{'
[all...]
/external/libyuv/files/
H A Dsync_chromium.py65 opts = p.parse_args()
66 opts.chromium_dir = os.path.abspath(opts.chromium_dir)
72 flag_file = os.path.join(opts.chromium_dir, '.last_sync_chromium')
75 opts.target_revision,
78 if (os.path.exists(os.path.join(opts.chromium_dir, 'src')) and
82 print 'Chromium already up to date: ', opts.target_revision
92 gclient_cmd, 'sync', '--force', '--revision', 'src@'+opts.target_revision
119 gclient_entries_file = os.path.join(opts.chromium_dir, '.gclient_entries')
122 gclientfile = os.path.join(opts
[all...]
/external/llvm/tools/llvm-pdbdump/
H A DLinePrinter.cpp47 SetFilters(ExcludeTypeFilters, opts::pretty::ExcludeTypes.begin(),
48 opts::pretty::ExcludeTypes.end());
49 SetFilters(ExcludeSymbolFilters, opts::pretty::ExcludeSymbols.begin(),
50 opts::pretty::ExcludeSymbols.end());
51 SetFilters(ExcludeCompilandFilters, opts::pretty::ExcludeCompilands.begin(),
52 opts::pretty::ExcludeCompilands.end());
54 SetFilters(IncludeTypeFilters, opts::pretty::IncludeTypes.begin(),
55 opts::pretty::IncludeTypes.end());
56 SetFilters(IncludeSymbolFilters, opts::pretty::IncludeSymbols.begin(),
57 opts
[all...]
/external/libnl/lib/route/qdisc/
H A Dred.c45 struct tc_red_qopt *opts; local
58 opts = nla_data(tb[TCA_RED_PARMS]);
60 red->qr_limit = opts->limit;
61 red->qr_qth_min = opts->qth_min;
62 red->qr_qth_max = opts->qth_max;
63 red->qr_flags = opts->flags;
64 red->qr_wlog = opts->Wlog;
65 red->qr_plog = opts->Plog;
66 red->qr_scell_log = opts->Scell_log;
113 memset(&opts,
[all...]
H A Dhtb.c60 struct tc_htb_glob opts; local
62 nla_memcpy(&opts, tb[TCA_HTB_INIT], sizeof(opts));
63 htb->qh_rate2quantum = opts.rate2quantum;
64 htb->qh_defcls = opts.defcls;
65 htb->qh_direct_pkts = opts.direct_pkts;
83 struct tc_htb_opt opts; local
85 nla_memcpy(&opts, tb[TCA_HTB_PARMS], sizeof(opts));
86 htb->ch_prio = opts
193 struct tc_htb_glob opts = { local
214 struct tc_htb_opt opts; local
[all...]
H A Dsfq.c45 struct tc_sfq_qopt *opts; local
50 if (tc->tc_opts->d_size < sizeof(*opts))
53 opts = (struct tc_sfq_qopt *) tc->tc_opts->d_data;
55 sfq->qs_quantum = opts->quantum;
56 sfq->qs_perturb = opts->perturb_period;
57 sfq->qs_limit = opts->limit;
58 sfq->qs_divisor = opts->divisor;
59 sfq->qs_flows = opts->flows;
91 struct tc_sfq_qopt opts = {0}; local
96 opts
[all...]
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
H A D__main__.py35 opts, args = parser.parse_args()
47 path = opts.addpath + path
48 if opts.debug > 1:
54 mf = ModuleGraph(path, excludes=opts.excludes, debug=opts.debug)
56 if opts.domods:
63 if opts.output == 'dot':
65 elif opts.output == 'html':
/external/llvm/utils/lit/lit/
H A Dmain.py20 def __init__(self, opts, numTests, progressBar=None):
21 self.opts = opts
30 elif self.opts.quiet:
32 elif self.opts.succinct:
38 if self.opts.incremental:
46 self.opts.showAllOutput or \
47 (not self.opts.quiet and not self.opts.succinct)
60 if (test.result.code.isFailure and self.opts
[all...]
/external/ltp/
H A Dexecltp.in250 parser.add_option('-r', '--runltp-opts', dest='runltp_opts',
293 opts, args = parser.parse_args()
295 # Remove -q from the opts string, as long as it's a standalone option.
297 opts.runltp_opts)
299 if not opts.log_dir:
300 opts.log_dir = os.path.join(opts.ltp_dir, 'output')
302 if not opts.summary_mode and not opts.verbose:
305 elif opts
[all...]
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp48 namespace opts { namespace
261 } // namespace opts
347 if (opts::Output == opts::LLVM) {
357 if (opts::FileHeaders)
359 if (opts::Sections)
361 if (opts::Relocations)
363 if (opts::DynRelocs)
365 if (opts::Symbols)
367 if (opts
[all...]
/external/kmod/tools/
H A Dinsmod.c70 char *opts = NULL; local
119 void *tmp = realloc(opts, optslen + len + 2);
122 free(opts);
125 opts = tmp;
127 opts[optslen] = ' ';
130 memcpy(opts + optslen, argv[i], len);
132 opts[optslen] = '\0';
138 free(opts);
149 err = kmod_module_insert_module(mod, flags, opts);
158 free(opts);
[all...]

Completed in 882 milliseconds

1234567891011>>