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

1234567891011>>

/external/qemu/hw/
H A Dmsmouse.h2 CharDriverState *qemu_chr_open_msmouse(QemuOpts *opts);
/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/qemu/android/
H A Dmain-common.h37 void parse_keyset(const char* keyset, AndroidOptions* opts);
51 AndroidOptions* opts,
61 AndroidOptions* opts);
67 void sanitizeOptions( AndroidOptions* opts );
71 * opts - Options passed to the main()
77 struct AvdInfo* createAVD(AndroidOptions* opts, int* inAndroidBuild);
83 AndroidOptions* opts );
89 * opts - Options passed to the main()
94 AndroidOptions* opts, int inAndroidBuild);
99 void handle_ui_options( AndroidOptions* opts );
[all...]
H A Dmain.c181 AndroidOptions opts[1]; local
188 if ( android_parse_options( &argc, &argv, opts ) < 0 ) {
196 handle_ui_options(opts);
246 if (opts->version) {
266 if (opts->snapshot_list) {
267 if (opts->snapstorage == NULL) {
269 avd = createAVD(opts, &inAndroidBuild);
270 opts->snapstorage = avdInfo_getSnapStoragePath(avd);
271 if (opts->snapstorage != NULL) {
272 D("autoconfig: -snapstorage %s", opts
[all...]
H A Dmain-common.c138 parse_keyset(const char* keyset, AndroidOptions* opts) argument
165 p = bufprint(p, end, "%s" PATH_SEP "keysets" PATH_SEP "%s", opts->sysdir, keyset);
341 AndroidOptions* opts,
514 AndroidOptions* opts)
527 if (!opts->no_window)
535 if (!opts->no_window) {
536 SDL_EnableUNICODE(!opts->raw_keys);
558 if ( qemulator_init(qemulator_get(), skinConfig, skinPath, win_x, win_y, opts) < 0 ) {
564 if (opts->onion) {
565 SkinImage* onion = skin_image_find_simple( opts
339 parse_skin_files(const char* skinDirPath, const char* skinName, AndroidOptions* opts, AndroidHwConfig* hwConfig, AConfig* *skinConfig, char* *skinPath) argument
512 init_sdl_ui(AConfig* skinConfig, const char* skinPath, AndroidOptions* opts) argument
784 createAVD(AndroidOptions* opts, int* inAndroidBuild) argument
1062 attach_to_core(AndroidOptions* 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/qemu/
H A Dqemu_socket.h12 int inet_listen_opts(QemuOpts *opts, int port_offset);
15 int inet_connect_opts(QemuOpts *opts);
17 int inet_dgram_opts(QemuOpts *opts);
20 int unix_listen_opts(QemuOpts *opts);
22 int unix_connect_opts(QemuOpts *opts);
H A Dqemu-sockets-android.c80 int inet_listen_opts(QemuOpts *opts, int port_offset) argument
92 const char* socket_fd = qemu_opt_get(opts, "socket");
98 if ((qemu_opt_get(opts, "host") == NULL) ||
99 (qemu_opt_get(opts, "port") == NULL)) {
103 pstrcpy(port, sizeof(port), qemu_opt_get(opts, "port"));
104 addr = qemu_opt_get(opts, "host");
106 to = qemu_opt_get_number(opts, "to", 0);
107 if (qemu_opt_get_bool(opts, "ipv4", 0))
109 if (qemu_opt_get_bool(opts, "ipv6", 0))
179 qemu_opt_set(opts, "hos
187 inet_connect_opts(QemuOpts *opts) argument
259 inet_dgram_opts(QemuOpts *opts) argument
369 inet_parse(QemuOpts *opts, const char *str) argument
446 QemuOpts *opts; local
474 QemuOpts *opts; local
486 unix_listen_opts(QemuOpts *opts) argument
528 unix_connect_opts(QemuOpts *opts) argument
557 QemuOpts *opts; local
586 QemuOpts *opts; local
598 unix_listen_opts(QemuOpts *opts) argument
604 unix_connect_opts(QemuOpts *opts) argument
[all...]
H A Dqemu-option.c515 QemuOpts *opts; member in struct:QemuOpt
527 static QemuOpt *qemu_opt_find(QemuOpts *opts, const char *name) argument
531 QTAILQ_FOREACH_REVERSE(opt, &opts->head, QemuOptHead, next) {
539 const char *qemu_opt_get(QemuOpts *opts, const char *name) argument
541 QemuOpt *opt = qemu_opt_find(opts, name);
545 int qemu_opt_get_bool(QemuOpts *opts, const char *name, int defval) argument
547 QemuOpt *opt = qemu_opt_find(opts, name);
555 uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval) argument
557 QemuOpt *opt = qemu_opt_find(opts, name);
565 uint64_t qemu_opt_get_size(QemuOpts *opts, cons argument
602 qemu_opt_set(QemuOpts *opts, const char *name, const char *value) argument
639 qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque, int abort_on_failure) argument
655 QemuOpts *opts; local
686 QemuOpts *opts = NULL; local
717 QemuOpts *opts, *next_opts; local
724 qemu_opts_loc_restore(QemuOpts *opts) argument
732 QemuOpts *opts; local
741 qemu_opts_id(QemuOpts *opts) argument
746 qemu_opts_del(QemuOpts *opts) argument
761 qemu_opts_print(QemuOpts *opts, void *dummy) argument
774 qemu_opts_do_parse(QemuOpts *opts, const char *params, const char *firstname) argument
826 QemuOpts *opts; local
895 QemuOpts *opts; local
911 qemu_opts_to_qdict(QemuOpts *opts, QDict *qdict) argument
932 qemu_opts_validate(QemuOpts *opts, const QemuOptDesc *desc) argument
965 QemuOpts *opts; local
[all...]
H A Dqemu-option.h107 const char *qemu_opt_get(QemuOpts *opts, const char *name);
108 int qemu_opt_get_bool(QemuOpts *opts, const char *name, int defval);
109 uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval);
110 uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval);
111 int qemu_opt_set(QemuOpts *opts, const char *name, const char *value);
113 int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque,
119 void qemu_opts_loc_restore(QemuOpts *opts);
122 const char *qemu_opts_id(QemuOpts *opts);
123 void qemu_opts_del(QemuOpts *opts);
124 int qemu_opts_validate(QemuOpts *opts, cons
[all...]
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/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 =
/external/chromium/build/linux/
H A Drewrite_dirs.py22 def RewritePath(path, opts):
24 sysroot = opts.sysroot
25 prefix = opts.strip_prefix
34 def RewriteLine(line, opts):
46 args[i] = RewritePath(args[i], opts)
51 args[i] = prefix + RewritePath(args[i][len(prefix):], opts)
60 opts, args = parser.parse_args(argv[1:])
63 line = RewriteLine(line.strip(), 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/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/libselinux/src/
H A Dlabel.c20 const struct selinux_opt *opts,
35 static inline int selabel_is_validate_set(const struct selinux_opt *opts, argument
39 if (opts[n].type == SELABEL_OPT_VALIDATE)
40 return !!opts[n].value;
67 const struct selinux_opt *opts,
86 rec->validating = selabel_is_validate_set(opts, nopts);
88 if ((*initfuncs[backend])(rec, opts, nopts)) {
66 selabel_open(unsigned int backend, const struct selinux_opt *opts, unsigned nopts) argument
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/
H A Dclang-parse-diagnostics-file24 (opts, args) = parser.parse_args()
31 if opts.error:
33 if opts.fatal:
35 if opts.ignored:
37 if opts.note:
39 if opts.warning:
72 if levels[d.get('level')] or opts.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/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/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 429 milliseconds

1234567891011>>