Searched refs:opts (Results 1 - 25 of 387) 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/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/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/lldb/test/
H A Dbench.py56 opts, args = parser.parse_args()
62 '-e "%s"' % opts.exe if opts.exe else '')
64 '-x "%s"' % opts.break_spec if opts.break_spec else '')
/external/openfst/src/include/fst/script/
H A Dshortest-path.h60 const ShortestPathOptions &opts = args->arg4; local
67 *(opts.weight_threshold.GetWeight<Weight>());
69 switch (opts.queue_type) {
75 queue, ArcFilter(), opts.nshortest, opts.unique,
76 opts.has_distance, opts.delta, opts.first_path,
77 weight_threshold, opts.state_threshold);
87 queue, ArcFilter(), opts
[all...]
H A Drandgen.h41 const RandGenOptions<RandArcSelection> &opts = args->arg4; local
43 if (opts.arc_selector == UNIFORM_ARC_SELECTOR) {
46 ropts(arc_selector, opts.max_length,
47 opts.npath, opts.weighted);
49 } else if (opts.arc_selector == FAST_LOG_PROB_ARC_SELECTOR) {
52 ropts(arc_selector, opts.max_length,
53 opts.npath, opts.weighted);
58 ropts(arc_selector, opts
[all...]
H A Drmepsilon.h67 const RmEpsilonOptions &opts) {
72 *(opts.weight_threshold.GetWeight<Weight>());
74 switch (opts.queue_type) {
78 &queue, opts.delta, opts.connect, weight_thresh,
79 opts.state_threshold);
86 &queue, opts.delta, opts.connect, weight_thresh,
87 opts.state_threshold);
94 &queue, opts
65 RmEpsilonHelper(MutableFst<Arc> *fst, vector<typename Arc::Weight> *distance, const RmEpsilonOptions &opts) argument
172 const RmEpsilonOptions &opts = args->arg3; local
[all...]
H A Dprune.h50 // If the original opts.distance is not NULL, a new distance will be
55 const PruneOptions &opts) {
59 Weight weight_threshold = *(opts.weight_threshold.GetWeight<Weight>());
60 StateId state_threshold = opts.state_threshold;
63 if (opts.distance) {
64 distance = new vector<Weight>(opts.distance->size());
65 for (unsigned i = 0; i < opts.distance->size(); ++i) {
66 (*distance)[i] = *((*opts.distance)[i].GetWeight<Weight>());
72 opts.delta);
85 fst::PruneOptions<Arc, AnyArcFilter<Arc> > opts local
54 ConvertPruneOptions( const PruneOptions &opts) argument
100 fst::PruneOptions<Arc, AnyArcFilter<Arc> > opts = local
[all...]
H A Ddeterminize.h49 const DeterminizeOptions &opts = args->arg3; local
52 detargs.delta = opts.delta;
54 *(opts.weight_threshold.GetWeight<typename Arc::Weight>());
55 detargs.state_threshold = opts.state_threshold;
56 detargs.subsequential_label = opts.subsequential_label;
62 const DeterminizeOptions &opts =
H A Ddisambiguate.h49 const DisambiguateOptions &opts = args->arg3; local
52 detargs.delta = opts.delta;
54 *(opts.weight_threshold.GetWeight<typename Arc::Weight>());
55 detargs.state_threshold = opts.state_threshold;
56 detargs.subsequential_label = opts.subsequential_label;
62 const DisambiguateOptions &opts =
/external/selinux/policycoreutils/secon/
H A Dsecon.c72 } opts[1] = { { variable in typeref:struct:__anon13630
133 num += opts->disp_user;
134 num += opts->disp_role;
135 num += opts->disp_type;
136 num += opts->disp_sen;
137 num += opts->disp_clr;
138 num += opts->disp_mlsr;
216 opts->disp_user = !opts->disp_user;
220 opts
[all...]
/external/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.h16 namespace opts { namespace
18 } // namespace opts
/external/libnl/lib/route/sch/
H A Dhtb.c75 struct tc_htb_glob opts; local
77 nla_memcpy(&opts, tb[TCA_HTB_INIT], sizeof(opts));
78 d->qh_rate2quantum = opts.rate2quantum;
79 d->qh_defcls = opts.defcls;
113 struct tc_htb_opt opts; local
115 nla_memcpy(&opts, tb[TCA_HTB_PARMS], sizeof(opts));
116 d->ch_prio = opts.prio;
117 rtnl_copy_ratespec(&d->ch_rate, &opts
232 struct tc_htb_glob opts; local
270 struct tc_htb_opt opts; local
[all...]
H A Dred.c58 struct tc_red_qopt *opts; local
75 opts = nla_data(tb[TCA_RED_PARMS]);
77 red->qr_limit = opts->limit;
78 red->qr_qth_min = opts->qth_min;
79 red->qr_qth_max = opts->qth_max;
80 red->qr_flags = opts->flags;
81 red->qr_wlog = opts->Wlog;
82 red->qr_plog = opts->Plog;
83 red->qr_scell_log = opts->Scell_log;
133 memset(&opts,
[all...]
H A Dsfq.c58 struct tc_sfq_qopt *opts; local
63 if (qdisc->q_opts->d_size < sizeof(*opts))
70 opts = (struct tc_sfq_qopt *) qdisc->q_opts->d_data;
72 sfq->qs_quantum = opts->quantum;
73 sfq->qs_perturb = opts->perturb_period;
74 sfq->qs_limit = opts->limit;
75 sfq->qs_divisor = opts->divisor;
76 sfq->qs_flows = opts->flows;
111 struct tc_sfq_qopt opts; local
122 memset(&opts,
[all...]
/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 (not self.opts.quiet and not self.opts.succinct)
59 if test.result.code.isFailure and self.opts.showOutput:
242 (opts, arg
[all...]
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-record.c66 struct perf_record_opts opts; member in struct:perf_record
200 struct perf_record_opts *opts = &rec->opts; local
203 perf_evlist__config(evlist, opts);
215 perf_evsel__open_strerror(pos, &opts->target,
229 if (perf_evlist__mmap(evlist, opts->mmap_pages, false) < 0) {
235 "(current value: %d)\n", opts->mmap_pages);
237 } else if (!is_power_of_2(opts->mmap_pages) &&
238 (opts->mmap_pages != UINT_MAX)) {
274 if (!rec->opts
355 struct perf_record_opts *opts = &rec->opts; local
715 record_parse_callchain(const char *arg, struct perf_record_opts *opts) argument
771 callchain_debug(struct perf_record_opts *opts) argument
784 struct perf_record_opts *opts = opt->value; local
805 struct perf_record_opts *opts = opt->value; local
[all...]
/external/clang/bindings/python/examples/cindex/
H A Dcindex-dump.py25 if not opts.showIDs:
40 if opts.maxDepth is not None and depth >= opts.maxDepth:
62 global opts
72 (opts, args) = parser.parse_args()
/external/libselinux/src/
H A Dlabel_internal.h20 int selabel_file_init(struct selabel_handle *rec, const struct selinux_opt *opts,
22 int selabel_media_init(struct selabel_handle *rec, const struct selinux_opt *opts,
24 int selabel_x_init(struct selabel_handle *rec, const struct selinux_opt *opts,
27 const struct selinux_opt *opts, unsigned nopts) hidden;
29 const struct selinux_opt *opts, unsigned nopts) hidden;
/external/libvncserver/x11vnc/misc/
H A Dinet6to4215 my %opts;
216 $opts{Listen} = 10;
217 $opts{Proto} = "tcp";
218 $opts{ReuseAddr} = 1;
220 $opts{LocalAddr} = $1;
223 $opts{LocalPort} = $listen_port;
227 $opts{Domain} = AF_INET6;
228 $listen_sock = IO::Socket::INET6->new(%opts);
230 $listen_sock = IO::Socket::INET->new(%opts);
233 $opts{Domai
[all...]
/external/selinux/libselinux/src/
H A Dlabel_internal.h20 int selabel_file_init(struct selabel_handle *rec, struct selinux_opt *opts,
22 int selabel_media_init(struct selabel_handle *rec, struct selinux_opt *opts,
24 int selabel_x_init(struct selabel_handle *rec, struct selinux_opt *opts,
27 struct selinux_opt *opts, unsigned nopts) hidden;
29 struct selinux_opt *opts, unsigned nopts) hidden;
/external/llvm/utils/Misc/
H A Dzkill92 if opts.debug:
112 if opts.debug:
138 global opts
202 (opts, args) = parser.parse_args()
204 if opts.listSignals:
213 signal = kSignals[opts.signalName]
215 if opts.verbose:
237 if opts.execName is not None:
239 if re_full_match(opts.execName,
241 if opts
[all...]
/external/lldb/utils/test/
H A Dras.py95 opts, args = parser.parse_args()
96 if not opts.sender or not opts.recipients:
99 testDir = opts.testDir
106 #print "environments:", opts.environments
107 summary, output = runTestsuite(testDir, sessDir, opts.environments)
112 outer['To'] = COMMASPACE.join(opts.recipients)
113 outer['From'] = opts.sender
165 if opts.output:
166 fp = open(opts
[all...]
/external/openfst/src/include/fst/
H A Dintersect.h39 explicit IntersectFstOptions(const CacheOptions &opts, argument
42 : ComposeFstOptions<A, M, F, T>(opts, mat1, mat2, filt, sttable) { }
71 const CacheOptions opts = CacheOptions()) {
74 SetImpl(CreateBase(fst1, fst2, opts));
83 const IntersectFstOptions<A, M, F, T> &opts) {
86 SetImpl(CreateBase1(fst1, fst2, opts));
145 const IntersectOptions &opts = IntersectOptions()) {
148 if (opts.filter_type == AUTO_FILTER) {
152 } else if (opts.filter_type == SEQUENCE_FILTER) {
156 } else if (opts
82 IntersectFst(const Fst<A> &fst1, const Fst<A> &fst2, const IntersectFstOptions<A, M, F, T> &opts) argument
[all...]

Completed in 2367 milliseconds

1234567891011>>