Searched refs:opts (Results 26 - 50 of 582) sorted by relevance

1234567891011>>

/external/qemu/util/
H A Dqemu-sockets.c124 int inet_listen_opts(QemuOpts *opts, int port_offset) argument
139 const char* socket_fd = qemu_opt_get(opts, "socket");
145 if ((qemu_opt_get(opts, "host") == NULL) ||
146 (qemu_opt_get(opts, "port") == NULL)) {
150 pstrcpy(port, sizeof(port), qemu_opt_get(opts, "port"));
151 addr = qemu_opt_get(opts, "host");
153 to = qemu_opt_get_number(opts, "to", 0);
154 if (qemu_opt_get_bool(opts, "ipv4", 0))
156 if (qemu_opt_get_bool(opts, "ipv6", 0))
224 qemu_opt_set(opts, "hos
232 inet_connect_opts(QemuOpts *opts) argument
309 inet_dgram_opts(QemuOpts *opts) argument
424 inet_parse(QemuOpts *opts, const char *str) argument
501 QemuOpts *opts; local
529 QemuOpts *opts; local
541 unix_listen_opts(QemuOpts *opts) argument
591 unix_connect_opts(QemuOpts *opts) argument
624 QemuOpts *opts; local
653 QemuOpts *opts; local
665 unix_listen_opts(QemuOpts *opts) argument
672 unix_connect_opts(QemuOpts *opts) argument
[all...]
/external/qemu/android/qemu-launcher/
H A Demulator-qemu.cpp175 AndroidOptions opts[1]; local
177 if (android_parse_options(&argc, &argv, opts) < 0) {
233 if (opts->version) {
253 sanitizeOptions(opts);
258 AvdInfo* avd = createAVD(opts, &inAndroidBuild);
284 char* kernelFile = opts->kernel;
337 /* opts->ramdisk is never NULL (see createAVD) here */
338 if (opts->ramdisk) {
339 reassign_string(&hw->disk_ramdisk_path, opts->ramdisk);
351 if (opts
[all...]
/external/openfst/src/include/fst/script/
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/chromium_org/third_party/closure_compiler/build/
H A Dinputs.py22 opts = parser.parse_args(args)
25 for file in opts.sources + opts.depends + opts.externs:
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dmbo_getopt.h19 int mbo_getopt(int argc, char* const *argv, const mbo_opt_struct opts[], char **optarg, int *optind, int show_err);
H A Dmbo_getopt.c44 int mbo_getopt(int argc, char* const *argv, const mbo_opt_struct opts[], char **optarg, int *optind, int show_err) argument
84 if (opts[opts_idx].opt_char == '-')
89 else if (opts[opts_idx].opt_name && !strcmp(&argv[*optind][2], opts[opts_idx].opt_name))
97 arg_start = 2 + strlen(opts[opts_idx].opt_name);
120 if (opts[opts_idx].opt_char == '-')
137 else if (argv[*optind][optchr] == opts[opts_idx].opt_char)
144 if (opts[opts_idx].need_param)
167 return opts[opts_idx].opt_char;
188 return opts[opts_id
[all...]
/external/libnl/lib/route/sch/
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/qemu/include/qapi/
H A Dopts-visitor.h33 OptsVisitor *opts_visitor_new(const QemuOpts *opts);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Drandgen.h118 const RandGenOptions<ArcSelector> &opts) {
121 if (opts.npath == 0 || opts.max_length == 0 || ifst.Start() == kNoStateId)
124 if (opts.source == kNoStateId) { // first call
129 RandGenOptions<ArcSelector> nopts(opts);
135 if (ifst.NumArcs(opts.source) == 0 &&
136 ifst.Final(opts.source) == Weight::Zero()) // Non-coaccessible
139 size_t n = opts.arc_selector(ifst, opts.source);
140 if (n == ifst.NumArcs(opts
117 RandGen(const Fst<Arc> &ifst, MutableFst<Arc> *ofst, const RandGenOptions<ArcSelector> &opts) argument
[all...]
/external/chromium_org/build/win/
H A Dreorder-imports.py50 opts, args = parser.parse_args()
52 if not opts.input or not opts.output:
54 return reorder_imports(opts.input, opts.output, opts.arch)
/external/chromium_org/third_party/cython/
H A Dpython_flags.py28 opts = parser.parse_args()
35 if opts.libraries:
39 if not opts.gn and sys.platform in ['darwin', 'linux2']:
45 if opts.includes:
47 if opts.library_dirs:
51 if opts.gn:
/external/ppp/pppd/include/net/
H A Dppp-comp.h178 /* unsupported opts */
202 /* Build a CI from mppe opts (see RFC 3078) */
203 #define MPPE_OPTS_TO_CI(opts, ci) \
208 if (opts & MPPE_OPT_STATEFUL) \
217 if (opts & MPPE_OPT_128) \
219 if (opts & MPPE_OPT_40) \
225 #define MPPE_CI_TO_OPTS(ci, opts) \
229 opts = 0; \
233 opts |= MPPE_OPT_STATEFUL; \
237 opts |
[all...]
/external/chromium_org/tools/git/
H A Dmffr.py116 opts, args = parser.parse_args()
117 if opts.use_default_glob and opts.user_supplied_globs:
122 from_file = opts.input_filename != ""
127 if not opts.force_unsafe_run:
141 if opts.use_default_glob:
143 elif opts.user_supplied_globs:
144 global_file_globs = opts.user_supplied_globs
148 if opts.input_filename == '':
153 f = open(opts
[all...]
/external/linux-tools-perf/perf-3.12.0/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
356 struct perf_record_opts *opts = &rec->opts; local
719 record_parse_callchain(const char *arg, struct perf_record_opts *opts) argument
775 callchain_debug(struct perf_record_opts *opts) argument
788 struct perf_record_opts *opts = opt->value; local
809 struct perf_record_opts *opts = opt->value; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
H A Dsetup.py81 opts = ReadSetup("python-setup.txt") variable
82 incldir, cppflags = ParseCPPFlags(opts["includes"])
83 sources = ParseSources(opts["sources"], opts["srcdir"].strip())
85 if opts["gcc"].strip() == "yes":
/external/chromium_org/tools/
H A Dgypv8sh.py29 (opts, args) = parser.parse_args()
39 arguments = [js2webui, inputfile, inputrelfile, opts.deps_js,
43 if opts.verbose or opts.impotent:
45 if not opts.impotent:
/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/qemu/distrib/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/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...]

Completed in 2015 milliseconds

1234567891011>>